summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakedm
blob: 03e3213cf7b9e7c7b83ece848ed15b98d30354e7 (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
#!/usr/bin/perl
# DrakxDM -- Display Manager chooser
# Copyright (C) 2003-2006 Mandriva (tvignaud@mandriva.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 standalone;     #- warning, standalone must be loaded very first, for 'explanations'
use common;
use any;
use interactive;
use services;
use run_program;

$ugtk2::wm_icon = "/usr/share/mcc/themes/default/drakedm-mdk.png";

my $in = 'interactive'->vnew('su');

my $cfg_file = '/etc/sysconfig/desktop';

my @list = map {
    my %l = map { /(\S+)=(.*)/ } cat_($_);
    \%l;
} sort(glob("/etc/X11/dm.d/*.conf"));

my @_DESCRIPTIONS_for_i18n = (
    N("GDM (GNOME Display Manager)"),
    N("KDM (KDE Display Manager)"),
    N("XDM (X Display Manager)"),
);

if (!$::expert) {
    @list = grep { -e $_->{EXEC} } @list;
}

my ($dm_NAME) = cat_($cfg_file) =~ /^DISPLAYMANAGER=(.*)/m;
my $dm = (find { uc($_->{NAME}) eq uc($dm_NAME) } @list) || $list[0];

start:
if ($in->ask_from(N("Choosing a display manager"),
                               formatAlaTeX(N("X11 Display Manager allows you to graphically log
into your system with the X Window System running and supports running
several different X sessions on your local machine at the same time.")),
                               [
                                {
                                 allow_empty_list => 1,
                                 list => \@list,
                                 val => \$dm,
                                 type => 'list',
                                 format => sub { translate($_[0]{DESCRIPTION}) },
                                }
                               ]
                              )
   ) {
    $in->do_pkgs->ensure_is_installed($dm->{PACKAGE}, $dm->{EXEC}) or goto start;
    addVarsInSh($cfg_file, { DISPLAYMANAGER => $dm->{NAME} });
    log::explanations(qq(Switching to "$dm->{NAME}" display manager));
    if (any::running_window_manager()) {
        $in->ask_yesorno('', N("The change is done, do you want to restart the dm service?"), 1) and
				$in->ask_yesorno('', N("You are going to close all running programs and lose your current session. Are you really sure that you want to restart the dm service?"), 1) and
                      run_program::raw({ detach => 1 }, '/etc/rc.d/init.d/dm', '>', '/dev/null', '2>', '/dev/null', 'restart');
    }
}

$in->exit(0);
tyle='width: 63.6%;'/> -rw-r--r--perl-install/share/po/bs.po4586
-rw-r--r--perl-install/share/po/ca.po8432
-rw-r--r--perl-install/share/po/cy.po4577
-rw-r--r--perl-install/share/po/da.po5006
-rw-r--r--perl-install/share/po/de.po4698
-rw-r--r--perl-install/share/po/el.po4461
-rw-r--r--perl-install/share/po/eo.po4455
-rw-r--r--perl-install/share/po/et.po4470
-rw-r--r--perl-install/share/po/eu.po4591
-rw-r--r--perl-install/share/po/fi.po4487
-rw-r--r--perl-install/share/po/fr.po5058
-rw-r--r--perl-install/share/po/ga.po4390
-rw-r--r--perl-install/share/po/gl.po4453
-rw-r--r--perl-install/share/po/hr.po4579
-rw-r--r--perl-install/share/po/hu.po4880
-rw-r--r--perl-install/share/po/id.po4979
-rw-r--r--perl-install/share/po/is.po4431
-rw-r--r--perl-install/share/po/it.po4587
-rw-r--r--perl-install/share/po/ja.po4579
-rw-r--r--perl-install/share/po/ko.po5300
-rw-r--r--perl-install/share/po/lt.po4459
-rw-r--r--perl-install/share/po/lv.po4461
-rw-r--r--perl-install/share/po/mt.po4883
-rw-r--r--perl-install/share/po/nl.po4611
-rw-r--r--perl-install/share/po/no.po298
-rw-r--r--perl-install/share/po/pt.po6737
-rw-r--r--perl-install/share/po/pt_BR.po4461
-rw-r--r--perl-install/share/po/ro.po6304
-rw-r--r--perl-install/share/po/ru.po4455
-rw-r--r--perl-install/share/po/sk.po6043
-rw-r--r--perl-install/share/po/sl.po4391
-rw-r--r--perl-install/share/po/sp.po320
-rw-r--r--perl-install/share/po/sr.po5933
-rw-r--r--perl-install/share/po/th.po4421
-rw-r--r--perl-install/share/po/tr.po5026
-rw-r--r--perl-install/share/po/uk.po4467
-rw-r--r--perl-install/share/po/wa.po5098
-rw-r--r--perl-install/share/po/zh_CN.po6876
-rw-r--r--perl-install/share/po/zh_TW.po5125
46 files changed, 118630 insertions, 92364 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index c7c899ad5..27a25381e 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-20 11:11+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4851,327 +4851,371 @@ msgstr ""
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+msgid "Bengali"
+msgstr ""
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+msgid "Bosnian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr ""
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr ""
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr ""
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr ""
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+msgid "Laotian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+msgid "Mongolian (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr ""
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
msgid "Tamil (Unicode)"
msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
msgid "Tamil (TSCII)"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5447,7 +5491,7 @@ msgstr ""
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -8209,8 +8253,16 @@ msgstr ""
msgid "Remove the last item"
msgstr ""
-#: ../../standalone/drakbackup_.c:734
-msgid "$mode: $warning"
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+msgid "FATAL"
msgstr ""
#: ../../standalone/drakbackup_.c:744
@@ -8242,8 +8294,9 @@ msgid "Total progess"
msgstr ""
#: ../../standalone/drakbackup_.c:822
+#, c-format
msgid ""
-"$backup_key exists, delete?\n"
+"%s exists, delete?\n"
"\n"
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
@@ -8254,23 +8307,49 @@ msgid "This may take a moment to generate the keys."
msgstr ""
#: ../../standalone/drakbackup_.c:838
-msgid "ERROR: Cannot spawn $exp_command."
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
#: ../../standalone/drakbackup_.c:865
+#, c-format
msgid ""
"Transfer successful\n"
"You may want to verify you can login to the server with:\n"
"\n"
-"ssh -i $backup_key $login_user\\@$host_name\n"
+"ssh -i %s %s\\@%s\n"
"\n"
"without being prompted for a password."
msgstr ""
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:981
msgid "This may take a moment to erase the media."
msgstr ""
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
@@ -8291,10 +8370,15 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1282
+#: ../../standalone/drakbackup_.c:1266
+msgid "No changes to backup!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8312,13 +8396,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1305
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
@@ -8337,6 +8414,10 @@ msgstr ""
msgid " Error during mail sending. \n"
msgstr ""
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
@@ -8724,10 +8805,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2530
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
@@ -8940,7 +9017,7 @@ msgstr ""
#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -9092,7 +9169,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9116,14 +9193,14 @@ msgid ""
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 1046b1a74..035147415 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -59,11 +59,11 @@ msgstr "Kies 'n X-bediener"
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,44 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree-konfigurasie"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +150,58 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfig/main.pm_.c:60
+#
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Videokaart"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resolusie"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -167,33 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generies"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Herroep"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -215,11 +257,11 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
@@ -243,57 +285,42 @@ msgstr "16-miljoen kleure (24 bis)"
msgid "4 billion colors (32 bits)"
msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resolusies"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resolusie"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Kanselleer"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
@@ -302,71 +329,71 @@ msgstr "Wil u die konfigurasie toets?"
msgid "Test of the configuration"
msgstr "Toets konfigurasie"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -375,166 +402,183 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Watter tipe is u ISDN-konneksie?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -543,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -551,155 +595,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Leė etiket word nie toegelaat nie"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -710,17 +755,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -736,15 +781,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -753,55 +798,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -810,32 +855,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -843,60 +888,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -905,42 +950,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoļes"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -952,7 +997,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -960,7 +1005,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -970,13 +1015,13 @@ msgstr ""
"wat aan die internet as 'n kliėnt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -990,7 +1035,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliėnte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -999,32 +1044,49 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opsies"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Gebruik sekuriteitsvlak"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1047,13 +1109,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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1062,96 +1124,192 @@ 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Lźer"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Lźer/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Nuwe monitorkategoriasiestyl"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Nuwe styl monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tradisionele monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Tradisionele Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Laai Aurora met herlaaityd"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "LILO/GRUB metode"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Installeer stelsel"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Fout"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Geen video"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Kies installasieklas"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1160,42 +1318,69 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Stoor pakketseleksie"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1240,67 +1425,119 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Duitsland"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Grieks"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norweegs"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Onbekende model"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "nuut"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Hegpunt"
+
+#
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Toets asb. die muis"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Bediener"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Hegpunt:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opsies: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1313,15 +1550,6 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fout"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Assistent"
@@ -1347,7 +1575,7 @@ msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detail"
@@ -1376,13 +1604,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Ander"
@@ -1390,12 +1618,12 @@ msgstr "Ander"
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1405,7 +1633,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Uitwis"
@@ -1413,7 +1641,7 @@ msgstr "Uitwis"
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1421,72 +1649,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Nog"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Alle primźre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1494,35 +1722,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1530,11 +1758,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1542,131 +1770,114 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Hegpunt"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opsies"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Hegpunt:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Terugluslźer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lźerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslźer %s heg?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1674,133 +1885,138 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Waar wil u toestel %s heg?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "FAT lźerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Teruglus lźernaam:"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Lźer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Lźer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1813,7 +2029,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1826,7 +2042,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1836,137 +2052,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslźer %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus lźer(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1974,27 +2190,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lźernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2006,7 +2222,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2017,65 +2233,60 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opsies: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2128,23 +2339,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2161,59 +2372,59 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lźergids moet altyd in die wortellźerstelsel bly"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "U benodig 'n ware lźerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2221,259 +2432,263 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lźerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Gebruik outobespeuring"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generies"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kaartgeheue (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Formatering"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Verander tipe"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Verlaat"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Help"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Help"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Help/_Aangaande..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Kanselleer"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Muis"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Beskrywing"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Magtiging"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Selekteer lOer"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Netwerkportaaltoestel"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 knoppies"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Stel muistoestel op"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Wag asb."
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Aftas"
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3539,7 +3754,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3547,7 +3762,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3567,20 +3782,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3588,7 +3803,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lźer %s"
@@ -3626,7 +3841,7 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
@@ -3805,12 +4020,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3822,12 +4037,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3837,7 +4052,7 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3851,53 +4066,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3905,28 +4120,28 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geļnstalleer"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3934,76 +4149,76 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4018,17 +4233,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4202,108 +4417,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4320,7 +4535,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4328,7 +4543,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4337,69 +4552,69 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellźerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lźer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Soek vir pakkette om op te gradeer."
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geļnstalleer"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Soek vir pakkette om op te gradeer."
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4407,7 +4622,7 @@ msgid ""
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4415,51 +4630,51 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4478,11 +4693,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4491,21 +4706,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4575,7 +4790,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4587,180 +4802,189 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spieėl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieėl waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spieėl word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Verwyder Windows(TM)"
+msgid "Windows Domain"
+msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Plaaslike lźers"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS-bediener"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP-magtiging"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS-domein"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP-bediener"
+msgid "Authentication Windows Domain"
+msgstr "LDAP-magtiging"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domeinnaam"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4787,19 +5011,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4823,7 +5047,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4832,28 +5056,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4861,11 +5085,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4873,15 +5097,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4892,17 +5116,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4912,7 +5136,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4944,15 +5168,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiėle Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4961,15 +5185,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4996,398 +5220,461 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n lźer"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Vorige"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Teks"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Aktiveer"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniaans"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvies"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serwies (Kirillies)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viėtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5396,37 +5683,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulźre heg %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefoonnommer"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formateer partisies"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5531,52 +5818,44 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Vorige"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
@@ -5600,6 +5879,10 @@ msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "gebruik dhcp"
@@ -5627,7 +5910,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5640,7 +5923,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5657,7 +5940,7 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Rekenaarnaam"
@@ -5685,7 +5968,7 @@ msgstr "Watter tipe is u ISDN-konneksie?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5803,43 +6086,43 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
@@ -5952,13 +6235,13 @@ msgstr "Kies die profiel om te konfigureer"
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
@@ -6071,7 +6354,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6083,7 +6366,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6093,45 +6376,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6143,40 +6426,40 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
@@ -6188,7 +6471,7 @@ msgstr "Internetkonfigurasie"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
@@ -6217,43 +6500,43 @@ msgstr "Konneksiekonfigurasie"
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
@@ -6261,28 +6544,28 @@ msgstr "Voorsiener DNS 2 (opsioneel)"
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6318,7 +6601,7 @@ msgstr "Korrupte rugsteunlźer"
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6365,7 +6648,7 @@ msgstr "LPD - Lyndrukkerdiensprogram"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6396,7 +6679,7 @@ msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
@@ -6414,7 +6697,7 @@ msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
@@ -6422,113 +6705,113 @@ msgstr "Tik drukkertoestel URI in"
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Verstek)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Hoe is die drukker gekonekteer?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6540,18 +6823,22 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6562,7 +6849,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6572,33 +6859,33 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Poort"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6611,38 +6898,69 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Plaaslike drukker"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
#
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Plaaslike drukker"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6656,54 +6974,51 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Gebruik outobespeuring"
-#
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Eksterne drukkernaam"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netwerkdrukker (sok)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6711,43 +7026,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6755,7 +7061,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6763,83 +7069,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Installeer pakket %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Drukkerdata word gelees..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6849,28 +7110,48 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s bespeur"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Konneksie word begin..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6883,35 +7164,46 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Gebruik outobespeuring"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Óf die bedienernaam óf die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6935,7 +7227,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6944,7 +7236,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6952,11 +7244,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6969,34 +7261,50 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
"drukker voorsien en dalk ook 'n poortnommer voorsien.\n"
@@ -7004,19 +7312,21 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Drukkerbedienernaam"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Drukkerbedienernaam"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7026,11 +7336,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7040,26 +7350,31 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7074,27 +7389,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7103,18 +7418,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7124,12 +7439,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7137,7 +7452,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7150,7 +7465,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7160,22 +7475,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7184,11 +7499,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7196,40 +7511,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7244,7 +7559,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7252,16 +7567,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7270,15 +7585,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7287,7 +7602,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7295,41 +7610,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7339,7 +7654,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7348,46 +7663,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sluit af"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7396,9 +7711,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7409,17 +7724,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7429,51 +7744,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7481,61 +7796,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7543,12 +7858,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7558,7 +7873,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -7566,27 +7881,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranoļes"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7602,12 +7917,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7621,68 +7936,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7693,7 +8008,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7703,34 +8018,30 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7739,102 +8050,102 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
@@ -7887,8 +8198,9 @@ msgstr ""
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Instaanbediener moet begin met ftp://"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../proxy.pm_.c:79
msgid ""
@@ -7935,44 +8247,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
-"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
-"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
-"wagwoord\n"
-"toegang nie."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
-"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliėnte\n"
-"af kan aanvaar."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opsies"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8271,7 +8545,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8392,7 +8666,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8492,21 +8766,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8514,174 +8788,174 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Datbasis"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS-bediener"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP-Kliėnt"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Uitwis"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Selekteer lOer"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Voeg gebruiker by"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Kliėnt"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Fout!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ek kan nie die nodige herlaaibeeld '%s' kry nie."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Outoinstallasiekonfigurasieprogram"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8696,22 +8970,22 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Outomatiese Stappe Konfigurasie"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Outoinstallasieskyf word geskep."
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8719,12 +8993,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8732,29 +9006,42 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Terugluslźer %s word geformateer"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8762,7 +9049,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8770,34 +9057,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Toetsbladsye"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Korrupte rugsteunlźer"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8805,746 +9156,810 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lźer %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, 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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlźer"
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Oordrag"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
#
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Kliek asb. op 'n partisie"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1868
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
+msgid " Erase Now "
+msgstr "Oordrag"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Kliek asb. op 'n partisie"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Stel lźerstelsels op"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlźer"
#
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lźer"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lźer"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lźer"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Teks"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlźer"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lźer"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Toets asb. die muis"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Kies die pakkette wat u wil installeer"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Stel lźerstelsels op"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9555,7 +9970,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9576,7 +9991,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9585,7 +10000,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9609,7 +10024,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9626,21 +10041,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9654,17 +10069,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9681,7 +10096,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9721,7 +10136,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9732,7 +10147,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9745,7 +10160,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9784,96 +10199,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Beheersentrum"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "verpligtend"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Muis"
#
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Eksterne drukker"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Drukkernaam:"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Drukker"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Netwerkkonfigurasie-assistent"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Magtiging"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakketkeuse"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Wag asb."
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9885,308 +10327,308 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Verlaay installasie"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Netwerkkonfigurasie (%d toestelle)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profiel:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Vee profiel uit..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profiel om uit te vee..."
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Nuwe profiel..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Bedienernaam:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internettoegang"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipe:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Portaal:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Koppelvlak:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Konfigureer internettoegang..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN-konfigurasie"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Drywer"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Koppelvlak"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Toestand"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Stel plaaslike netwerk op..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Assistent..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Wag asb... Konfigurasie word toegpas"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Konnekteer..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Diskonnekteer..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN konfigurasie"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Toestel %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Herlaaiprotokol"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP-kliėnt"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Aktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "deaktiveer nou dadelik"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Internetkonneksiekonfigurasie"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Konneksietipe:"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Portaal"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernetkaart"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-Kliėnt"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "gebruik: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulenaam"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "verstek"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy Fout: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "bedryfstelselkernweergawe"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Algemeen"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Kundige area"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opsionele parameters"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Voeg module by"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forseer"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "indien nodig"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "laat SCSI-modules weg"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "laat RAID-modules weg"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Verwyder module"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Uitset"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10195,12 +10637,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10211,105 +10653,105 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10318,123 +10760,128 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Deļnstallasie van RPMs"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10446,31 +10893,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10482,19 +10929,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10511,21 +10958,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10533,12 +10980,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10553,19 +11000,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10575,17 +11022,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10596,7 +11043,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10608,33 +11055,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10642,44 +11089,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10689,20 +11136,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Beheersentrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Kies die instrument wat u wil gebruik"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10711,108 +11151,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Frankryk"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10836,11 +11280,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
"Wil u hź dat die 'BackSpace' sleutel moet uitvee in die konsole ('n 'Delete' "
@@ -10866,7 +11310,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr ""
@@ -10976,24 +11420,24 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -11002,127 +11446,128 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domeinnaam"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix e-posbediener, Inn netnuusbediener"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS-bediener"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Dienste"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Drukkerbediener"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Probeer asb. weer"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "Geen 'serial_usb' gevind nie\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Drukkerdata word gelees..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Toestel word afgetas..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Selekteer 'n videokaart"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Herlaaitoestel"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11130,7 +11575,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11150,15 +11595,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11166,7 +11611,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11365,56 +11810,60 @@ msgstr "Kan nie %s oopmaak nie: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Kon nie %s in skryfmode oopmaak nie: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Vuurmuurkonfigurasie"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Wag asb. installasie word voorberei"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11465,6 +11914,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Klankprogramme: MP3- of MIDI-spelers, mengers, ens."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Boeke en HOWTO's oor Linux en Vrye Sagteware"
@@ -11553,10 +12006,6 @@ msgid "Office Workstation"
msgstr "Kantoorwerkstasie"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Bediener"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ens."
@@ -11622,6 +12071,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Kliėntprogramme vir 'n verkeidenheid protokolle insluitende SSH"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetpoort"
@@ -11655,6 +12108,111 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+#~ "om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n "
+#~ "rekenaar\n"
+#~ "wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+#~ "wagwoord\n"
+#~ "toegang nie."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik "
+#~ "word.\n"
+#~ "Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie "
+#~ "kliėnte\n"
+#~ "af kan aanvaar."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opsies"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sekuriteit"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Wat is u sleutelborduitleg?"
+
+#
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Toets asb. die muis"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Kies die pakkette wat u wil installeer"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Kies die pakkette wat u wil installeer"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Verwyder Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tabel"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP-bediener"
+
+#
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Eksterne drukkernaam"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Installeer pakket %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Drukkerdata word gelees..."
+
+#~ msgid "Control Center"
+#~ msgstr "Beheersentrum"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Kies die instrument wat u wil gebruik"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "Geen 'serial_usb' gevind nie\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck het gefaal met kode %d of sein %d"
@@ -11722,9 +12280,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Setting security level"
#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "Graphics card"
-#~ msgstr "Videokaart"
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
@@ -11803,6 +12358,3 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Percentage of packages to install"
#~ msgstr "Persentasie pakkette om te installeer"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 8f5d7ac41..b6e81d45d 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -58,11 +58,11 @@ msgstr "Ų„Ų®ŲŖŲ± Ų®Ų§ŲÆŁ… X"
msgid "X server"
msgstr "Ų®Ų§ŲÆŁ… X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ł…ŲŖŲ¹ŲÆŲÆ Ų§Ł„Ų±Ų¤ŁˆŲ³"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,44 +70,44 @@ msgstr ""
"Ł†ŲøŲ§Ł…Łƒ ŁŠŲÆŲ¹Ł… Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ Ł…ŲŖŲ¹ŲÆŲÆ Ų§Ł„Ų±Ų¤ŁˆŲ³.\n"
"Ł…Ų§Ų°Ų§ ŲŖŲ±ŁŠŲÆ Ų£Ł† ŲŖŁŲ¹Ł„ŲŸ"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Ų„Ų®ŲŖŲ± Ų­Ų¬Ł… Ų°Ų§ŁƒŲ±Ų© ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Ų£ŁŠ Ų§Ų¹ŲÆŲ§ŲÆ Ł„Ł€XFree ŲŖŲ±ŁŠŲÆŲŸ"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Ų§Ų¹ŲÆŲ§ŲÆ ŁƒŁ„ Ų§Ł„Ų±Ų¤ŁˆŲ³ ŲØŲ“ŁƒŁ„ Ł…Ų³ŲŖŁ‚Ł„"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŲ§Ł… Ų§Ł…ŲŖŲÆŲ§ŲÆ Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ł‚Ł… ŲØŲ„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŲØŲ·Ų§Ł‚Ų© \"%s\" ŁŁ‚Ų· (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s Ł…Ų¹ ŲŖŲ³Ų±ŁŠŲ¹ Ų«Ł„Ų§Ų«ŁŠ Ų§Ł„Ų£ŲØŲ¹Ų§ŲÆ"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "ŁŠŁ…ŁƒŁ† Ł„ŲØŲ·Ų§Ł‚ŲŖŁƒ Ų§Ł„Ų­ŲµŁˆŁ„ Ų¹Ł„Ł‰ ŲÆŲ¹Ł… Ł„Ł„ŲŖŲ³Ų±ŁŠŲ¹ Ų«Ł„Ų§Ų«ŁŠ Ų§Ł„Ų£ŲØŲ¹Ų§ŲÆ Ł…Ų¹ XFree %s"
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s Ł…Ų¹ ŲÆŲ¹Ł… ŲŖŲ¬Ų±ŁŠŲØŁŠ Ł„Ł„Ų±Ų³ŁˆŁ… Ų«Ł„Ų§Ų«ŁŠŲ© Ų§Ł„Ų£ŲØŲ¹Ų§ŲÆ"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,11 +148,57 @@ msgstr ""
"ŁŠŁ…ŁƒŁ† Ł„ŲØŲ·Ų§Ł‚ŲŖŁƒ Ų§Ł„ŲŖŁ…ŲŖŲ¹ ŲØŲÆŲ¹Ł… Ł„Ł„Ų±Ų³ŁˆŁ… Ų«Ł„Ų§Ų«ŁŠŲ© Ų§Ł„Ų£ŲØŲ¹Ų§ŲÆ Ł…Ų¹ XFree %s, \n"
"Ł„Ų§Ų­Ųø Ų£Ł† Ł‡Ų°Ų§ Ų§Ł„ŲÆŲ¹Ł… ŲŖŲ¬Ų±ŁŠŲØŁŠ Łˆ Ł‚ŲÆ ŁŠŲŖŲ³ŲØŲØ ŁŁŠ Ų§ŁŠŁ‚Ų§Ł Ų¬Ł‡Ų§Ų²Łƒ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Ł…Ų“ŲŗŁ„ Ų¹Ų±Ų¶ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Ł…Ų®ŲµŲµ"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ų§Ł„Ų“Ų§Ų“Ų©"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "ŲÆŁ‚Ų© Ų§Ł„Ų¹Ų±Ų¶"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ł…ŁˆŲ§ŁŁ‚"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Ų®Ų±ŁˆŲ¬"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -165,32 +211,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Ų„Ų®ŲŖŲ± Ų“Ų§Ų“Ų©"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ų§Ł„Ų“Ų§Ų“Ų©"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Ł…Ų®ŲµŲµ"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generic"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "ŲŖŲ±Ų§Ų¬Ų¹"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -211,11 +253,11 @@ msgstr ""
"Ų£ŁƒŲØŲ± Ł…Ł† Ł…Ł‚ŲÆŲ±Ų© Ų“Ų§Ų“ŲŖŁƒ Ł„Ų£Ł†Łƒ ŲØŁ‡Ų°Ų§ Ł‚ŲÆ ŲŖŲÆŁ…Ų± Ų“Ų§Ų“ŲŖŁƒ.\n"
" Ų§Ų°Ų§ Ł„Ł… ŲŖŁƒŁ† Ł…ŲŖŲ£ŁƒŲÆŲ§ ŁŠŁ…ŁƒŁ†Łƒ Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų¹Ų§ŲÆŁŠŲ©."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Ł†Ų³ŲØŲ© Ų§Ł„Ų„Ł†Ų¹Ų§Ų“ Ų§Ł„Ų£ŁŁ‚ŁŠ"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Ł†Ų³ŲØŲ© Ų§Ł„Ų„Ł†Ų¹Ų§Ų“ Ų§Ł„Ų±Ų£Ų³ŁŠ"
@@ -239,57 +281,42 @@ msgstr "16 Ł…Ł„ŁŠŁˆŁ† Ł„ŁˆŁ† (24 ŲØŲŖ)"
msgid "4 billion colors (32 bits)"
msgstr "4 ŲØŁ„ŁŠŁˆŁ† Ł„ŁˆŁ† (32 ŲØŲŖ)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "ŲÆŁ‚Ų© Ų§Ł„Ų¹Ų±Ų¶"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "ŲÆŁ‚Ų© Ų§Ł„Ų¹Ų±Ų¶"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Ų§Ų®ŲŖŲ± ŲÆŁ‚Ų© Ų§Ł„Ų¹Ų±Ų¶ Łˆ Ų¹Ł…Ł‚ Ų§Ł„Ų£Ł„ŁˆŲ§Ł…"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Ų§Ł„ŲŗŲ§Ų”"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ł…ŁˆŲ§ŁŁ‚"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ¬Ų±ŲØŲ© Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲŸ"
@@ -298,71 +325,71 @@ msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ¬Ų±ŲØŲ© Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲŸ"
msgid "Test of the configuration"
msgstr "Ų§Ų®ŲŖŲØŲ§Ų± Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ł†ŁˆŲ¹ Ų§Ł„ŁŲ£Ų±Ų©: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ų¬Ł‡Ų§Ų² Ų§Ł„ŁŲ£Ų±Ų©: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ų§Ł„Ų“Ų§Ų“Ų©: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "ŲŖŲ²Ų§Ł…Ł† Ų§Ł„Ų“Ų§Ų“Ų© Ų§Ł„Ų£ŁŁ‚ŁŠ: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ų§Ł†Ų¹Ų§Ų“ Ų§Ł„Ų“Ų§Ų“Ų© Ų§Ł„Ų±Ų£Ų³ŁŠ: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Ų°Ų§ŁƒŲ±Ų© ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©: %s ŁƒŁŠŁ„ŁˆŲØŲ§ŁŠŲŖ\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Ų¹Ł…Ł‚ Ų§Ł„Ų£Ł„ŁˆŲ§Ł†: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "ŲÆŁ‚Ų© Ų§Ł„Ų¹Ų±Ų¶: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ų®Ų§ŲÆŁ… XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ł…Ų“ŲŗŁ„ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "ŁˆŲ§Ų¬Ł‡Ų© Ų±Ų³ŁˆŁ…ŁŠŲ© Ų¹Ł†ŲÆ ŲØŲÆŲ” Ų§Ł„ŲŖŲ“ŲŗŁŠŁ„"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -371,165 +398,181 @@ msgstr ""
"ŁŠŁ…ŁƒŁ†Ł†ŁŠ Ų¬Ų¹Ł„ Ų¬Ł‡Ų§Ų²Łƒ ŁŠŲØŲÆŲ£ X ŲØŲ“ŁƒŁ„ Ų¢Ł„ŁŠ ŲØŲ¹ŲÆ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹.\n"
"Ł‡Ł„ ŲŖŲ±ŁŠŲÆ X Ų£Ł† ŲØŁŠŲÆŲ£ ŲØŲ¹ŲÆ Ų„Ų¹Ų§ŲÆŲ© ŲŖŲ“ŲŗŁŠŁ„ Ų¬Ł‡Ų§Ų²ŁƒŲŸ"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr ""
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Ų§Ł„Ł‚Ų·Ų§Ų¹ Ų§ŁˆŁ„ Ł…Ł† ŲŖŲ¬Ų²Ų¦Ų© Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ų§Ł„Ł‚Ų·Ų§Ų¹ Ų§Ł„Ų£ŁˆŁ„ Ł…Ł† Ų§Ł„Ł‚Ų±Ųµ (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "ŲŖŲ«ŲØŁŠŲŖ SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Ų£ŁŠŁ† ŲŖŲ±ŁŠŲÆ ŲŖŲ«ŲØŁŠŲŖ Ł…Ų­Ł…Ł‘Ł„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ŲŸ"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "ŲŖŲ«ŲØŁŠŲŖ LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO Ł…Ų¹ Ł‚Ų§Ų¦Ł…Ų© Ł†ŲµŁŠŲ©"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO Ł…Ų¹ Ł‚Ų§Ų¦Ł…Ų© Ų±Ų³ŁˆŁ…ŁŠŲ©"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ Ł…Ł† DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ł…Ų­Ł…Ł‘Ł„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Ł…Ų­Ł…Ł‘Ł„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ Ų§Ł„Ł…ŁŲ³ŲŖŲ®ŲÆŁ…"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "ŲŖŲ«ŲØŁŠŲŖ Ł…Ų­Ł…Ł„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ų¬Ł‡Ų§Ų² Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (Ł„Ų§ ŁŠŲ¹Ł…Ł„ Ł…Ų¹ Ų£Ł†ŲøŁ…Ų© Ų§Ł„Ł€BIOS Ų§Ł„Ł‚ŲÆŁŠŁ…Ų©)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Ł…ŲÆŁ…Ų¬"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "Ł…ŲÆŁ…Ų¬"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "ŁˆŲ¶Ų¹ŁŠŲ© Ų§Ł„ŁŁŠŲÆŁŠŲ©"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "ŲŖŁˆŁ‚ŁŠŲŖ Ł…Ų§ Ł‚ŲØŁ„ Ų§Ł‚Ł„Ų§Ų¹ Ų§Ł„ŲµŁˆŲ±Ų© Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ±"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ± (Ų«Ų§Ł†ŁŠŲ©)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "ŲŖŲ“ŲÆŁŠŲÆ Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų³Ų·Ų± Ų§Ł„Ų£ŁˆŲ§Ł…Ų±"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ŲŖŲ“ŲÆŁŠŲÆ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Ł‚Ł… ŲØŲŖŁ†ŲøŁŠŁ /tmp Ų¹Ł†ŲÆ ŁƒŁ„ Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ų­Ų¬Ł… Ų§Ł„Ų°Ų§ŁƒŲ±Ų© Ų§Ł„ŲÆŁ‚ŁŠŁ‚ Ų¹Ł†ŲÆ Ų§Ł„Ų­Ų§Ų¬Ų© )ŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ %d Ł…ŁŠŲŗŲ§ŲØŲ§ŁŠŲŖ("
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "ŲŖŁ…ŁƒŁŠŁ† Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„Ų§ŲŖ Ų§Ł„Ł…ŲŖŲ¹ŲÆŲÆŲ©"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Ų§ŁƒŲŖŲØ Ų­Ų¬Ł… Ų§Ł„Ų°Ų§ŁƒŲ±Ų© ŲØŲ§Ł„Ł…ŁŠŲŗŲ§ŲØŲ§ŁŠŲŖ"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Ų®ŁŠŲ§Ų± ``ŲŖŲ“ŲÆŁŠŲÆ Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų³Ų·Ų± Ų§Ł„Ų£ŁˆŲ§Ł…Ų±`` ŲØŲÆŁˆŁ† Ł‚Ų§Ų¦ŲÆŲ© Ł…Ł† ŲÆŁˆŁ† ŁƒŁ„Ł…Ų© Ł…Ų±ŁˆŲ±"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Ų±Ų¬Ų§Ų” Ų¬Ų§ŁˆŁ„ Ł…Ų±Ų© Ų£Ų®Ų±Ł‰"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "ŁƒŁ„Ł…Ų§ŲŖ Ų§Ł„Ł…Ų±ŁˆŲ± ŲŗŁŠŲ± Ł…ŲŖŲ·Ų§ŲØŁ‚Ų©"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Ų±Ų³Ų§Ł„Ų© Init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Ų§Ł„ŁˆŁ‚ŲŖ Ų§Ł„Ų£Ł‚ŲµŁ‰ Ł„Ų„Ł‚Ł„Ų§Ų¹ Ų§Ł„Ł†ŁˆŲ§Ų©"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "ŲŖŁ…ŁƒŁŠŁ† Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ Ł…Ł† Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„Ł…ŲÆŁ…Ų¬ŲŸ"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "ŲŖŁ…ŁƒŁŠŁ† Ų§Ł‚Ł„Ų§Ų¹ OFŲŸ"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Ł†ŲøŲ§Ł… Ų§Ł„ŲŖŲ“ŲŗŁŠŁ„ Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲŸ"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -538,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -546,154 +589,155 @@ msgstr ""
"Ł‡Ų§ Ł‡Ł†Ų§ Ų§Ł„Ł…ŲÆŲ®Ł„Ų§ŲŖ Ų§Ł„Ł…Ų®ŲŖŁ„ŁŲ©.\n"
"ŁŠŁ…ŁƒŁ†Łƒ Ų§Ų¶Ų§ŁŲ© Ł…ŲÆŲ®Ł„Ų§ŲŖ Ų£Ų®Ų±Ł‰ Ų£Łˆ ŲŖŲŗŁŠŁŠŲ± Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŁŠŁ†."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ų§Ų¶Ų§ŁŲ©"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Ų§Ł†ŲŖŁ‡Ł‰"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "ŲŖŲ¹ŲÆŁŠŁ„"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Ł…Ų§ Ł†ŁˆŲ¹ Ų§Ł„Ł…ŲÆŲ®Ł„ Ų§Ł„Ų°ŁŠ ŲŖŲ±ŁŠŲÆ Ų§Ų¶Ų§ŁŲŖŁ‡ŲŸ"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Ł„ŁŠŁ†ŁƒŲ³"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Ł†ŲøŲ§Ł… Ų¢Ų®Ų± (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Ł†ŲøŲ§Ł… Ų¢Ų®Ų± (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Ł†ŲøŲ§Ł… Ų¢Ų®Ų± (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "ŲµŁˆŲ±Ų©"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Ų§Ł„Ų¬Ų°Ų±"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Ų§Ł„Ų­Ų§Ł‚"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Ł„Ł„Ł‚Ų±Ų§Ų”Ų© Łˆ Ų§Ł„ŁƒŲŖŲ§ŲØŲ©"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Ų§Ł„Ų¬ŲÆŁˆŁ„"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "ŲŗŁŠŲ± Ų¢Ł…Ł†"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Ų¹Ł†ŁˆŲ§Ł†"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ų§Ł„Ų„ŁŲŖŲ±Ų§Ų¶ŁŠ"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Ų­Ų¬Ł… Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Ł„Ų§ ŁŁŠŲÆŁŠŁˆ"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ų§Ų²Ł„ Ų§Ł„Ł…ŲÆŲ®Ł„"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "ŲŗŁŠŲ± Ł…Ų³Ł…ŁˆŲ­ ŲØŲ§Ł„Ų¹Ł„Ų§Ł…Ų§ŲŖ Ų§Ł„ŁŲ§Ų±ŲŗŲ©"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "ŁŠŲ¬ŲØ Ų£Ł† ŲŖŲ­ŲÆŲÆ ŲµŁˆŲ±Ų© Ų§Ł„Ł†ŁˆŲ§Ų©"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "ŁŠŲ¬ŲØ Ų¹Ł„ŁŠŁƒ ŲŖŲ­ŲÆŁŠŲÆ ŲŖŁ‚Ų³ŁŠŁ… Ų¬Ų°Ų±"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ł‡Ų°Ł‡ Ų§Ł„Ų¹Ł„Ų§Ł…Ų© Ł…Ų³ŲŖŲ®ŲÆŁ…Ų© Ł…Ų³ŲØŁ‚Ų§"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "ŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ %s %s ŁˆŲ§Ų¬Ł‡Ų§ŲŖ"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Ł‡Ł„ Ų¹Ł†ŲÆŁƒ ŁˆŲ§Ų­ŲÆŲ© Ų£Ų®Ų±Ł‰ŲŸ"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ł‡Ł„ Ł„ŲÆŁŠŁƒ Ų£ŁŠ ŁˆŲ§Ų¬Ł‡Ų§ŲŖ %sŲŸ"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ł„Ų§"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ł†Ų¹Ł…"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŲ«ŲØŁŠŲŖ Ł…Ų“ŲŗŁ„ %s Ł„Ł„ŲØŲ·Ų§Ł‚Ų© %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(Ų§Ł„ŁˆŲ­ŲÆŲ© %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -704,17 +748,17 @@ msgstr ""
"Ų§Ł„Ų®ŁŠŲ§Ų±Ų§ŲŖ ŁŁŠ Ł‡ŁŠŲ¦Ų© ``name=value name2=value2 ...'' \n"
"Ł…Ų«Ł„Ų§, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų§Ł„ŁˆŲ­ŲÆŲ©:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ų£ŁŠ Ł…Ų“ŲŗŁ„ %s ŁŠŲ¬ŲØ Ų£Ł† Ų§Ų³ŲŖŲ®ŲÆŁ…Ł‡ŲŸ"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -732,15 +776,15 @@ msgstr ""
"Ł„ŁƒŁ†\n"
"Ł„Ų§ ŁŠŲ¬ŲØ Ų£Ł† ŁŠŲŖŲ³ŲØŲØ Ų°Ł„Łƒ ŁŁŠ Ų£ŁŠ Ł…Ų“Ų§ŁƒŁ„."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Ų­ŲÆŲÆ Ų§Ł„Ų®ŁŠŲ§Ų±Ų§ŲŖ"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -749,54 +793,54 @@ msgstr ""
"ŁŲ“Ł„ ŲŖŲ­Ł…ŁŠŁ„ Ų§Ł„ŁˆŲ­ŲÆŲ© %s.\n"
"Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ł…Ų­Ų§ŁˆŁ„Ų© Ų«Ų§Ł†ŁŠŲ© ŲØŁ…Ų¹Ų§Ł…Ł„Ų§ŲŖ Ų£Ų®Ų±Ł‰ŲŸ"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "Ų§Ł„ŁˆŲµŁˆŁ„ Ų§Ł„Ł‰ ŲØŲ±Ų§Ł…Ų¬ X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "Ų§Ł„ŁˆŲµŁˆŁ„ Ų§Ł„Ł‰ Ų£ŲÆŁˆŲ§ŲŖ rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "Ų§Ų³Ł…Ų­ ŲØŁ€\"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "Ų§Ł„ŁˆŲµŁˆŁ„ Ų§Ł„Ł‰ Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ų„ŲÆŲ§Ų±Ų©"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ŲŖŁ… Ų§Ų¶Ų§ŁŲ© %s Ł…Ų³ŲØŁ‚Ų§)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ± Ł‡Ų°Ł‡ ŲØŲ³ŁŠŲ·Ų© Ų¬ŲÆŲ§"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Ų±Ų¬Ų§Ų”Ł‹ Ł‚Ł… ŲØŲ„Ų¹Ų·Ų§Ų” Ų§Ų³Ł… Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… ŁŠŲ¬ŲØ Ų£Ł† ŁŠŲ­ŲŖŁˆŁŠ ŁŁ‚Ų· Ų¹Ł„Ł‰ Ų§Ł„Ų­Ų±ŁˆŁ Ų§Ł„ŲµŲŗŁŠŲ±Ų©, Ų§Ł„Ų£Ų±Ł‚Ų§Ł…, `-' Łˆ `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… Ł…ŁŲ¶Ų§Ł Ł…Ų³ŲØŁ‚Ų§"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… Ł…ŁŲ¶Ų§Ł Ł…Ų³ŲØŁ‚Ų§"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Ų§Ų¶Ł Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -805,32 +849,32 @@ msgstr ""
"Ų£ŲÆŲ®Ł„ Ł…Ų³ŲŖŲ®ŲÆŁ…\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "ŁˆŲ§ŁŁ‚ Ų¹Ł„Ł‰ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Ų§Ł„Ų§Ų³Ł… Ų§Ł„Ų­Ł‚ŁŠŁ‚ŁŠ"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Ų§Ł„ŲŗŁ„Ų§Ł"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ų£ŁŠŁ‚ŁˆŁ†Ų©"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "ŲÆŲ®ŁˆŁ„ Ų¢Ł„ŁŠ"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -838,54 +882,54 @@ msgstr ""
"ŁŠŁ…ŁƒŁ†Ł†ŁŠ Ų§Ų¹ŲÆŲ§ŲÆ Ų¬Ł‡Ų§Ų²Łƒ Ł„ŲŖŲ³Ų¬ŁŠŁ„ Ų§Ł„ŲÆŲ®ŁˆŁ„ Ų¢Ł„ŁŠŁ„ Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… Ł…Ų§.\n"
"Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ų³ŲŖŲ®ŲÆŲ§Ł… Ł‡Ų°Ł‡ Ų§Ł„Ł…ŁŠŲ²Ų©ŲŸ"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠ:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Ų§Ų®ŲŖŲ± Ł…ŲÆŁŠŲ± Ų§Ł„Ł†ŁˆŲ§ŁŲ° Ų§Ł„Ų°ŁŠ Ų³ŁŠŲŖŁ… ŲŖŲ“ŲŗŁŠŁ„Ł‡:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ł„ŲŗŲ© Ų§Ł„Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ų§Ł„ŁƒŁ„"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Ų§Ų³Ł…Ų­ Ł„ŁƒŁ„ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁŠŁ†"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Ł„Ų§ Ł…Ų“Ų§Ų±ŁƒŲ©"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Ų§Ł„Ų­Ų²Ł…Ų© %s ŁŠŲ¬ŲØ Ų£Ł† ŲŖŁŲ«ŲØŁ‘ŲŖ. Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ«ŲØŁŠŲŖŁ‡Ų§ŲŸ"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "ŁŠŁ…ŁƒŁ†Łƒ Ų§Ł„ŲŖŲµŲÆŁŠŲ± ŲØŲ§Ų³ŲŖŲ®ŲÆŲ§Ł… NFS Ų£Łˆ Samba. Ų£ŁŠ Ł…Ł†Ł‡Ł…Ų§ ŲŖŲ±ŁŠŲÆ"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Ų§Ł„Ų­Ų²Ł…Ų© Ų§Ł„Ų¶Ų±ŁˆŲ±ŁŠŲ© %s Ł…ŁŁ‚ŁˆŲÆŲ©"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -894,11 +938,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Ų“ŲŗŁ‘Ł„ userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -906,56 +950,56 @@ msgstr ""
"Ų§Ł„Ł…Ų“Ų§Ų±ŁƒŲ© Ł„ŁƒŁ„ Ł…Ų³ŲŖŲ®ŲÆŁ… ŲŖŲ³ŲŖŲ®ŲÆŁ… Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų© \"fileshare\".\n"
"ŁŠŁ…ŁƒŁ†Łƒ Ų£Ł† ŲŖŲ³ŲŖŲ®ŲÆŁ… userdrake Ł„Ų„Ų¶Ų§ŁŲ© Ł…Ų³ŲŖŲ®ŲÆŁ… ŁŁŠ Ł‡Ų°Ł‡ Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų©."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Ł…Ų±Ų­ŲØŲ§ ŲØŲ§Ł„Ł…Ų®ŲŖŲ±Ł‚ŁŠŁ†"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "ŁŁ‚ŁŠŲ±"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ų§Ł„Ł‚ŁŠŲ§Ų³ŁŠ"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Ł…Ų±ŲŖŁŲ¹"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Ł…Ų±ŲŖŁŲ¹ Ų£ŁƒŲ«Ų±"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Ł…Ų±ŲŖŁŲ¹ Ų¬ŲÆŲ§"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -965,31 +1009,48 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
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:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± ŲŖŲ§Ų±ŁŠŲ® Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ©"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Ł…Ų³ŲŖŁˆŁ‰ Ų§Ł„Ų£Ł…Ł†"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Ų„Ų³ŲŖŲ®ŲÆŁ… libsafe Ł„Ł„Ł…Ł„Ł‚Ł…Ų§ŲŖ"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1006,109 +1067,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Ų³Ų·Ų­ Ų§Ł„Ł…ŁƒŲŖŲØ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ŁŠŁ…ŁƒŁ†Łƒ ŲŖŲ«ŲØŁŠŲŖ Ł…Ų­Ł…Ł‘Ł„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹ Ų¹Ł„Ł‰ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "Ł„Ų§ ŲŖŁˆŲ¬ŲÆ Ł…Ų³Ų§Ų¹ŲÆŲ© Ł„Ł‡Ų°Ų§ Ų­ŲŖŁ‰ Ų§Ł„Ų¢Ł†.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Ų§Ų¹ŲÆŲ§ŲÆ Ų£Ų³Ł„ŁˆŲØ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ł…Ł„Ł"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ł…Ł„Ł/_Ų®Ų±ŁˆŲ¬"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<ŲŖŲ­ŁƒŁ…>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Ų“Ų§Ų“Ų© NewStyle Ų§Ł„ŲŖŲµŁ†ŁŠŁŁŠŲ©"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Ų“Ų§Ų“Ų© NewStyle"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Ų“Ų§Ų“Ų© ŲŖŁ‚Ł„ŁŠŲÆŁŠŲ©"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Ų“Ų§Ų“Ų© Gtk+ Ų§Ł„ŲŖŁ‚Ł„ŁŠŲÆŁŠŲ©"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Ų“ŲŗŁ‘Ł„ Aurora Ų¹Ł†ŲÆ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "ŁˆŲ¶Ų¹ Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "ŁˆŲ¶Ų¹ Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "ŲŖŲ«ŲØŁŠŲŖ Ų§Ł„Ł†ŲøŲ§Ł…"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Ų®Ų·Ų£"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Ų¬Ų§Ų±ŁŠ Ł†Ų³Ų® %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Ł„Ų§ ŁŁŠŲÆŁŠŁˆ"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Ų§Ų®ŲŖŲ± Ł†ŁˆŲ¹ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1117,42 +1274,68 @@ msgstr ""
"Ų£Ł†ŲŖ ŲŖŲ³ŲŖŲ®ŲÆŁ… %s ŁƒŁ…ŲÆŁŠŲ± Ų§Ł‚Ł„Ų§Ų¹ Ų­Ų§Ł„ŁŠŲ§.\n"
"Ų§Ų¶ŲŗŲ· Ų¹Ł„Ł‰ ŲŖŁ‡ŁŠŲ¦Ų© Ł„ŲŖŲ“ŲŗŁŠŁ„ Ł…Ų¹Ų§Ł„Ų¬ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr ""
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "ŁˆŲ¶Ų¹ Ų§Ł„Ł†ŲøŲ§Ł…"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Ų“ŲŗŁ‘Ł„ X-Window Ų¹Ł†ŲÆ ŲØŲÆŲ” Ų§Ł„ŲŖŲ“ŲŗŁŠŁ„"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ł„Ų§, Ł„Ų§ Ų£Ų±ŁŠŲÆ ŲÆŲ®ŁˆŁ„Ų§ Ų£Ł„ŁŠŲ§"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ł†Ų¹Ł…, Ų£Ų±ŁŠŲÆ ŲÆŲ®ŁˆŁ„Ų§ Ų¢Ł„ŁŠŲ§ Ł…Ų¹ Ł‡Ų°Ų§ )Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…, Ų³Ų·Ų­ Ų§Ł„Ł…ŁƒŲŖŲØ("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Ł…ŁˆŲ§ŁŁ‚"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ł„Ł… ŁŠŁ…ŁƒŁ† ŁŲŖŲ­ /etc/inittab Ł„Ł„Ł‚Ų±Ų§Ų”Ų©: %s"
@@ -1196,61 +1379,112 @@ msgstr "Ł„Ų§ ŁŠŁ…ŁƒŁ†Ł†ŁŠ ŲŗŁ…Ł„ Ł„Ł‚Ų·Ų§ŲŖ Ł„Ł„Ų“Ų§Ų“Ų© Ł‚ŲØŁ„ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų©"
msgid "Screenshots will be available after install in %s"
msgstr "Ų³ŲŖŁƒŁˆŁ† Ł„Ł‚Ų·Ų§ŲŖ Ų§Ł„Ų“Ų§Ų“Ų© Ł…ŁˆŲ¬ŁˆŲÆŲ© ŲØŲ¹ŲÆ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ ŁŁŠ %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "ŁŲ±Ł†Ų³Ų§"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "ŁƒŁˆŲ³ŲŖŲ§Ų±ŁŠŁƒŲ§"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "ŲØŁ„Ų¬ŁŠŁƒŲ§"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ų§Ł„ŲŖŲ“ŁŠŁƒ"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Ų£Ł„Ł…Ų§Ł†ŁŠŲ§"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Ų§Ł„ŁŠŁˆŁ†Ų§Ł†"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Ų§Ł„Ł†Ų±ŁˆŁŠŲ¬"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Ų§Ł„Ų³ŁˆŁŠŲÆ"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Ł‡ŁˆŁ„Ł†ŲÆŲ§"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Ų„ŁŠŲ·Ų§Ł„ŁŠŲ§"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Ų§Ł„Ł†Ł…Ų³Ų§"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Ų§Ł„ŁˆŁ„Ų§ŁŠŲ§ŲŖ Ų§Ł„Ł…ŲŖŲ­ŲÆŲ©"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "ŲŗŁŠŲ± Ł…Ų¹Ų±ŁˆŁ"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "Ų¬ŲÆŁŠŲÆ"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Ų®Ų§ŲÆŁ…"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Ų±Ų¬Ų§Ų” Ų£ŲÆŲ®Ł„ Ų³Ų±Ų¹Ų© Ų³ŁˆŲ§Ł‚Ų© ŁƒŲŖŲ§ŲØŲ© Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Ų®Ų§ŲÆŁ…"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Ł†Ł‚Ų·Ų© Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Ų§Ł„Ų®ŁŠŲ§Ų±Ų§ŲŖ: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Ų±Ų¬Ų§Ų” Ł‚Ł… ŲØŲ¹Ł…Ł„ Ł†Ų³Ų®Ų© Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠŲ© Ł…Ł† ŲØŁŠŲ§Ł†Ų§ŲŖŁƒ Ų£ŁˆŁ„Ų§"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Ų§Ł‚Ų±Ų£ Ų¬ŁŠŲÆŲ§!"
@@ -1263,15 +1497,6 @@ msgstr ""
"Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ±ŁŠŲÆ Ų§Ų³ŲŖŲ®ŲÆŲ§Ł… aboot, ŁŁ„Ų§ ŲŖŁ†Ų³Ł‰ Ų£Ł† ŲŖŲŖŲ±Łƒ Ł…Ų³Ų§Ų­Ų© ŁŲ§Ų±ŲŗŲ© ŁŁŠ\n"
"ŲØŲÆŲ§ŁŠŲ© Ų§Ł„Ł‚Ų±Ųµ (2048 Ł‚Ų·Ų§Ų¹Ų§ŲŖ ŁƒŲ§ŁŁŠŲ©)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ų®Ų·Ų£"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Ų§Ł„Ł…Ų¹Ų§Ł„Ų¬"
@@ -1297,7 +1522,7 @@ msgid "Please click on a partition"
msgstr "ŁŲ¶Ł„Ų§ Ų§Ų¶ŲŗŲ· Ų¹Ł„Ł‰ ŲŖŲ¬Ų²Ų¦Ų©"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "ŲŖŁŲ§ŲµŁŠŁ„"
@@ -1325,13 +1550,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Ų§Ł„ŲŖŲØŲÆŁŠŁ„"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "ŁŲ§Ų±Ųŗ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Ų£Ų®Ų±Ł‰"
@@ -1339,12 +1564,12 @@ msgstr "Ų£Ų®Ų±Ł‰"
msgid "Filesystem types:"
msgstr "Ų£Ł†ŁˆŲ§Ų¹ Ų£Ł†ŲøŁ…Ų© Ų§Ł„Ł…Ł„ŁŲ§ŲŖ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Ų¹Ł…Ł„ ŲŖŲ¬Ų²Ų¦Ų©"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ų§Ł„Ł†ŁˆŲ¹"
@@ -1354,7 +1579,7 @@ msgstr "Ų§Ł„Ł†ŁˆŲ¹"
msgid "Use ``%s'' instead"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŁ… ``%s'' ŲØŲÆŁ„Ų§ Ł…Ł† Ų°Ł„Łƒ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Ų„Ł„ŲŗŲ§Ų”"
@@ -1362,108 +1587,108 @@ msgstr "Ų„Ł„ŲŗŲ§Ų”"
msgid "Use ``Unmount'' first"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŁ… ``Ų§Ų²Ų§Ł„Ų© Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²'' Ų£ŁˆŁ„Ų§"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "ŲØŲ¹ŲÆ ŲŖŲŗŁŠŁŠŲ± Ł†ŁˆŲ¹ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© %s, ŁŲ„Ł†Łƒ Ų³ŲŖŲ³Ų®Ų± ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų¹Ł„Ł‰ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų©"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Ų„Ų®ŲŖŲ± ŲŖŲ¬Ų²Ų¦Ų©"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Ų„Ų®ŲŖŲ± Ų“Ų§Ų“Ų©"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Ų®Ų±ŁˆŲ¬"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Ų§Ł„Ł†ŲŖŁ‚Ų§Ł„ Ų§Ł„Ł‰ ŁˆŲ¶Ų¹ŁŠŲ© Ų§Ł„Ų®ŲØŁŠŲ±"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ų§Ł„Ų§Ł†ŲŖŁ‚Ų§Ł„ Ų§Ł„Ł‰ Ų§Ł„ŁˆŲ¶Ų¹ Ų§Ł„Ų¹Ų§ŲÆŁŠ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "ŲŖŲ±Ų§Ų¬Ų¹"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ų§ŁƒŁ…Ų§Ł„ Ų¹Ł„Ł‰ Ų£ŁŠ Ų­Ų§Ł„ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Ų§Ł„Ų®Ų±ŁˆŲ¬ ŲØŲÆŁˆŁ† Ų§Ł„Ų­ŁŲø"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ų®Ų±ŁˆŲ¬ ŲØŲÆŁˆŁ† ŁƒŲŖŲ§ŲØŲ© Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų­ŁŲø ŲŖŲ¹ŲÆŁŠŁ„Ų§ŲŖ /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "ŲŖŲ­ŲÆŁŠŲÆ Ų¢Ł„ŁŠ"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Ų£Ł…Ų³Ų­ Ų§Ł„ŁƒŁ„"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Ų£ŁƒŲ«Ų±"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ„ŲØ"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "ŁƒŁ„ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų§ŲŖ Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ© Ł…Ų³ŲŖŲ®ŲÆŁ…Ų©"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ł„Ų§ ŁŠŁ…ŁƒŁ†Ł†ŁŠ Ų§Ų¶Ų§ŁŲ© Ų£ŁŠ ŲŖŲ¬Ų²Ų¦Ų© Ų£Ų®Ų±Ł‰"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Ł„ŁƒŁŠ ŲŖŁ…ŲŖŁ„Łƒ ŲŖŲ¬Ų²Ų¦Ų§ŲŖ Ų£ŁƒŲ«Ų±, ŁŠŲ±Ų¬Ł‰ Ų§Ł„ŲŗŲ§Ų” ŲŖŲ¬Ų²Ų¦Ų© ŁƒŁŠ ŲŖŲŖŁ…ŁƒŁ† Ł…Ł† Ų¹Ł…Ł„ ŲŖŲ¬Ų²Ų¦Ų© Ł…Ł…ŲŖŲÆŲ©"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Ų­ŁŲø Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ© Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Ų„Ł†Ł‚Ų§Ų° Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ų„Ų¹Ų§ŲÆŲ© ŲŖŲ­Ł…ŁŠŁ„ Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ² Ų§Ł„Ų¢Ł„ŁŠ Ł„Ł„ŁˆŲ³Ų§Ų¦Ų· Ų§Ł„Ł‚Ų§ŲØŁ„Ų© Ł„Ł„Ų„Ų²Ų§Ł„Ų©"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Ų§Ų®ŲŖŲ± Ł…Ł„Ł"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1471,11 +1696,11 @@ msgstr ""
"Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ… Ų§Ł„Ł…Ų­ŁŁˆŲø Ł„ŁŠŲ³ ŲØŁ†ŁŲ³ Ų§Ł„Ų­Ų¬Ł…\n"
"Ł„Ų§ Ų²Ł„ŲŖ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ų„ŁƒŁ…Ų§Ł„ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "ŲŖŲ­Ų°ŁŠŲ±"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1483,129 +1708,112 @@ msgstr ""
"Ų£ŲÆŲ®Ł„ Ł‚Ų±ŲµŲ§ Ł…Ų±Ł†Ų§ ŁŁŠ Ų§Ł„Ų³ŁˆŲ§Ł‚Ų©\n"
"ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų¹Ł„Ł‰ Ų§Ł„Ł‚Ų±Ųµ Ų³ŲŖŁ…Ų­Ł‰"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Ų¬Ų§Ų±ŁŠ Ł…Ų­Ų§ŁˆŁ„Ų© Ų§Ł†Ł‚Ų§Ų° Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ł…ŁŲµŁ‘Ł„Ų©"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Ł†Ł‚Ų·Ų© Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "ŲŖŲŗŁŠŁŠŲ± Ų§Ł„Ų­Ų¬Ł…"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Ł†Ł‚Ł„"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "ŲŖŁ†Ų³ŁŠŁ‚"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ų¬Ł‡Ų²"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Ų§Ų¶Ų§ŁŲ© Ų§Ł„Ł‰ RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Ų§Ų¶Ų§ŁŲ© Ų§Ł„Ł‰ LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ų§Ų²Ł„ Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Ų§Ų²Ų§Ł„Ų© Ł…Ł† RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Ų§Ų²Ų§Ł„Ų© Ł…Ł† LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "ŲŖŲ¹ŲÆŁŠŁ„ RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŲ§Ł… Ł„Ł€loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Ų§Ų¹Ł…Ł„ ŲŖŲ¬Ų²Ų¦Ų© Ų¬ŲÆŁŠŲÆŲ©"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Ł‚Ų·Ų§Ų¹ Ų§Ł„ŲØŲÆŲ§ŁŠŲ©: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ų§Ł„Ų­Ų¬Ł… ŲØŲ§Ł„ŁŠŲŗŲ§ŲØŲ§ŁŠŲŖ: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Ł†ŁˆŲ¹ Ł†ŲøŲ§Ł… Ų§Ł„Ł…ŁŲ§ŲŖ: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Ł†Ł‚Ų·Ų© Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Ų§Ł„ŲŖŁŲ¶ŁŠŁ„: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ų²Ų§Ł„Ų© Ł…Ł„Ł loopbackŲŸ"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "ŲŗŁŠŲ± Ł†ŁˆŲ¹ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų©"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Ų£ŁŠ Ł†ŲøŲ§Ł… Ł…Ł„ŁŲ§ŲŖ ŲŖŲ±ŁŠŲÆŲŸ"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„ŲŖŲŗŁŠŁŠŲ± Ł…Ł† ext2 Ų§Ł„Ł‰ ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ų£ŁŠŁ† ŲŖŲ±ŁŠŲÆ ŲŖŲ¬Ł‡ŁŠŲ² Ł…Ł„Ł loopback %sŲŸ"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ų£ŁŠŁ† ŲŖŲ±ŁŠŲÆ ŲØŲ¬Ł‡ŁŠŲ² Ų§Ł„Ų¬Ł‡Ų§Ų²%sŲŸ"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1613,130 +1821,135 @@ msgstr ""
"Ł„Ł… ŁŠŁ…ŁƒŁ† Ų§Ų²Ų§Ł„Ų© ŲŖŲ¹ŁŠŁŠŁ† Ł†Ł‚Ų·Ų© Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ² Ł†ŲøŲ±Ų§ Ł„Ų£Ł† Ł‡Ų°Ł‡ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© Ł…Ų³ŲŖŲ®ŲÆŁ…Ų© Ł„Ł€loop back.\n"
"Ł‚Ł… ŲØŲ„Ų²Ų§Ł„Ų© Ų§Ł„Ł€loopback Ų£ŁˆŁ„Ų§"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Ų£ŁŠŁ† ŲŖŲ±ŁŠŲÆ ŲØŲ¬Ł‡ŁŠŲ² Ų§Ł„Ų¬Ł‡Ų§Ų²%sŲŸ"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Ų¬Ų§Ų±ŁŠ Ų­Ų³Ų§ŲØ Ų±ŁˆŲ§ŲØŲ· Ł†ŲøŲ§Ł… Ł…Ł„ŁŲ§ŲŖ FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŲŗŁŠŁŠŲ± Ų§Ł„Ų­Ų¬Ł…"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ł‡Ų°Ų§ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ… ŲŗŁŠŲ± Ł‚Ų§ŲØŁ„ Ł„ŲŖŲŗŁŠŁŠŲ± Ų§Ł„Ų­Ų¬Ł…"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų¹Ł„Ł‰ Ł‡Ų°Ł‡ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© ŁŠŲ¬ŲØ Ų­ŁŲøŁ‡Ų§ Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠŲ§"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "ŲØŲ¹ŲÆ ŲŖŲŗŁŠŁŠŲ± Ų­Ų¬Ł… Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© %s, ŁŲ„Ł† ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų¹Ł„Ł‰ Ł‡Ų°Ł‡ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© Ų³ŲŖŁŁ‚ŲÆ"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų­Ų¬Ł… Ų§Ł„Ų¬ŲÆŁŠŲÆ"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ų§Ł„Ų­Ų¬Ł… Ų§Ł„Ų¬ŲÆŁŠŲÆ ŲØŲ§Ł„Ł…ŁŠŲŗŲ§ŲØŲ§ŁŠŲŖ: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Ų£ŁŠ Ł‚Ų±Ųµ ŲŖŲ±ŁŠŲÆ Ł†Ł‚Ł„Ł‡ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Ų§Ł„Ł‚Ų·Ų§Ų¹"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Ų£ŁŠ Ł‚Ų·Ų§Ų¹ ŲŖŲ±ŁŠŲÆ Ł†Ł‚Ł„Ł‡ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ł†Ł‚Ł„"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ų¬Ų§Ų±ŁŠ Ł†Ł‚Ł„ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų©..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Ų§Ų®ŲŖŲ± RAID Ł…ŁˆŲ¬ŁˆŲÆ Ł„Ł„Ų§Ų¶Ų§ŁŲ©"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "Ų¬ŲÆŁŠŲÆ"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Ų§Ų®ŲŖŲ± LVM l,Ų¬ŁˆŲÆ Ł„Ł„Ų§Ų¶Ų§ŁŲ©"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Ų§Ų³Ł… LVMŲŸ"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ł‡Ų°Ł‡ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© Ł„Ų§ ŁŠŁ…ŁƒŁ† Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…Ł‡Ų§ Ł„Ł€loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Ų§Ų³Ł… Ł…Ł„Ł Loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Ų§Ų¹Ų· Ų§Ų³Ł… Ł…Ł„Ł"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Ł‡Ų°Ų§ Ų§Ł„Ł…Ł„Ł Ł…Ų³ŲŖŲ®ŲÆŁ… Ł…Ł† loopback Ų£Ų®Ų±Ł‰, Ų§Ų®ŲŖŲ± Ł…Ł„ŁŲ§ Ų¢Ų®Ų±"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ų§Ł„Ł…Ł„Ł Ł…ŁˆŲ¬ŁˆŲÆ Ł…Ų³ŲØŁ‚Ų§, Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…Ł‡ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų§Ł„ŲŖŲ¬Ł‡ŁŠŲ²"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Ł…ŲŖŁ†ŁˆŲ¹Ų©"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ŁˆŲ­ŲÆŲ©"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "Ų§Ł„Ł…Ų³ŲŖŁˆŁ‰"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "Ų­Ų¬Ł… chunk"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "ŁƒŁ† Ų­Ų°Ų±Ų§: Ł‡Ų°Ł‡ Ų§Ł„Ų¹Ł…Ł„ŁŠŲ© Ų®Ų·ŁŠŲ±Ų©"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Ų£ŁŠ Ł†ŁˆŲ¹ Ł…Ł† Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų©ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Ų§Ł„Ų­Ų²Ł…Ų© %s ŁŠŲ¬ŲØ Ų£Ł† ŲŖŁŲ«ŲØŁ‘ŲŖ. Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ«ŲØŁŠŲŖŁ‡Ų§ŲŸ"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1744,7 +1957,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1752,51 +1965,51 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ų¬ŲÆŁˆŁ„ Ų§ŲŖŲŖŁ‚Ų³ŁŠŁ… Ł„Ł„Ł‚Ų±Ųµ %s Ų³ŁŠŲŖŁ… ŁƒŲŖŲ§ŲØŲŖŁ‡ Ų§Ł„Ł‰ Ų§Ł„Ł‚Ų±Ųµ!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Ų³ŲŖŲ­ŲŖŲ§Ų¬ Ų§Ł„Ł‰ Ų§Ų¹Ų§ŲÆŲ© Ų§Ł„ŲŖŲ“ŲŗŁŠŁ„ Ł‚ŲØŁ„ Ų£Ł† ŁŠŲŖŁ… ŲŖŁŲ¹ŁŠŁ„ Ų§Ł„ŲŖŲ¹ŲÆŁŠŁ„Ų§ŲŖ"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "ŲØŲ¹ŲÆ ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ… %s, ŁŲ„Ł† ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŲ© Ų¹Ł„Ł‰ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© Ų³ŲŖŁŁ‚ŲÆ"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„ŲŖŁ‡ŁŠŲ¦Ų©"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŁ‡ŁŠŲ¦Ų© Ł…Ł„Ł loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Ų®ŲØŲ” Ų§Ł„Ł…Ł„ŁŲ§ŲŖ"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Ų§Ł†Ł‚Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł‰ ŲŖŲ¬Ų²Ų¦Ų© Ų¬ŲÆŁŠŲÆŲ©"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1805,116 +2018,116 @@ msgstr ""
"Ų§Ł„ŲÆŁ„ŁŠŁ„ %s ŁŠŲ­ŲŖŁˆŁŠ Ł…Ų³ŲØŁ‚Ų§ Ų¹Ł„Ł‰ ŲØŲ¹Ų¶ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Ų¬Ų§Ų±ŁŠ Ł†Ł‚Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł‰ Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© Ų§Ł„Ų¬ŲÆŁŠŲÆŲ©"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Ų¬Ų§Ų±ŁŠ Ł†Ų³Ų® %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ų²Ų§Ł„Ų© %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų© %s Ł…Ų¹Ų±ŁˆŁŲ© Ų§Ł„Ų¢Ł† ŲØŲ§Ł„Ų„Ų³Ł… %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Ų§Ł„Ų¬Ł‡Ų§Ų²: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ų­Ų±Ł Ų³ŁˆŲ§Ł‚Ų© DOS: %s (Ł…Ų¬Ų±ŲÆ ŲŖŲ®Ł…ŁŠŁ†)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Ų§Ł„Ł†ŁˆŲ¹: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ų§Ł„Ų§Ų³Ł…: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Ų§Ł„ŲØŲÆŲ§ŁŠŲ©: Ł‚Ų·Ų§Ų¹ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Ų§Ł„Ų­Ų¬Ł…: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s Ł‚Ų·Ų§Ų¹"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Ų§Ł„Ų§Ų³Ų·ŁˆŲ§Ł†Ų© %d Ų§Ł„Ł‰ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Ł…Ų¬Ł‡Ų²\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "ŲŗŁŠŲ± Ł…Ų¬Ł‡Ų²\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Ł…Ų­Ł…Ł„\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Ų§Ł„Ł…Ų³ŲŖŁˆŁ‰ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ų­Ų¬Ł… Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Ų£Ł‚Ų±Ų§Ųµ RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Ų§Ų³Ł… Ł…Ł„Ł Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1922,7 +2135,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1930,62 +2143,57 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Ų§Ł„Ų­Ų¬Ł…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ų§Ł„Ł‡Ł†ŲÆŲ³Ų©: %s Ų§Ų³Ų·ŁˆŲ§Ł†Ų©, %s Ų±Ų£Ų³, %s Ł‚Ų·Ų§Ų¹\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Ų£Ł‚Ų±Ų§Ųµ LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ł†ŁˆŲ¹ Ų¬ŲÆŁˆŁ„ Ų§Ł„ŲŖŁ‚Ų³ŁŠŁ…: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "Ų¹Ł„Ł‰ bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Ų§Ł„Ų®ŁŠŲ§Ų±Ų§ŲŖ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Ł…ŁŲŖŲ§Ų­ ŲŖŲ“ŁŁŠŲ± Ł†ŲøŲ§Ł… Ų§Ł„Ł…Ł„ŁŲ§ŲŖ"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Ų§Ų®ŲŖŲ± Ł…ŁŲŖŲ§Ų­ ŲŖŲ“ŁŁŠŲ± Ł†ŲøŲ§Ł… Ų§Ł„Ł…Ł„ŁŲ§ŲŖ"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ł…ŁŲŖŲ§Ų­ Ų§Ł„ŲŖŲ“ŁŁŠŲ± Ł‡Ų°Ų§ ŲØŲ³ŁŠŲ· Ų¬ŲÆŲ§ (ŁŠŲ¬ŲØ Ų£Ł† ŁŠŁƒŁˆŁ† %d Ų­Ų±ŁŲ§ Ų¹Ł„Ł‰ Ų§Ł„Ų£Ł‚Ł„)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„ŲŖŲ“ŁŁŠŲ± ŲŗŁŠŲ± Ł…ŲŖŲ·Ų§ŲØŁ‚Ų©"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Ł…ŁŲ§ŲŖŲ­ Ų§Ł„ŲŖŲ“ŁŁŠŲ±"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Ł…ŁŲ§ŲŖŲ­ Ų§Ł„ŲŖŲ“ŁŁŠŲ± (Ł…Ų±Ų© Ų£Ų®Ų±Ł‰)"
@@ -2036,23 +2244,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "Ų§ŲØŲ­Ų« ŁŁŠ Ų£Ų¬Ł‡Ų²Ų© Ų§Ł„Ų®Ų§ŲÆŁ…"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ŲŖŲ¬Ł‡ŁŠŲ² %s Ł‚ŲÆ ŁŲ“Ł„"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ł„Ų§ Ų£Ų¹Ų±Ł ŁƒŁŠŁ Ų£Ų¬Ł‡Ų² %s ŁŁŠ Ų§Ł„Ł†ŁˆŲ¹ %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2069,313 +2277,317 @@ msgstr "Ł…Ų¹ /usr"
msgid "server"
msgstr "Ų®Ų§ŲÆŁ…"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Ł„Ų§ ŲŖŁˆŲ¬ŲÆ Ł…Ų³Ų§Ų­Ų© ŁƒŲ§ŁŁŠŲ© Ł„Ł„ŲŖŲ­ŲÆŁŠŲÆ Ų§Ł„Ų¢Ł„ŁŠ"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Ł„Ų§ Ų“ŁŠŲ¦ Ł„Ł„Ų¹Ł…Ł„"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " ŁŲŖŲ­Ų© Ų§Ł„Ų®Ų·Ų„ %s Ł„Ł„ŁƒŲŖŲ§ŲØŲ© :%s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
msgstr ""
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Ł„ŁŠŲ³ Ł„ŲÆŁŠŁƒ Ų£ŁŠŁ‘ ŁŁˆŲ§ŲµŁ„ ! "
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generic"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Card mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Ų­Ł…Ł„ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "ŲŗŁŠŁ‘Ų± Ų§Ł„Ł†ŁˆŲ¹"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Ų®Ų±ŁˆŲ¬"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ł…Ų³Ų§Ų¹ŲÆŲ©"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Ł…Ų³Ų§Ų¹ŲÆŲ©"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Ł…Ų³Ų§Ų¹ŲÆŲ©/_Ų­ŁˆŁ„ Ų§Ł„ŲØŲ±Ł†Ų§Ł…Ų¬..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "ŁˆŲ­ŲÆŲ©"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Ų§Ł„ŲŗŲ§Ų”"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "ŁˆŲ­ŲÆŲ©"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Ų§Ł„ŁˆŲµŁ"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Ų§Ų®ŲŖŲ± Ł…Ł„Ł"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway device"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 buttons"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ų®Ų±ŁˆŲ¬"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ł…Ų³Ų§Ų¹ŲÆŲ©"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ł…Ų³Ų§Ų¹ŲÆŲ©"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ł…Ų³Ų§Ų¹ŲÆŲ©/_Ų­ŁˆŁ„ Ų§Ł„ŲØŲ±Ł†Ų§Ł…Ų¬..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚ Ł…Ł† Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ Ų§Ł„ŲµŁ„ŲØŲ©"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Ų¹Ų±Ų¶ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų¹ŲŖŲ§ŲÆ"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŁŲ£Ų±Ų©"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Ų§Ų¹Ų±Ų¶ Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŁŲ£Ų±Ų©"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Ł…Ł† ŁŲ¶Ł„Łƒ Ų§Ł†ŲŖŲøŲ±"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d Ų«ŁˆŲ§Ł†"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ų²Ų§Ł„Ų© Ų§Ł„Ų·Ų§ŲØŲ¹Ų© \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
+msgid "Card model :"
+msgstr "Card mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ŲŗŁŠŁ‘Ų± Ų§Ł„Ł†ŁˆŲ¹"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ų­Ł…Ł„ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3406,7 +3618,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3414,7 +3626,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3434,26 +3646,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS Ł„Ų§ ŲŖŲ³Ų·ŁŠŲ¹ Ų§ Ų³ŲŖŲ¹Ł…Ų§Ł„ Ł‡Ų° Ų§ Ų§Ł„ŲØŲ±Ł†Ų§Ł…Ų¬ Ł…Ų¹"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3483,7 +3695,7 @@ msgid ""
"Continue anyway?"
msgstr "Ų§Ų³ŲŖŁ…Ų±Ł‘ ŲØŲ£ŁŠŁ‘Ų© Ų­Ų§Ł„"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
@@ -3644,12 +3856,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3657,12 +3869,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -3672,7 +3884,7 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3680,150 +3892,150 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ł‚ŲØŁˆŁ„"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3833,17 +4045,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr ""
@@ -4016,104 +4228,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Ų±Ų¬Ų§Ų”, Ų§Ų®ŲŖŲ± Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "ŲŖŲ±Ł‚ŁŠŲ©"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ł„ŲŗŲ© Ł†ŁˆŲ¹ Ų§Ł„ŁŲ£Ų±Ų©."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4124,135 +4336,135 @@ msgid ""
"Do you agree to loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų­Ų²Ł… Ų§Ł„ŲŖŁŠ Ų³ŲŖŁŲ«ŲØŁ‘ŁŽŲŖ"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4268,32 +4480,32 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4332,7 +4544,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4344,175 +4556,185 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Ų®Ų§ŲÆŁ… NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "ŲØŲ·Ų§Ł‚Ų© Ų§Ł„ŲµŁ‘ŁˆŲŖ ISA Ł‡Ł„ Ų¹Ł†ŲÆŁƒ Ų¹Ł†ŲÆ"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Ų§Ł„ŁŲ£Ų±Ų©"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Ų·Ų§ŲØŲ¹Ų©"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
-msgid "LDAP"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
-msgid "NIS"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
+msgid "LDAP"
msgstr ""
#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
+msgid "NIS"
msgstr ""
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Ų§Ų­ŲµŁ„ Ų¹Ł„Ł‰ Ų®Ų·ŁˆŲ· Windows"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Ų®Ų§ŲÆŁ… LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Ų§Ų­ŲµŁ„ Ų¹Ł„Ł‰ Ų®Ų·ŁˆŲ· Windows"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Ų®Ų§ŲÆŁ… NTP"
+msgid "Authentication Windows Domain"
+msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domain name"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4530,19 +4752,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Ų§Ł„Ł…ŲÆŲ®Ł„ Ų§Ł„Ł…Ų±Ł† Ų§Ł„Ų«Ł‘Ų§Ł†ŁŠ"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "ŲŖŲ®Ų·ŁŠ"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4558,7 +4780,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4567,28 +4789,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ų¢Ų³Ł , Ł„Ų§ Ł…ŲÆŲ®Ł„ Ł…Ų±Ł† Ł…ŲŖŲ§Ų­"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ų£ŲÆŲ®Ł„ Ł‚Ų±Ųµ Ł…Ų±Ł† ŲØŲ§Ł„ŲÆŁ‘Ų§Ų®Ł„ %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr " Ų„Ł†Ų“Ų§Ų” Ł‚Ų±Ųµ Ų§Ł„Ų§ Ł‚Ł„Ų§ Ų¹ "
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr " bootloader Ų„Ų¹ŲÆŲ§ŲÆ "
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4596,25 +4818,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr " aboot Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų£Ł† ŲŖŲ³ŲŖŲ®ŲÆŁ… "
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "bootloader Ų§Ł„ŲŖŁ‘Ų±ŁƒŁŠŲØ "
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4625,24 +4847,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4661,16 +4883,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4679,15 +4901,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr ""
@@ -4713,393 +4935,456 @@ msgstr "consolehelper missing"
msgid "Choose a file"
msgstr "Ų„Ų®ŲŖŲ± Ł…Ł„Ł"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Ł…ŲŖŁ‚ŲÆŁ…"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<-Ų³Ų§ŲØŁ‚ "
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Ų§Ł„ŲŖŲ§Ł„ŁŠ"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ų§Ų®ŲŖŁŠŲ§Ų±Łƒ ? (default %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Button `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ų¶ŲŗŲ· Ų¹Ł„Ł‰ Ł‡Ų°Ų§ Ų§Ł„Ų²Ų±ŲŸ "
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ų§Ų®ŲŖŁŠŲ§Ų±Łƒ ? (default `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Ų„Ų¹Ų§ŲÆŲ© ŲŖŲ³Ł„ŁŠŁ…"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ų§Ł„ŲŖŲ“ŁŠŁƒŁŠŲ© (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Ų§Ł„Ų„Ų³ŲØŲ§Ł†ŁŠŲ©"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ų§Ł„ŁŁ†Ł„Ł†ŲÆŁŠŲ©"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ©"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ų§Ł„Ł†Ų±ŁˆŁŠŲ¬ŁŠŲ©"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Ų§Ł„ŲØŁˆŁ„Ł†ŲÆŁŠŲ©"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ų§Ł„Ų±ŁˆŲ³ŁŠŲ©"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Ų§Ł„Ų³ŁˆŁŠŲÆŁŠŲ©"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Ų§Ł„Ų£Ł„ŲØŲ§Ł†ŁŠŲ©Ł‘"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ų§Ł„Ų£Ų±Ł…ŁŠŁ†ŁŠŲ© (Ł‚ŲÆŁŠŁ…)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Ų§Ł„Ų£Ų±Ł…ŁŠŁ†ŁŠŲ© (Ų¢Ł„Ų© ŁƒŲ§ŲŖŲØŲ©)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Ų§Ł„Ų£Ų±Ł…ŁŠŁ†ŁŠŲ©Ł‘ (ŲµŁˆŲŖŁŠ)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Ų§Ł„Ų£Ų°Ų±ŲØŁŠŲ¬Ų§Ł†ŁŠŲ© (Ł„Ų§ŲŖŁŠŁ†ŁŠ)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Ų§Ł„ŲØŁ„Ų¬ŁŠŁƒŁŠŲ©"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "ŲŖŁ…ŁƒŁŠŁ†"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Ų§Ł„ŲØŁ„ŲŗŲ§Ų±ŁŠŲ© (ŲµŁˆŲŖŁŠŲ©)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Ų§Ł„ŲØŁ„ŲŗŲ§Ų±ŁŠŲ© (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„ŁŠŲ©Ł‘ (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Ų§Ł„Ų„Ų³ŲŖŁˆŁ†ŁŠŲ©"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Ų§Ł„ŲØŁŠŁ„Ų§Ų±ŁˆŲ³ŁŠŲ©"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Ų§Ł„Ų³ŁˆŁŠŲ³Ų±ŁŠŲ© (ŲŖŲµŁ…ŁŠŁ… Ų£Ł„Ł…Ų§Ł†ŁŠ)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Ų§Ł„Ų³ŁˆŁŠŲ³Ų±ŁŠŲ© (ŲŖŲµŁ…ŁŠŁ… ŁŲ±Ł†Ų³ŁŠ) "
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ų§Ł„ŲŖŲ“ŁŠŁƒŁŠŲ© (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr " Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©Ł‘ (no dead keys)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Ų§Ł„ŲÆŁ†Ł…Ų§Ų±ŁƒŁŠŲ©"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ł†Ų±ŁˆŁŠŲ¬ŁŠŲ©Ł‘) "
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ų³ŁˆŁŠŲÆŁŠŲ©)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Ų§Ł„Ų„Ų³ŲŖŁˆŁ†ŁŠŲ©"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Ų§Ł„Ų¬ŁˆŲ±Ų¬ŁŠŲ© (Ų§Ł„ŲŖŲµŁ…ŁŠŁ… Ų§Ł„Ų±ŁˆŲ³ŁŠ)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Ų§Ł„Ų¬ŁˆŲ±Ų¬ŁŠŲ©Ł‘ (Ų§Ł„ŲŖŲµŁ…ŁŠŁ… Ų§Ł„Ł„Ų§ŲŖŁŠŁ†ŁŠ)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Ų§Ł„ŁŠŁˆŁ†Ų§Ł†ŁŠŲ©"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ų§Ł„Ł…Ų¬Ų±ŁŠŲ© Ų§Ł„Ł‡Ł†ŲŗŲ§Ų±ŁŠŲ©"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Ų§Ł„ŁƒŲ±ŁˆŲ§ŲŖŁŠŲ©"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Ų§Ł„Ų¹ŲØŲ±ŁŠŲ©"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Ų§Ł„Ų¹ŲØŲ±ŁŠŲ© (ŲµŁˆŲŖŁŠŲ©)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Ų§Ł„Ų„ŁŠŲ±Ų§Ł†ŁŠŁ‘Ų©"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Ų§Ł„Ų¢ŁŠŲ³Ł„Ų§Ł†ŲÆŁŠŲ©"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Ų§Ł„Ų„ŁŠŲ·Ų§Ł„ŁŠŲ©"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Ų§Ł„ŁŠŲ§ŲØŲ§Ł†ŁŠŲ© 106 Ł…ŁŲ§ŲŖŁŠŲ­"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„ŁƒŁˆŲ±ŁŠŲ©"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© Ų§Ł„Ł„Ų§ŲŖŁŠŁ†ŁŠŲ©"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Ų§Ł„Ł„Ų§ŲŖŁŁŠŲ©"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Ų§Ł„Ł„Ł‘ŁŠŲŖŁˆŲ§Ł†ŁŠŲ©Ł‘ AZERTY ( Ł‚ŲÆŁŠŁ… ) "
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Ų§Ł„Ł„Ł‘ŁŠŲŖŁˆŲ§Ł†ŁŠŁ‘Ų© AZERTY ( Ų¬ŲÆŁŠŲÆ ) "
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ų§Ł„Ł„Ł‘ŁŠŲŖŁˆŲ§Ł†ŁŠŲ©Ł‘ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " Ų§Ł„Ł„Ł‘ŁŠŲŖŁˆŲ§Ł†ŁŠŲ©Ł‘ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Ų§Ł„Ł„Ų§ŲŖŁŁŠŲ©"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Ų§Ł„Ł…Ł‚ŲÆŁˆŁ†ŁŠŲ©"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Ų§Ł„ŲµŁ‘Ų±ŲØŁŠŲ©Ł‘ (cyrillic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Ų§Ł„Ł‡ŁˆŁ„Ł†ŲÆŁŠŁ‘Ų©"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Ų§Ł„ŲØŁˆŁ„Ł†ŲÆŁŠŲ© (qwerty layout)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Ų§Ł„ŲØŁˆŁ„Ł†ŲÆŁŠŲ© (qwertz layout)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Ų§Ł„ŲØŲ±ŲŖŲŗŲ§Ł„ŁŠŲ©"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Ų§Ł„ŁƒŁ†ŲÆŁŠŁ‘Ų© (ŁƒŁŠŲØŁŠŁƒ)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Ų§Ł„Ų±Ł‘ŁˆŁ…Ų§Ł†ŁŠŁ‘Ų© (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Ų§Ł„Ų±Ł‘ŁˆŁ…Ų§Ł†ŁŠŲ©Ł‘ (qwertz)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ų§Ł„Ų±Ł‘ŁˆŲ³ŁŠŲ©Ł‘ (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Ų§Ł„Ų³Ł„ŁˆŁŁŠŁ†ŁŠŲ©"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Ų§Ł„Ų³Ł„ŁˆŁŲ§ŁƒŁŠŲ© (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Ų§Ł„Ų³Ł„ŁˆŁŲ§ŁƒŁŠŲ© (QWERTZ)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Ų§Ł„ŲµŁ‘Ų±ŲØŁŠŲ©Ł‘ (cyrillic)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Ų§Ł„ŲŖŲ§Ł…ŁŠŁ„"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Ų§Ł„ŲŖŲ§Ł…ŁŠŁ„ (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Ų§Ł„ŲŖŲ§Ł…ŁŠŁ„ (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„ŲŖŁ‘Ų§ŁŠŁ„Ų§Ł†ŲÆŁŠŁ‘Ų©"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Ł„ŁˆŲ­Ų© Ł…ŁŲ§ŲŖŁŠŲ­ Ų§Ł„Ų·Ł‘Ų§Ų¬ŁŠŁƒŁŠŁ‘Ų©"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Ų§Ł„ŲŖŁ‘Ų±ŁƒŁŠŁ‘ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Ų§Ł„ŲŖŁ‘Ų±ŁƒŁŠŁ‘ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ų§Ł„Ų£ŁˆŁƒŲ±Ų§Ł†ŁŠŲ©"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "( "
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Ų§Ł„ŁŁŠŲŖŁ†Ų§Ł…ŁŠŁ‘ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "( ŁŠŁˆŲŗŲ³Ł„Ų§ŁŁŠŁ‘ ( Ų§Ł„Ł„Ł‘Ų§ŲŖŁŠŁ†ŁŠŁ‘Ų© "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Ł…ŁŲŖŲ§Ų­ Alt key"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "Ł…ŁŲŖŲ§Ų­ CapsLock"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Right \"Windows\" key"
@@ -5108,37 +5393,37 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Ų±Ł‚Ł… Ų§Ł„ŲŖŁ‘Ł„ŁŠŁŁˆŁ† "
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "ŲŖŲ¬Ł‡ŁŠŲ² Ų§Ł„ŲŖŲ¬Ų²Ų¦Ų§ŲŖ"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5241,51 +5526,43 @@ msgstr "ŁˆŁ„Ų§ ŁˆŲ§Ų­ŲÆ"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Ł…Ł† ŁŲ¶Ł„Łƒ Ų§Ų®ŲŖŲØŲ± Ų§Ł„ŁŲ£Ų±Ų©"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! Ų­Ų±Ł‘Łƒ "
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Ų„Ł†ŲŖŁ‡Ų§Ų”"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Ų§Ł„ŲŖŲ§Ł„ŁŠ ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<-Ų³Ų§ŲØŁ‚ "
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ł‡Ł„ Ł‡Ų°Ų§ ŲµŲ­ŁŠŲ­ ? "
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Expand Tree"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Collapse Tree"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5305,6 +5582,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "use dhcp"
@@ -5330,7 +5611,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų³Ł‘Ų·Ų­ Ų§Ł„ŲØŁŠŁ†ŁŠŁ‘ Ł„Ł„Ų“ŲØŁƒŲ© "
@@ -5343,7 +5624,7 @@ msgstr ""
msgid "no network card found"
msgstr "Ł„Ų§ ŲØŲ·Ų§Ł‚Ų© Ų“ŲØŁƒŲ© ŁˆŲ¬ŲÆŲŖ "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ų§ Ų¹ŲÆŲ§ŲÆ Ų“ŲØŁƒŲ©"
@@ -5355,7 +5636,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Host Ų§Ų³Ł… "
@@ -5383,7 +5664,7 @@ msgstr ""
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5489,43 +5770,43 @@ msgstr ""
msgid "Dialup options"
msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Ų±Ł‚Ł… Ų§Ł„ŲŖŁ‘Ł„ŁŠŁŁˆŁ† "
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "( Ų®Ų§ŲÆŁ… Ų§ Ų§Ł„Ų£ŁˆŁ‘Ł„ ( Ų§Ų®ŲŖŁŠŲ§Ų±ŁŠŁ‘ "
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr ""
@@ -5617,13 +5898,13 @@ msgstr ""
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ŁˆŲ¶Ų¹ŁŠŲ© Ų§Ł„Ų®ŲØŁŠŲ±"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr ""
@@ -5725,7 +6006,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -5733,49 +6014,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Ų§ŲØŲÆŲ£ Ų¹Ł†ŲÆ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5783,40 +6064,40 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Ų§Ł„Ų®Ų§ŲÆŁ… DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxies Ų§Ų¹ŲÆŲ§ŲÆ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr ""
@@ -5828,7 +6109,7 @@ msgstr "Ų§Ų¹ŲÆŲ§ŲÆ Internet "
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr ""
@@ -5854,43 +6135,43 @@ msgstr ""
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Card IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr ""
@@ -5898,28 +6179,28 @@ msgstr ""
msgid "Choose your country"
msgstr "Ų„Ų®ŲŖŲ± ŲØŁ„ŲÆŁƒ"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Ų³Ų±Ų¹Ų© Ų§Ł„Ų„ŲŖŲµŲ§Ł„"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Ų§Ł„ŁˆŁ‚ŲŖ Ų§Ł„Ų£Ł‚ŲµŁ‰ Ł„Ł„Ų§ŲŖŲµŲ§Ł„ (ŲØŲ§Ł„Ų«ŁˆŲ§Ł†ŁŠ)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Account Password"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -5952,7 +6233,7 @@ msgstr ""
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -5995,7 +6276,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6023,7 +6304,7 @@ msgstr "Ų·Ų§ŲØŲ¹Ų© ŲØŲ¹ŁŠŲÆŲ©"
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr ""
@@ -6039,7 +6320,7 @@ msgstr ""
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr ""
@@ -6047,125 +6328,129 @@ msgstr ""
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Ų§Ł„Ų·Ų§ŲØŲ¹Ų§ŲŖ Ų§Ł„Ł…Ų­Ł„ŁŠŲ©"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Ų§Ł„Ų·Ų§ŲØŲ¹Ų§ŲŖ Ų§Ł„ŲØŲ¹ŁŠŲÆŲ©"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ų¹Ł„Ł‰ Ų®Ų§ŲÆŁ… CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr ""
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr " CUPS Ų§Ų¹ŲÆŲ§ŲÆŲ§ŲŖ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Ų§Ł„Ų®Ų§ŲÆŁ… CUPS Ų­ŲÆŁ‘ŲÆ"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6176,7 +6461,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6186,32 +6471,32 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "Ų¹Ł†ŁˆŲ§Ł† IP Ł„Ų®Ų§ŲÆŁ… CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ų§Ł„ŲØŁˆŲ§ŲØŲ©"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "ŲŖŁ‡ŁŠŲ¦Ų© CUPS Ų¢Ł„ŁŠŲ©"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Ų£Ų¶Ł Ų·Ų§ŲØŲ¹Ų© Ų¬ŲÆŁŠŲÆŲ©"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6224,35 +6509,67 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Ų·Ų§ŲØŲ¹Ų© Ł…Ų­Ł„ŁŠŲ©"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "ŲŖŲ­Ł‚Ł‚ Ł…Ł† Ų§Ł„Ų·Ų§ŲØŲ¹Ų§ŲŖ Ų¢Ł„ŁŠŲ§"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Ų·Ų§ŲØŲ¹Ų© Ł…Ų­Ł„ŁŠŲ©"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6266,51 +6583,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "ŲŖŁ… Ų§Ł„ŲŖŲ­Ł‚Ł‚ Ł…Ł† %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Ų·Ų§ŲØŲ¹Ų© Ų“ŲØŁƒŲ© (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6318,44 +6634,36 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Ł„Ł… ŁŠŲŖŁ… Ų§ŁŠŲ­Ų§ŲÆ Ų·Ų§ŲØŲ¹Ų© Ł…Ų­Ł„ŁŠŲ©!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Ų·Ų§ŲØŲ¹Ų© Ł…Ų­Ł„ŁŠŲ©"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6363,7 +6671,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6371,103 +6679,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ų§Ł„Ł…Ł†ŁŲ° Ų§Ł„Ł…ŁˆŲµŁ„Ų© Ų„Ł„ŁŠŁ‡ Ų·Ų§ŲØŲ¹ŲŖŁƒ."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ ŁŠŲÆŁˆŁŠ"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "ŲŖŲ±ŁƒŁŠŲØ Ų·Ų±ŁˆŲÆ ..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "ŲŖŲ±ŁƒŁŠŲØ Ų·Ų±ŁˆŲÆ ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "ŲŖŁ… Ų§Ł„ŲŖŲ­Ł‚Ł‚ Ł…Ł† %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Ų¬Ų§Ų±ŁŠ ŲØŲÆŲ” Ų§Ł„Ų“ŲØŁƒŲ©..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų·ŲØŲ§Ų¹Ų© Ų¹Ł„Ł‰ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6475,35 +6761,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Ł…Ų¬Ł…ŁˆŲ¹Ų© Ų§Ł„Ų¹Ł…Ł„"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "ŲŖŲ­Ł‚Ł‚ Ų¢Ł„ŁŠ"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6527,7 +6824,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6536,7 +6833,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6544,11 +6841,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6556,80 +6853,102 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
+#: ../../printerdrake.pm_.c:978
+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 ""
+
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Ų§Ų³Ł… Ł…Ų³ŲŖŲ¶ŁŠŁ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr ""
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Ų§Ų³Ł… Ł…Ų³ŲŖŲ¶ŁŠŁ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ų§Ł„Ł…ŁƒŲ§Ł†"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6644,24 +6963,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "ŲŖŁ… Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„Ł†Ł‘Ł…ŁˆŲ°Ų¬ ŁŠŲÆŁˆŁŠŁ‘Ł‹Ų§"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Ų„Ų®ŲŖŁŠŲ§Ų± ŁˆŲ­ŲÆŲ§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Ł…Ų§ Ł‡Łˆ Ł†ŁˆŲ¹ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© Ł„ŲÆŁŠŁƒŲŸ"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -6670,17 +6989,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6690,11 +7009,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6702,7 +7021,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -6715,7 +7034,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -6725,22 +7044,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6749,11 +7068,11 @@ msgstr ""
"Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ¹ŁŠŁŠŁ† Ł‡Ų°Ł‡ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© (\"%s\")\n"
"ŁƒŲ·Ų§ŲØŲ¹Ų© Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©ŲŸ"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6761,39 +7080,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Ų„Ų·ŲØŲ¹"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6803,21 +7122,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Ų·Ų§ŲØŲ¹Ų© Ų®Ų§Ł…"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6826,15 +7145,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -6843,7 +7162,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -6851,41 +7170,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6895,7 +7214,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -6904,45 +7223,45 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų·ŲØŲ§Ų¹Ų©/Ų§Ł„Ł…Ų³Ų­ Ų¹Ł„Ł‰ \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų·ŲØŲ§Ų¹Ų©/Ų§Ł„Ł…Ų³Ų­ Ų¹Ł„Ł‰ \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų·ŲØŲ§Ų¹Ų©/Ų§Ł„Ł…Ų³Ų­ Ų¹Ł„Ł‰ \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų·ŲØŲ§Ų¹Ų© Ų¹Ł„Ł‰ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Ų„ŲŗŁ„Ų§Ł‚"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Ł‚Ų§Ų¦Ł…Ų© Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -6951,9 +7270,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -6964,17 +7283,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Ł†Ł‚Ł„ Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6984,51 +7303,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7036,56 +7355,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Ų¬Ų§Ų±ŁŠ ŲØŲÆŲ” Ų§Ł„Ų“ŲØŁƒŲ©..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Ł„Ł… ŁŠŲŖŁ… ŲŖŲ­ŲÆŁŠŲÆ ŁˆŲøŁŠŁŁŠŲ© Ų§Ł„Ų“ŲØŁƒŲ©"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7093,11 +7412,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7107,31 +7426,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "Ł…Ų±ŲŖŁŲ¹"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7146,11 +7465,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7164,63 +7483,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ų£ŁŠ Ł†ŲøŲ§Ł… Ų·ŲØŲ§Ų¹Ų© ŲŖŲ±ŁŠŲÆ Ų£Ł† ŲŖŲ³ŲŖŲ®ŲÆŁ…ŲŸ"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų§ŲŖ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7228,39 +7547,35 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "ŲŖŲŗŁŠŁŠŲ± Ł†ŲøŲ§Ł… Ų§Ł„Ų·ŲØŲ§Ų¹Ų©"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ų®Ų±ŁˆŲ¬"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ¬Ų±ŲØŲ© Ų„Ų¹ŲÆŲ§ŲÆ Ų·Ų§ŲØŲ¹Ų© Ų£Ų®Ų±Ł‰ŲŸ"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "ŲŖŲ¹ŲÆŁŠŁ„ Ų§Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -7269,100 +7584,100 @@ msgstr ""
"Ų§Ł„Ų·Ų§ŲØŲ¹Ų© %s\n"
"Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ¹ŲÆŁŠŁ„ ŲŖŁ„Łƒ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©ŲŸ"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Ł†ŁˆŲ¹ ŁˆŲµŁ„Ų© Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Ų§Ų¹Ų±Ł ŁƒŁŠŁ ŲŖŲ³ŲŖŲ®ŲÆŁ… Ł‡Ų°Ł‡ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ų²Ų§Ł„Ų© Ų§Ł„Ų·Ų§ŲØŲ¹Ų© Ų§Ł„Ł‚ŲÆŁŠŁ…Ų© \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ų²Ų§Ł„Ų© Ų§Ł„Ų·Ų§ŲØŲ¹Ų© \"%s\" ..."
@@ -7409,7 +7724,7 @@ msgid ""
msgstr ""
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../proxy.pm_.c:79
@@ -7457,33 +7772,6 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:144
-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 ""
-
-#: ../../security/msec.pm_.c:150
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ł…ŲŖŁ‚ŲÆŁ…Ų©"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7716,7 +8004,7 @@ msgstr "Ų„Ł†ŲŖŲ±Ł†ŲŖ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Ł†ŲøŲ§Ł…"
@@ -7828,7 +8116,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Ł…Ų±ŁƒŲ² ŲŖŲ­ŁƒŁ… Mandrake"
@@ -7927,195 +8215,195 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "ŲŖŲ±ŁƒŁŠŲØ Ų·Ų±ŁˆŲÆ ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ŁŠŲ±Ų¬Ł‰ ŲŖŲ³Ų¬ŁŠŁ„ Ų§Ł„Ų®Ų±ŁˆŲ¬ Ų«Ł… Ų§Ų³ŲŖŲ®ŲÆŁ… Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ŁŠŲ±Ų¬Ł‰ Ų§Ų¹Ų§ŲÆŲ© ŲŖŲ³Ų¬ŁŠŁ„ Ų§Ł„ŲÆŲ®ŁˆŁ„ Ų§Ł„Ł‰ %s Ł„ŲŖŁ†Ų“ŁŠŲ· Ų§Ł„ŲŖŲŗŁŠŁŠŲ±Ų§ŲŖ"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
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 ""
" Ł„Ų§ ŁŠŁ…ŁƒŁ† Ų£Ł† Ų£Ł‚Ų±Ų£ Ų¬ŲÆŁˆŁ„ ŁŲ§ŲµŁ„Łƒ Ł‡Łˆ ŁŠŁŲ³ŲÆ Ų£ŁŠŲ¶Ł‹Ų§ Ų³ŁˆŁ Ų£Ų­Ų§ŁˆŁ„ Ų£Ł† Ų£Ų³ŲŖŁ…Ų±Ł‘ ŁŁˆŲ§ŲµŁ„ Ų³ŁŠŁ‘Ų¦Ų© "
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Ł†Ł‚Ł„ Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų©"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Ų®Ų§ŲÆŁ… Ł‚ŁˆŲ§Ų¹ŲÆ ŲØŁŠŲ§Ł†Ų§ŲŖ"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Ų®Ų§ŲÆŁ… Ł‚ŁˆŲ§Ų¹ŲÆ ŲØŁŠŲ§Ł†Ų§ŲŖ"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Ų§Ų¶Ł Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP Ų§Ł„Ų¹Ł…ŁŠŁ„"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Ł…Ų³Ų§Ų¹ŲÆŲ©"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
#, fuzzy
msgid "No kernel selected!"
msgstr "Ł„Ł… ŁŠŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ ŲØŲ·Ų§Ł‚Ų© ŲŖŁ„ŁŲ§Ų²!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "ŲŗŁŠŲ± Ł…ŲŖŲµŁ„"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Ų„Ł„ŲŗŲ§Ų”"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "ŲŖŁ… Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„ŁƒŁ„"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Ų§Ų¶Ł Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Ų§Ł„Ų¹Ł…ŁŠŁ„"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "Ų„Ų¹ŲÆŲ§Ų© Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ų£ŲÆŲ®Ł„ Ł‚Ų±Ųµ Ł…Ų±Ł† ŲØŲ§Ł„ŲÆŁ‘Ų§Ų®Ł„ %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ų¢Ų³Ł , Ł„Ų§ Ł…ŲÆŲ®Ł„ Ł…Ų±Ł† Ł…ŲŖŲ§Ų­"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Ų®Ų·Ų£ ! "
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Ų£ŲÆŲ§Ų© Ų§Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ł…Ų«ŲØŁ‘ŲŖ Ų§Ł„Ų¢Ł„ŁŠ"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8130,21 +8418,21 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų®Ų·ŁˆŲ§ŲŖ Ų§Ł„Ų¢Ł„ŁŠŲ©"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr ""
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8152,37 +8440,50 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "ŲŖŲ«ŲØŁŠŲŖ Ų¢Ł„ŁŠ"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Ų£Ų²Ł„ Ų§Ł„Ł…Ų§ŲÆŲ© Ų§Ł„Ų£Ų®ŁŠŲ±Ų©"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8190,7 +8491,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8198,31 +8499,94 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Ų§Ų¬Ł…Ų§Ł„ŁŠ Ų§Ł„ŲŖŁ‚ŲÆŁ…"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+msgid "No changes to backup!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8230,229 +8594,293 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr "Ų§Ų±Ų³Ų§Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ Ų¹Ł† Ų·Ų±ŁŠŁ‚ FTP"
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Ų§Ł†Ų³Ų® Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł†ŲøŲ§Ł… Ł‚ŲØŁ„:"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± ŁƒŁ„ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁŠŁ† Ų§Ł„Ų°ŁŠŁ† ŲŖŲ±ŁŠŲÆ ŲŖŲ¶Ł…ŁŠŁ†Ł‡Ł… ŁŁŠ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ų§Ų²Ł„ Ų§Ł„Ł…Ų§ŲÆŲ© Ų§Ł„Ł…Ų®ŲŖŲ§Ų±Ų©"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁˆŁ†"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŁ… Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ„ŲØ Ł„Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "ŁŲ¶Ł„Ų§ Ų£ŲÆŲ®Ł„ Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ¶ŁŠŁ Ų£Łˆ Ų¹Ł†ŁˆŲ§Ł† IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "ŁŲ¶Ł„Ų§Ł‹ Ų£ŲÆŲ®Ł„ Ų§Ł„ŲÆŁ„ŁŠŁ„ Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŲ© ŁŁŠŁ‡ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ©"
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Ų±Ų¬Ų§Ų” Ų£ŲÆŲ®Ł„ Ų§Ų³Ł… Ų§Ł„ŲÆŲ®ŁˆŁ„"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Ų±Ų¬Ų§Ų” ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ±"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "ŲŖŲ°ŁƒŁ‘Ų± ŁƒŁ„Ł…Ų© Ų§Ł„Ų³Ł‘Ų±Ł‘ Ł‡Ų°Ł‡ "
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Ų„Ł„Ł‰ Ų§Ł„Ł…Ų³Ų§Ų¹ŲÆ CD/DVDROM Ų§Ł„Ų§Ų³ŲŖŲ¹Ł…Ų§Ł„ "
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ł…Ų³Ų§Ų­Ų© Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„Ł…ŲÆŁ…Ų¬"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "ŁŲ¶Ł„Ų§ Ł‚Ł… ŲØŲ§Ł„ŲŖŲ£Ų“ŁŠŲ± Ł‡Ł†Ų§ Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ³ŲŖŲ®ŲÆŁ… ŁˆŲ³ŁŠŲ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "ŁŲ¶Ł„Ų§ Ł‚Ł… ŲØŲ§Ł„ŲŖŲ£Ų“ŁŠŲ± Ł‡Ł†Ų§ Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ³ŲŖŲ®ŲÆŁ… ŁˆŲ³ŁŠŲ· CDRW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "ŁŁŠŁ…Ų§ Ł…Ų¶Ł‰ CDRW Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ ,Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŁ…Ų­Łˆ "
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-" Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŲŖŲ¶Ł…Ł‘Ł† \n"
-"Ų±ŁƒŁ‘ŲØ Ų§Ł„Ų¬ŲÆŲ± Ų¹Ł„Ł‰ Ł‚Ų±ŲµŁƒ Ų§Ł„Ł…ŲÆŁ…Ų¬"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "ŁŲ¶Ł„Ų§ Ł‚Ł… ŲØŲ§Ł„ŲŖŲ£Ų“ŁŠŲ± Ł‡Ł†Ų§ Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ³ŲŖŲ®ŲÆŁ… ŁˆŲ³ŁŠŲ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "ŁŲ¶Ł„Ų§ Ł‚Ł… ŲØŲ§Ł„ŲŖŲ£Ų“ŁŠŲ± Ł‡Ł†Ų§ Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ³ŲŖŲ®ŲÆŁ… ŁˆŲ³ŁŠŲ· CDRW"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Ų§Ų®ŲŖŲ± Ł…Ł„Ł"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "ŁŁŠŁ…Ų§ Ł…Ų¶Ł‰ CDRW Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ ,Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŁ…Ų­Łˆ "
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "ŁŁŠŁ…Ų§ Ł…Ų¶Ł‰ CDRW Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ ,Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŁ…Ų­Łˆ "
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "ŁŁŠŁ…Ų§ Ł…Ų¶Ł‰ CDRW Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ ,Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŁ…Ų­Łˆ "
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ŁŲ¶Ł„Ų§Ł‹ Ų£ŲÆŲ®Ł„ Ų§Ł„ŲÆŁ„ŁŠŁ„ Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŲ© ŁŁŠŁ‡ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ©"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Ų§Ł„Ų“ŲØŁƒŲ©"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Ų§Ł„Ł†ŁˆŲ¹"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "ŁƒŁ„Ł‘ Ų³Ų§Ų¹Ų© "
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "ŁŠŁˆŁ…ŁŠŁ‘Ł‹Ų§ "
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "Ų£Ų³ŲØŁˆŲ¹ŁŠŁ‘Ų§"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "Ų“Ł‡Ų±ŁŠŲ§"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŁ… Ų§Ł„Ł…Ų±Ų§Ł‚ŲØ"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -8460,7 +8888,7 @@ msgstr ""
"ŁŲ¶Ł„Ų§ Ų§Ų®ŲŖŲ± Ų§Ł„ŁŲŖŲ±Ų© \n"
"Ł…Ų§ ŲØŁŠŁ† ŁƒŁ„ Ų¹Ł…Ł„ŁŠŲ© Ł†Ų³Ų® Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠ"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -8468,66 +8896,78 @@ msgstr ""
"Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ±\n"
"ŁˆŲ³ŁŠŲ· Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠ"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Ł…Ų§Ų°Ų§ "
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Ų£ŁŠŁ†"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Ł…ŲŖŁ‰ "
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ų£ŁƒŲ«Ų±"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ų£ŁŠŁ† ŲŖŲ±ŁŠŲÆ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠ."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "Ų¹Ł„Ł‰ Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ‘Ł„ŲØ"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "Ų¹ŲØŲ± Ų§Ł„Ų“Ł‘ŲØŁƒŲ©"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ł…Ų§ ŲŖŲ±ŁŠŲÆ Ł†Ų³Ų®Ł‡ Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠŲ§Ł‹"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Ł†ŲøŲ§Ł… Ų§Ł„Ł…Ų³Ų§Ų¹ŲÆ"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Ł…Ų³ŲŖŲ®ŲÆŁ…Łˆ Ų§Ł„Ł…Ų³Ų§Ų¹ŲÆ"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Ų§Ų®ŲŖŲ±Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ… ŁŠŲÆŁˆŁŠŁ‘Ł‹Ų§"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -8535,7 +8975,7 @@ msgstr ""
"\n"
"Ł…ŲµŲ§ŲÆŲ± Ų§Ł„Ł…Ų³Ų§Ų¹ŲÆ :\n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -8543,7 +8983,7 @@ msgstr ""
"\n"
"-Ł…Ł„ŁŁ‘Ų§ŲŖ Ų§Ł„Ł†Ł‘ŲøŲ§Ł… :\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -8551,7 +8991,7 @@ msgstr ""
"\n"
"-Ł…Ł„ŁŁ‘Ų§ŲŖ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -8559,7 +8999,7 @@ msgstr ""
"\n"
"-Ų§Ł„Ł…Ł„ŁŁ‘Ų§ŲŖ Ų§Ł„Ų£Ų®Ų±Ł‰:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -8568,22 +9008,32 @@ msgstr ""
"\n"
"- Ų§Ų­ŁŲÆ Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ‘Ł„ŲØ Ų¹Ł„Ł‰ Ų§Ł„Ų·Ł‘Ų±ŁŠŁ‚ :%s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Ų¬Ł‡Ų§Ų² Ų§Ł„ŁŲ£Ų±Ų©: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -8592,12 +9042,12 @@ msgstr ""
"\n"
"-FTP Łˆ Ų¹Ł„Ł‰ host Ų§Ų­ŁŲÆ Ų¹Ł„Ł‰ : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -8606,14 +9056,14 @@ msgstr ""
"\n"
"-FTP Łˆ Ų¹Ł„Ł‰ host Ų§Ų­ŁŲÆ Ų¹Ł„Ł‰ : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -8621,19 +9071,19 @@ msgstr ""
"\n"
"- Ų®ŁŠŲ§Ų±Ų§ŲŖ:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -8642,217 +9092,213 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Ų§Ų¶ŲŗŲ· Ł…ŁˆŲ§ŁŁ‚ Ł„Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ© Ł…Ł„ŁŲ§ŲŖ Ų§Ų®Ų±Ł‰"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Ł‚Ų§Ų¦Ł…Ų© Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁŠŁ† Ų§Ł„Ų°ŁŠŁ† Ų³ŁŠŲŖŁ… Ų§Ų³ŲŖŲ¹Ų§ŲÆŲŖŁ‡Ł…"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Ų§Ł†Ų³Ų® Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł†ŲøŲ§Ł… Ł‚ŲØŁ„:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± ŲŖŲ§Ų±ŁŠŲ® Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ©"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Ų§Ų³ŲŖŲ®ŲÆŁ… Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ„ŲØ Ł„Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "ŁˆŲµŁ„Ų© FTP"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "ŁˆŲµŁ„Ų© Ų¢Ł…Ł†Ų©"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Ų§Ų³ŲŖŲ¹ŲÆ Ł…Ł† Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ„ŲØ"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "ŁŲ¶Ł„Ų§Ł‹ Ų£ŲÆŲ®Ł„ Ų§Ł„ŲÆŁ„ŁŠŁ„ Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŲ© ŁŁŠŁ‡ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ©"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Ų§Ų®ŲŖŲ± ŁˆŲ³ŁŠŲ· Ų¢Ų®Ų± Ł„Ł„Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ© Ł…Ł†Ł‡"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "ŁˆŲ³ŁŠŲ· Ų¢Ų®Ų±"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Ų§Ų³ŲŖŲ¹ŲÆ Ų§Ł„Ł†Ł‘ŲøŲ§Ł…"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Ų£Ų¹ŲÆ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁŠŁ† "
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Ų§Ų³ŲŖŲ¹ŲÆ Ų¢Ų®Ų±"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "Ų§Ų®ŲŖŲ± Ł…Ų³Ų§Ų± Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ© (ŲØŲÆŁ„Ų§Ł‹ Ł…Ł† / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Ł‚Ł… ŲØŁ†Ų³Ų® Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠ Ų¬ŲÆŁŠŲÆ ŁŲØŁ„ Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ© (ŁŁ‚Ų· Ł„Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ© Ų§Ł„Ł…ŲŖŲÆŲ±Ų¬Ų©)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Ų£Ų²Ł„ Ų£ŲÆŁ„Ų© Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…ŁŠŁ† Ł‚ŲØŁ„ Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ©"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Ų§Ų³ŲŖŲ¹ŲÆ ŁƒŁ„ Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ©"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ© Ł…Ų®ŲµŲµŲ©"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Ų§Ł„Ų³Ų§ŲØŁ‚"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ų­ŁŲø"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Ų§ŲØŁ†ŁŠ Ų§Ł„Ł†Ų³Ų®Ų© Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠŲ©"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ©"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Ų§Ł„ŲŖŲ§Ł„ŁŠ"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ų§Ł„Ų­Ų²Ł…Ų© %s ŁŠŲ¬ŲØ Ų£Ł† ŲŖŁŲ«ŲØŁ‘ŲŖ. Ł‡Ł„ ŲŖŲ±ŁŠŲÆ ŲŖŲ«ŲØŁŠŲŖŁ‡Ų§ŲŸ"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± ŲŖŲ§Ų±ŁŠŲ® Ų§Ł„Ų„Ų³ŲŖŲ¹Ų§ŲÆŲ©..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± ŁˆŲ³ŁŠŲ· Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„Ł…Ų·Ł„ŁˆŲØ Ł†Ų³Ų®Ł‡Ų§ Ų§Ų­ŲŖŁŠŲ§Ų·ŁŠŲ§..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -8860,75 +9306,59 @@ msgstr ""
"Ł„Ł… ŁŠŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ Ł…Ł„Ł ŲŖŁ‡ŁŠŲ¦Ų© \n"
"ŁŲ¶Ł„Ų§ Ų§Ų¶ŲŗŲ· Ł…Ų¹Ų§Ł„Ų¬ Ł„Ų£Łˆ Ł…ŲŖŁ‚ŲÆŁ…."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "ŲŖŲ­ŲŖ Ų§Ł„ŲŖŲ·ŁˆŁŠŲ± ... Ų§Ł†ŲŖŲøŲ± ŁŲ¶Ł„Ų§"
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Ų§Ł†Ų³Ų® Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł†ŲøŲ§Ł…"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Ų§Ł†Ų³Ų® Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł…Ų³ŲŖŲ®ŲÆŁ…"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Ų§Ł†Ų³Ų® Ł…Ł„ŁŲ§ŲŖ Ų£Ų®Ų±Ł‰"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Ų§Ų¬Ł…Ų§Ł„ŁŠ Ų§Ł„ŲŖŁ‚ŲÆŁ…"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "Ų§Ų±Ų³Ų§Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ Ų¹Ł† Ų·Ų±ŁŠŁ‚ FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ų±Ų³Ų§Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Ł‚Ų§Ų¦Ł…Ų© Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„ŲŖŁŠ Ų³ŲŖŲ¶Ł…Ł† ŁŁŠ Ų§Ł„Ł‚Ų±Ųµ."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Ų±Ų¬Ų§Ų” Ų£ŲÆŲ®Ł„ Ų³Ų±Ų¹Ų© Ų³ŁˆŲ§Ł‚Ų© ŁƒŲŖŲ§ŲØŲ© Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "ŁŲ¶Ł„Ų§ Ų§Ų®ŲŖŲ± Ų§Ų³Ł… Ų¬Ł‡Ų§Ų² ŁƒŲŖŲ§ŲØŲ© Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ (Ł…Ų«Ų§Ł„: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "ŁŲ¶Ł„Ų§ ŲŖŲ£ŁƒŲÆ ŲØŲ£Ł†Łƒ ŲŖŲ±ŁŠŲÆ ŲŖŲ¶Ł…ŁŠŁ† Ų„Ł‚Ł„Ų§Ų¹ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ ŁŁŠ Ł‚Ų±ŲµŁƒ Ų§Ł„Ł…ŲÆŁ…Ų¬."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Ł‚Ł… ŲØŲ§Ł„Ł†Ų³Ų® Ų§Ł„Ų¢Ł† Ł…Ł† Ł…Ł„Ł Ų§Ł„ŲŖŁ‡ŁŠŲ¦Ų©"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Ų§Ų¹Ų±Ų¶ ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ł…Ų¹Ų§Ł„Ų¬"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ł…ŲŖŁ‚ŲÆŁ…"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Ł‚Ł… ŲØŲ§Ł„Ł†Ų³Ų® Ų§Ł„Ų„Ų­ŲŖŁŠŲ§Ų·ŁŠ Ų§Ł„Ų¢Ł†"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -8939,7 +9369,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -8960,7 +9390,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8969,7 +9399,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -8993,7 +9423,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9010,21 +9440,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9038,19 +9468,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Ų¬Ł…ŁŠŲ¹ Ų§Ł„Ų­Ł‚ŁˆŁ‚ Ł…Ų­ŁŁˆŲøŲ© (C) 2001 MandrakeSoft Ł…Ł† ŲÆŁˆŲØŁˆŁ† Ų³ŁŠŲØŲ§Ų³ŲŖŁŠŲ§Ł† <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9083,7 +9513,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9123,7 +9553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9134,7 +9564,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9147,7 +9577,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9186,94 +9616,121 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "ŁŲ“Ł„ ŲŖŲ«ŲØŁŠŲŖ %s. ŲøŁ‡Ų± Ų§Ł„Ų®Ų·Ų£ Ų§Ł„ŲŖŲ§Ł„ŁŠ:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Ų£ŲÆŁˆŲ§ŲŖ Ų³Ų·Ų± Ų§Ł„Ų£ŁˆŲ§Ł…Ų±"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "Ų¹Ł„Ł‰ Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„ŲµŁ‘Ł„ŲØ"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ Mandrake"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Ų§Ł„ŁŲ£Ų±Ų©"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Ų·Ų§ŲØŲ¹Ų© ŲØŲ¹ŁŠŲÆŲ©"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr ""
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Ł…Ų¹Ų§Ł„Ų¬ Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų“ŲØŁƒŲ©"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Ų§Ł„ŲŖŲ­Ł‚Ł‚"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr ""
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Ł…Ł† ŁŲ¶Ł„Łƒ Ų§Ł†ŲŖŲøŲ±"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9285,148 +9742,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Ł…Ų§ ŲØŲ¹ŲÆ Ų§Ų²Ų§Ł„Ų© Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Ų§Ų³ŲŖŲ¹Ų§ŲÆŲ©"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Ł…Ų§ ŲØŲ¹ŲÆ Ų§Ų²Ų§Ł„Ų© Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ų³ŲŖŁƒŁˆŁ† Ł„Ł‚Ų·Ų§ŲŖ Ų§Ł„Ų“Ų§Ų“Ų© Ł…ŁˆŲ¬ŁˆŲÆŲ© ŲØŲ¹ŲÆ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ ŁŁŠ %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Ų§Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų“ŲØŁƒŲ© (%d Ł…ŁˆŲ§Ų¦Ł…Ų§ŲŖ)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Ų§Ų­Ų°Ł Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„ Ų§Ł„Ł…Ų·Ł„ŁˆŲØ Ų­Ų°ŁŁ‡:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "ŲŖŲ“ŁƒŁŠŁ„ Ų¬ŲÆŁŠŲÆ..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Ł„Ų„Ų³Ł… Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„ Ų§Ł„Ų°ŁŠ Ų³ŲŖŲ¹Ł…Ł„Ł‡ (Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„ Ų§Ł„Ų¬ŲÆŁŠŲÆ ŁŠŲŖŁ… Ų¹Ł…Ł„Ł‡ ŁƒŁ†Ų³Ų®Ų© Ł…Ł† Ų§Ł„ŲŖŲ“ŁƒŁŠŁ„ Ų§Ł„Ų­Ų§Ł„ŁŠ) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ų§Ų³Ł… Ų§Ł„Ł…Ų³ŲŖŲ¶ŁŠŁ :"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Ų§Ł„ŲÆŲ®ŁˆŁ„ Ų§Ł„Ł‰ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Ų§Ł„Ł†ŁˆŲ¹:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Ų§Ł„ŲØŁˆŲ§ŲØŲ©:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų©:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Ų§Ł„Ų­Ų§Ł„Ų©:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Ų§Ł„Ų§Ł†ŲŖŲøŲ§Ų± Ł…Ł† ŁŲ¶Ł„Łƒ"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŲÆŲ®ŁˆŁ„ Ų§Ł„Ł‰ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Ų§Ł„Ł…Ų­Ų±Łƒ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų©"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Ų§Ł„ŲØŲ±ŁˆŲŖŁˆŁƒŁˆŁ„"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Ų§Ł„Ų­Ų§Ł„Ų©"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ł…Ų­Ł„ŁŠŲ©..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Ų§Ł†Ł‚Ų± Ł‡Ł†Ų§ Ł„ŲŖŲ“ŲŗŁŠŁ„ Ų§Ł„Ł…Ų¹Ų§Ł„Ų¬ ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Ų§Ł„Ł…Ų¹Ų§Ł„Ų¬..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "ŲŖŲ·ŲØŁŠŁ‚"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "ŁŠŲ±Ų¬Ł‰ Ų§Ł„Ų„Ł†ŲŖŲøŲ§Ų±... Ų¬Ų§Ų±ŁŠ ŲŖŲ·ŲØŁŠŁ‚ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ł…ŲŖŁ‘ŲµŁ„ "
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "ŲŗŁŠŲ± Ł…ŲŖŲµŁ„"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Ų§ŲŖŲµŁ„..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Ų§Ł‚Ų·Ų¹ Ų§Ł„Ų„ŲŖŲµŲ§Ł„..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr "ŲŖŲ­Ų°ŁŠŲ±, ŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ Ų§ŲŖŲµŲ§Ł„ Ų„Ł†ŲŖŲ±Ł†ŲŖ Ų¢Ų®Ų±, Ų±ŲØŁ…Ų§ ŁŠŁƒŁˆŁ† ŁŠŲ³ŲŖŲ®ŲÆŁ… Ų“ŲØŁƒŲŖŁƒ"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -9434,36 +9891,36 @@ msgstr ""
"Ł„Ł… ŲŖŁ‚Ł… ŲØŲŖŁ‡ŁŠŲ¦Ų© Ų£ŁŠ ŁˆŲ§Ų¬Ł‡Ų§ŲŖ.\n"
"Ł‚Ł… ŲØŲŖŁ‡ŁŠŲ¦ŲŖŁ‡Ł… Ų£ŁˆŁ„Ų§ Ų¹Ł† Ų·Ų±ŁŠŁ‚ Ų§Ł„Ų¶ŲŗŲ· Ų¹Ł„Ł‰ 'ŲŖŁ‡ŁŠŲ¦Ų©'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆ LAN"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Ų§Ł„Ł…Ų­ŁˆŁ‘Ł„ %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "ŲØŲ±ŁˆŲŖŁˆŁƒŁˆŁ„ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "ŁŠŲŖŁ… ŲØŲÆŲ”Ł‡ Ų¹Ł†ŲÆ Ų§Ł„Ų„Ł‚Ł„Ų§Ų¹"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP Ų§Ł„Ų¹Ł…ŁŠŁ„ "
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Ł‚Ł… ŲØŲ§Ł„ŲŖŁ†Ų“ŁŠŲ· Ų§Ł„Ų¢Ł†"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "Ł‚Ł… ŲØŲ„Ų²Ų§Ł„Ų© Ų§Ł„ŲŖŁ†Ų“ŁŠŲ· Ų§Ł„Ų¢Ł†"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -9471,7 +9928,7 @@ msgstr ""
"Ł„Ł… ŁŠŲŖŁ… ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© ŲØŲ¹ŲÆ.\n"
"Ł‚Ł… ŲØŲŖŲ“ŲŗŁŠŁ„ Ł…Ų¹Ų§Ł„Ų¬ Ų§Ł„ŲŖŁ‡ŁŠŲ¦Ų© ŁŁŠ Ų§Ł„Ł†Ų§ŁŲ°Ų© Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -9479,121 +9936,121 @@ msgstr ""
"Ł„ŁŠŲ³ŲŖ Ł„ŲÆŁŠŁƒ Ų£ŁŠ Ų§ŲŖŲµŲ§Ł„Ų§ŲŖ Ų„Ł†ŲŖŲ±Ł†ŲŖ.\n"
"Ł‚Ł… ŲØŲ¹Ł…Ł„ Ų§ŲŖŲµŲ§Ł„ Ų£ŁˆŁ„Ų§ ŲØŲ§Ų³ŲŖŲ®ŲÆŲ§Ł… 'ŲŖŁ‡ŁŠŲ¦Ų©'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų„ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų„ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Ł†ŁˆŲ¹ Ų§Ł„Ų¹Ł„Ų§Ł‚Ų©"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet Card"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP Ų§Ł„Ų¹Ł…ŁŠŁ„"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "Ų§Ł„Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…: ŲÆŲ±ŁŠŁƒ Ł„Ł„Ų§Ł‚Ų±Ų§Ųµ Ų§Ł„Ł…Ų±Ł†Ų©\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-Ł…ŲŖŁ†ŁˆŲ¹-Ų«Ų§ŲØŲŖ-ŁˆŲ³Ų·-Ų±-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Ų§Ų³Ł… Ų§Ł„ŁˆŲ­ŲÆŲ©"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ų­Ų¬Ł…"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "ŲÆŲ±ŁŠŁƒ Ł„Ł„Ų§Ł‚Ų±Ų§Ųµ Ų§Ł„Ł…Ų±Ł†Ų©"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "ŲµŁ†Ų¹ Ł‚Ų±Ųµ Ł…Ų±Ł† Ł„ŲØŲÆŲ” Ų§Ł„Ł†ŲøŲ§Ł…"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Ų§Ł„Ł…Ų±Ų¬Ų¹"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Ų®Ų·Ų£ ŁŁ‰ ŲÆŲ±ŁŠŁƒ Ł„Ų¹Ł…Ł„ Ł‚Ų±Ųµ ŲØŲÆŲ” Ų§Ł„Ł†ŲøŲ§Ł…: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Ų§ŲµŲÆŲ§Ų±Ų© Ų§Ł„Ł„ŲØ"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Ų¹Ų§Ł…"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ł…Ł†Ų·Ł‚Ų© Ų§Ł„Ų®ŲØŲ±Ų§Ų”"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd Ų§Ł„Ų®ŲµŲ§Ų¦Ųµ Ų§Ł„Ų§Ų®ŲŖŁŠŲ§Ų±ŁŠŲ©"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Ų§Ų¶Ų§ŁŲ© ŁˆŲ­ŲÆŲ©"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "Ų§Ų¬ŲØŲ§Ų±"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "Ų§Ų°Ų§ Ų§Ų­ŲŖŲ¬ŲŖŁ‡"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "SCSI Ų§Ł‡Ł…Ł„ ŁˆŲ­ŲÆŲ§ŲŖ Ų§Ł„"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "RAID Ų§Ł‡Ł…Ł„ ŁˆŲ­ŲÆŲ§ŲŖ Ų§Ł„"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Ų§Ų²Ų§Ł„Ų© ŁˆŲ­ŲÆŲ©"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ų§Ł„Ł†Ų§ŲŖŲ¬"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Ų¬Ł‡Ų² Ų§Ł„Ł‚Ų±Ųµ"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "ŲŖŲ£ŁƒŲÆ Ł…Ł† ŁˆŲ¬ŁˆŲÆ Ų§Ł„ŁˆŲ³ŁŠŲ· Ł„Ł„ŁˆŲ­ŲÆŲ© %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -9602,12 +10059,12 @@ msgstr ""
"Ł„Ų§ ŁŠŁˆŲ¬ŲÆ ŁˆŲ³Ų· Ų£Łˆ Ų±ŲØŁ…Ų§ ŁŠŁƒŁˆŁ† Ų§Ł„ŁˆŲ³Ų· Ł…Ų­Ł…ŁŠ Ł…Ł† Ų§Ł„Ł‚Ų±Ų§Ų”Ų© Ł„Ł„Ų¬Ł‡Ų§Ų² %s.\n"
"ŁŲ¶Ł„Ų§Ł‹ Ų§ŲÆŲ®Ł„ ŁˆŲ³Ų· ŁŁ‰ Ų§Ł„ŁˆŲ­ŲÆŲ©."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "ŲŖŲ¹Ų°Ų± ŲŖŁ†ŁŁŠŲ°: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -9618,99 +10075,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Ų§ŲØŲ­Ų« ŁŁŠ Ų§Ł„Ų®Ų·ŁˆŲ· Ų§Ł„Ł…Ų«ŲØŲŖŲ©"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Ų£Ų²Ł„ Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„Ų®Ų·ŁˆŲ· Ų§Ł„Ł…Ų«ŲØŲŖŲ©"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "ŲŖŲ­Ł„ŁŠŁ„ ŁƒŁ„ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "Ł„Ų§ ŲŖŁˆŲ¬ŲÆ Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "Ų§Ł†ŲŖŁ‡Ł‰"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "Ł„Ł… Ų£ŲŖŁ…ŁƒŁ† Ł…Ł† Ų§ŁŠŲ¬Ų§ŲÆ Ų£ŁŠ Ų®Ų·ŁˆŲ· ŁŁŠ ŲŖŲ¬Ų²Ų¦Ų§ŲŖŁƒ Ų§Ł„Ł…Ų­Ł…Ł„Ų©"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ų£Ų¹ŲÆ Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„Ų®Ų·ŁˆŲ· Ų§Ł„ŲµŲ­ŁŠŲ­Ų©"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "Ł„Ł… Ų£ŲŖŁ…ŁƒŁ† Ł…Ł† Ų„ŁŠŲ¬Ų§ŲÆ Ų£ŁŠ Ų®Ų·.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Ų§ŲØŲ­Ų« Ų¹Ł† Ų§Ł„Ų®Ų·ŁˆŲ· ŁŁŠ Ų§Ł„Ł‚Ų§Ų¦Ł…Ų© Ų§Ł„Ł…Ų«ŲØŲŖŲ©"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Ł†Ł‚Ł„ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "ŲŖŲ«ŲØŁŠŲŖ Ų®Ų·ŁˆŲ· True Type"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "Ų±Ų¬Ų§Ų” Ų§Ł†ŲŖŲøŲ± Ų£Ų«Ł†Ų§Ų” Ų¹Ł…Ł„ŁŠŲ© ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "ŲŖŁ… ŲŖŲ«ŲØŁŠŲŖ Ų®Ų·ŁˆŲ· True Type"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "ŲŖŲ­ŁˆŁŠŁ„ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "ŲØŁ†Ų§Ų” type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ŲŖŲ­ŁˆŁŠŁ„ Ų®Ų·ŁˆŲ· ttf"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "ŲŖŲ­ŁˆŁŠŁ„ Ų®Ų·ŁˆŲ· pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Ų£ŲØŲ·Ł„ Ų§Ł„Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ł…Ų¤Ł‚ŲŖŲ©"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Ų£Ų¹ŲÆ ŲŖŲ“ŲŗŁŠŁ„ XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Ų£ŲØŲ·Ł„ Ł…Ł„ŁŲ§ŲŖ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9719,107 +10176,111 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Ų§Ų³ŲŖŁŠŲ±Ų§ŲÆ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Ų§Ų­ŲµŁ„ Ų¹Ł„Ł‰ Ų®Ų·ŁˆŲ· Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Ų§Ų®Ų°Ł Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ Ł…ŲŖŁ‚ŲÆŁ…Ų©"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Ł‚Ų§Ų¦Ł…Ų© Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų§ŲŖ Ų§Ł„ŲŖŁŠ Ų³ŲŖŲÆŲ¹Ł… Ų§Ł„Ų®Ų·ŁˆŲ· :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Ų·Ų§ŲØŲ¹Ų§ŲŖ Ų¹Ų§ŲÆŁŠŲ© (Generic)"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Ų§Ų®ŲŖŲ± Ł…Ł„Ł Ų£Łˆ ŲÆŁ„ŁŠŁ„ Ų§Ł„Ų®Ų·ŁˆŲ· Łˆ Ų§Ų¶ŲŗŲ· 'Ų§Ų¶Ų§ŁŲ©'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Ų«ŲØŁ‘ŲŖ Ų§Ł„Ł‚Ų§Ų¦Ł…Ų©"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "Ų§Ų¶ŲŗŲ· Ł‡Ł†Ų§ Ų„Ų°Ų§ ŁƒŁ†ŲŖ Ł…ŲŖŲ£ŁƒŲÆŲ§."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "Ų„Ų¶ŲŗŲ· Ł‡Ł†Ų§ Ų„Ų°Ų§ Ł„Ł… ŲŖŁƒŁ† Ł…ŲŖŲ£ŁƒŲÆŲ§."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "ŲŖŁ… Ų§Ų²Ų§Ł„Ų© Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„ŁƒŁ„"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "ŲŖŁ… Ų§Ų®ŲŖŁŠŲ§Ų± Ų§Ł„ŁƒŁ„"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Ų§Ų²Ł„ Ų§Ł„Ł‚Ų§Ų¦Ł…Ų©"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Ų§Ł„Ų„Ų®ŲŖŲØŲ§Ų±Ų§ŲŖ Ų§Ł„Ų£ŁˆŁ„ŁŠŲ©"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Ų§Ł†Ų³Ų® Ų§Ł„Ų®Ų·ŁˆŲ· Ų§Ł„Ł‰ Ł†ŲøŲ§Ł…Łƒ"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Ų«ŲØŁ‘ŲŖ Łˆ Ų­ŁˆŁ‘Ł„ Ų§Ł„Ų®Ų·ŁˆŲ·"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Ł…Ų§ ŲØŲ¹ŲÆ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Ų£Ų²Ł„ Ų§Ł„Ų®Ų·ŁˆŲ· Ł…Ł† Ų§Ł„Ł†ŲøŲ§Ł…"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Ł…Ų§ ŲØŲ¹ŲÆ Ų§Ų²Ų§Ł„Ų© Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Ł…Ų“Ų§Ų±ŁƒŲ© Ų§Ł„Ų„ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Ų¢Ų³ŁŁˆŁ†, Ł†Ų­Ł† Ł†ŲÆŲ¹Ł… Ų§ŲµŲÆŲ§Ų±Ų§ŲŖ Ų§Ł„Ł†ŁˆŲ§Ų© 2.4"
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Ł…Ų“Ų§Ų±ŁƒŲ© Ų§Ł„Ų„ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ Ł…Ł…ŁƒŁ†Ų© Ų­Ų§Ł„ŁŠŲ§"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9827,31 +10288,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "ŲŖŲ¹Ų·ŁŠŁ„"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Ų§Ł‡Ł…Ų§Ł„"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "Ų„Ų¹ŲÆŲ§Ų© Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŲ¹Ų·ŁŠŁ„ Ų§Ł„Ų®ŁˆŲ§ŲÆŁ…..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Ł…Ų“Ų§Ų±ŁƒŲ© Ų§ŲŖŲµŲ§Ł„ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ ŲŗŁŠŲ± Ł…Ł…ŁƒŁ‘ŁŽŁ†Ų© Ų§Ł„Ų¢Ł†."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Ł…Ų“Ų§Ų±ŁƒŲ© Ų§Ł„Ų„ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9859,19 +10320,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "ŲŖŁ…ŁƒŁŠŁ†"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Ų¬Ų§Ų±ŁŠ ŲŖŁ…ŁƒŁŠŁ† Ų§Ł„Ų®ŁˆŲ§ŲÆŁ…..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Ł…Ų“Ų§Ų±ŁƒŲ© Ų„ŲŖŲµŲ§Ł„ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ Ł…Ł…ŁƒŁ‘ŁŽŁ†Ų© Ų§Ł„Ų¢Ł†."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9881,31 +10342,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© %s (ŲØŲ§Ų³ŲŖŲ®ŲÆŲ§Ł… Ų§Ł„ŁˆŲ­ŲÆŲ© %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Ł„Ų§ Ł…Ų­ŁˆŁ‘Ł„ Ų§Ł„Ų“Ł‘ŲØŁƒŲ© Ų¹Ł„Ł‰ Ł†ŲøŲ§Ł…Łƒ"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Ų³Ų·Ų­ ŲØŁŠŁ†ŁŠŁ‘ Ł„Ł„Ų“ŲØŁƒŲ© "
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9915,17 +10376,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "ŁˆŲ§Ų¬Ł‡Ų© Ų§Ł„Ų“ŲØŁƒŲ© Ł…Ų¹ŲÆŁ‘Ų© Ł…Ų³ŲØŁ‚Ų§!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9935,15 +10396,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Ų§Ų¹ŲÆŲ§Ų© ŲŖŁ‡ŁŠŲ¦Ų© Ų¢Ł„ŁŠŲ©"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Ų£ŲøŁ‡Ų± ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© Ų§Ł„Ų­Ų§Ł„ŁŠŲ©"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9960,7 +10421,7 @@ msgstr ""
"ŲµŁŲ© Ų§Ł„Ł€IP: %s\n"
"Ų§Ł„Ł…Ų“ŲŗŁ„: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9972,33 +10433,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Ų“ŲØŁƒŲ© Ł…Ų­Ł„ŁŠŲ© Ł…Ł† Ų§Ł„ŁŲ¦Ų© C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "Ų¹Ł†ŁˆŲ§Ł† IP Ł„Ų®Ų§ŲÆŁ… DHCP (Ł‡Ų°Ų§)"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Ų„Ų¹Ų§ŲÆŲ© Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© Łˆ Ų®Ų§ŲÆŁ… DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ł…Ų­Ł„ŁŠŲ© Ł„Ł… ŲŖŁ†ŲŖŁ‡ ŲØŁ€`0', Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų®Ų±ŁˆŲ¬."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ŲŖŁ… Ų§ŁŠŲ¬Ų§ŲÆ ŲŖŲ¹Ų§Ų±Ų¶ ŁŁŠ Ų¹Ł†ŁˆŲ§Ł† Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ł…Ų­Ł„ŁŠŲ© Ų§Ł„Ł…ŲØŲÆŲ¦ŁŠ ŁŁŠ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų­Ų§Ł„ŁŠ Ł„Ł€%s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "ŲŖŁ… Ų§ŁƒŲŖŲ“Ų§Ł Ų„Ų¹ŲÆŲ§ŲÆ Ł„Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10006,20 +10467,20 @@ msgstr ""
"ŲŖŲ­Ų°ŁŠŲ±! ŲŖŁ… Ų„ŁŠŲ¬Ų§ŲÆ Ų„Ų¹ŲÆŲ§ŲÆ Ų¬ŲÆŲ§Ų± Ł†Ų§Ų±ŁŠ Ł…ŁˆŲ¬ŁˆŲÆ Ł…Ų³ŲØŁ‚Ų§. Ų±ŲØŁ…Ų§ ŲŖŲ­ŲŖŲ§Ų¬ Ų§Ł„Ł‰ Ų§ŲµŁ„Ų§Ų­ ŁŠŲÆŁˆŁŠ ŲØŲ¹ŲÆ "
"Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ł†ŲµŁˆŲµ Ų§Ł„ŲØŲ±Ł…Ų¬ŁŠŲ© Łˆ ŲŖŲ«ŲØŁŠŲŖ Ų§Ł„ŲØŲ±Ł…Ų¬ŁŠŲ§ŲŖ Łˆ ŲØŲÆŲ” Ų§Ł„Ų®ŲÆŁ…Ų§ŲŖ..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "ŁƒŲ§Ł†ŲŖ Ł‡Ł†Ų§Łƒ Ł…Ų“Ų§ŁƒŁ„ ŁŁŠ ŲŖŲ«ŲØŁŠŲŖ Ų§Ł„Ų­Ų²Ł…Ų© %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10029,23 +10490,23 @@ msgstr ""
"ŁŠŁ…ŁƒŁ†Łƒ Ų§Ł„Ų¢Ł† Ł…Ų“Ų§Ų±ŁƒŲ© Ų§ŲŖŲµŲ§Ł„ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ Ł…Ų¹ Ų§Ł„Ų£Ų¬Ł‡Ų²Ų© Ų§Ł„Ų£Ų®Ų±Ł‰ ŁŁŠ Ų“ŲØŁƒŲŖŁƒ Ų§Ł„Ł…Ų­Ł„ŁŠŲ© ŲØŲ§Ų³ŲŖŲ®ŲÆŲ§Ł… "
"Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ų£ŁˆŲŖŁˆŁ…Ų§ŲŖŁŠŁƒŁŠ (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "ŲŖŁ… Ų¹Ł…Ł„ Ų§Ł„ŲŖŁ†ŲµŁŠŲØ, Łˆ Ł„ŁƒŁ†Ł‡ ŲŗŁŠŲ± Ł…Ł…ŁƒŁ‘ŁŽŁ† Ų§Ł„Ų¢Ł†"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "ŲŖŁ… Ų¹Ł…Ł„ Ų§Ł„ŲŖŁ†ŲµŁŠŲØ, Łˆ Ł‡Łˆ Ł…Ł…ŁƒŁ‘ŁŽŁ† Ų§Ł„Ų¢Ł†."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ł„Ł… ŁŠŲŖŁ… Ų§Ų¹ŲÆŲ§ŲÆ Ų£ŁŠ Ł…Ų“Ų§Ų±ŁƒŲ© Ų§ŲŖŲµŲ§Ł„ ŲØŲ§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ł…Ų“Ų§Ų±ŁƒŲ© Ų„ŲŖŲµŲ§Ł„ Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10060,20 +10521,13 @@ msgstr ""
"\n"
"Ų§Ų¶ŲŗŲ· Ų¹Ł„Ł‰ ŲŖŁ‡ŁŠŲ¦Ų© Ł„ŲŖŲ“ŲŗŁŠŁ„ Ł…Ų¹Ų§Ł„Ų¬ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Ł…Ų±ŁƒŲ² Ų§Ł„ŲŖŁ‘Ų­ŁƒŁ‘Ł… "
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų£ŲÆŲ§Ų© Ų§Ł„ŲŖŁŠ ŲŖŲ±ŁŠŲÆ Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…Ł‡Ų§"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10082,67 +10536,71 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "ŁƒŁ†ŲÆŲ© (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "Ų§Ł„ŁˆŁ„Ų§ŁŠŲ§ŲŖ Ų§Ł„Ł…ŲŖŁ‘Ų­ŲÆŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘Ų© (broadcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "Ų§Ł„ŁˆŁ„Ų§ŁŠŲ§ŲŖ Ų§Ł„Ł…ŲŖŁ‘Ų­ŲÆŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘Ų© (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "Ų§Ł„ŁˆŁ„Ų§ŁŠŲ§ŲŖ Ų§Ł„Ł…ŲŖŁ‘Ų­ŲÆŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘Ų© (cable-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Ų§Ł„ŲµŁŠŁ† (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Ų§Ł„ŁŠŲ§ŲØŲ§Ł† (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Ų§Ł„ŁŠŲ§ŲØŲ§Ł† (cable)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Ų£ŁˆŲ±ŁˆŲØŁ‘Ų§ Ų§Ł„Ų“Ł‘Ų±Ł‚ŁŠŁ‘Ų©"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "ŁŲ±Ł†Ų³Ų§ [Ų³ŁŠŁƒŲ§Ł…]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Ų£ŁŠŲ±Ł„Ł†ŲÆŲ§"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Ų£ŁˆŲ±ŁˆŲØŁ‘Ų§ Ų§Ł„ŲŗŲ±ŲØŁŠŁ‘Ų©"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Ų£ŁˆŲ³ŲŖŲ±Ų§Ł„ŁŠŲ§"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Ł†ŁŠŁˆŲ²ŁŠŁ„Ł†ŲÆŲ§ "
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Ų¬Ł†ŁˆŲØ Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§ "
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ† "
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -10150,35 +10608,35 @@ msgstr ""
"ŁŲ¶Ł„Ų§Ł‹,\n"
"Ų§Ų·ŲØŲ¹ tv norm Ų§Ł„Ų®Ų§Ųµ ŲØŁƒ Łˆ ŲØŁ„ŲÆŁƒ"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Ų§Ł„Ł…Ł†Ų·Ł‚Ų© :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Ų¶ŁŠŲ· Ł‚Ł†ŁˆŲ§ŲŖ Ų§Ł„ŲŖŁ„ŁŲ§Ų² ŁŁŠ ŲŖŁ‚ŲÆŁ… ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Ų¬Ų§Ų±ŁŠ Ų¶ŲØŲ· Ł‚Ł†ŁˆŲ§ŲŖ Ų§Ł„ŲŖŁ„ŁŲ§Ų²"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "ŁƒŲ§Ł† Ł‡Ł†Ų§Łƒ Ų®Ų·Ų£ Ų£Ų«Ł†Ų§Ų” Ų¶ŲØŲ· Ł‚Ł†ŁˆŲ§ŲŖ Ų§Ł„ŲŖŁ„ŁŲ§Ų²"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV ŲŗŁŠŲ± Ł…Ų«ŲØŲŖ!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Ł†ŲŖŁ…Ł†Ł‰ Ł„Łƒ ŁŠŁˆŁ…Ų§Ł‹ Ų³Ų¹ŁŠŲÆŲ§Ł‹!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Ų§Ł„Ų¢Ł† ŁŠŁ…ŁƒŁ†Łƒ ŲŖŲ“ŲŗŁŠŁ„ XawTV (ŁŁŠ Ų§Ł„ŁˆŲ§Ų¬Ł‡Ų© Ų§Ł„Ų±Ų³ŁˆŁ…ŁŠŲ©!) !\n"
@@ -10210,11 +10668,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Ų§Ł„Ų§Ų³ŲŖŲ¹Ł…Ų§Ł„: keyboarddrake [--expert][Ł„ŁˆŲ­Ų© Ų§Ł„Ł…ŁŲ§ŲŖŁŠŲ­]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Ł…Ł† ŁŲ¶Ł„Łƒ Ų§Ų®ŲŖŲ± ŲŖŲµŁ…ŁŠŁ… Ł„ŁˆŲ­Ų© Ł…ŁŲ§ŲŖŁŠŲ­Łƒ"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Ł‡Ł„ ŲŖŲ±ŁŠŲÆ Ų£Ł† ŁŠŁ‚ŁˆŁ… Ų²Ų± BackSpace ŲØŲ¹Ł…Ł„ ŁˆŲøŁŠŁŲ© Ų²Ų± Delete ŁŁŠ Ų³Ų·Ų± Ų§Ł„Ų£ŁˆŲ§Ł…Ų±ŲŸ"
@@ -10238,7 +10696,7 @@ msgstr "Ł„Ł… Ų£ŲŖŁ…ŁƒŁ† Ł…Ł† ŲØŲÆŲ” Ų§Ł„ŲŖŲ±Ł‚ŁŠŲ© Ų§Ł„Ų­ŁŠŲ© !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ŲŖŁ… Ų¹Ł…Ł„ Ų§Ł„ŲŖŲŗŁŠŁŠŲ±, Łˆ Ł„ŁƒŁ† Ł„ŁŠŲŖŁ… ŲŖŁŲ¹ŁŠŁ„Ł‡ ŁŠŲ¬ŲØ Ų¹Ł„ŁŠŁƒ Ų§Ł„Ų®Ų±ŁˆŲ¬"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -10346,22 +10804,25 @@ msgstr "Ų§Ł„ŲŖŁ‚ŁˆŁŠŁ…"
msgid "Content of the file"
msgstr "Ł…Ų­ŲŖŁˆŁŠŲ§ŲŖ Ų§Ł„Ł…Ł„Ł"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "ŲŖŁ†ŲØŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲÆ/SMS"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "ŁŠŲ±Ų¬Ł‰ Ų§Ł„Ų„Ł†ŲŖŲøŲ§Ų±, Ų¬Ų§Ų±ŁŠ ŲŖŲ­Ł„ŁŠŁ„ Ų§Ł„Ł…Ł„Ł: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "ŲŖŁ‡ŁŠŲ¦Ų© ŲŖŁ†ŲØŁŠŁ‡ Ų§Ł„ŲØŲ±ŁŠŲÆ/SMS"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -10369,120 +10830,121 @@ msgstr ""
"\n"
"Ł‡Ł†Ų§ Ų³ŁŠŁ…ŁƒŁ†Łƒ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆ \n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domain name"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Ų®Ų§ŲÆŁ… Ų§Ł„ŲØŲ±ŁŠŲÆ Postfix, Ų®Ų§ŲÆŁ… Ų§Ł„Ų£Ų®ŲØŲ§Ų± Inn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr " Ų§Ł„Ų®Ų§ŲÆŁ… NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Ų§Ł„Ų®ŲÆŁ…Ų§ŲŖ"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ų§Ł„Ų®ŲÆŁ…Ų§ŲŖ"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų®ŲÆŁ…Ų§ŲŖ"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Ų³ŁˆŁ ŲŖŲ³ŲŖŁ„Ł… ŲŖŁ†ŲØŁŠŁ‡Ų§Ł‹ Ų„Ų°Ų§ ŁƒŲ§Ł†ŲŖ Ų£Ų­ŲÆ Ų§Ł„Ų®ŲÆŁ…Ų§ŲŖ Ų§Ł„Ł…Ų®ŲŖŲ§Ų±Ų© ŲŗŁŠŲ± Ų¹Ų§Ł…Ł„Ų©."
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "Ų­Ł…Ł„ Ų§Ł„Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Ų³ŁˆŁ ŲŖŲ³ŲŖŁ„Ł… ŲŖŁ†ŲØŁŠŁ‡Ų§ Ų§Ų°Ų§ ŁƒŲ§Ł† Ų§Ł„ŲŖŲ­Ł…ŁŠŁ„ Ų£Ų¹Ł„Ł‰ Ł…Ł† Ł‡Ų°Ł‡ Ų§Ł„Ł‚ŁŠŁ…Ų©"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„ŲŖŁ†ŲØŁŠŁ‡"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Ų£Ų¹ŲÆŁ‘ Ų§Ł„Ų·Ų±ŁŠŁ‚Ų© Ų§Ł„ŲŖŁŠ Ų³ŁŠŁ†ŲØŁ‡Łƒ Ų§Ł„Ł†ŲøŲ§Ł… ŲØŁ‡Ų§"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ų±Ų¬Ų§Ų” ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ±"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Ų­ŁŲø ŲØŲ„Ų³Ł….."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "ŁŲ¶Ł„Ų§Ł‹, Ų§Ų®ŲŖŲ± Ł†ŁˆŲ¹ Ų§Ł„ŁŲ£Ų±Ų© Ų§Ł„Ų®Ų§ŲµŲ© ŲØŁƒ."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "no serial_usb found\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Ł…Ų­Ų§ŁƒŲ§Ų© Ų§Ł„Ų²Ų± Ų§Ł„Ų«Ų§Ł„Ų«ŲŸ"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Ų¬Ų§Ų±ŁŠ Ł‚Ų±Ų§Ų”Ų© ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„Ų·Ų§ŲØŲ¹Ų© ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Ų¬Ų§Ų±ŁŠ Ų§Ł„ŲŖŲ­Ł‚Ł‚ Ł…Ł† Ų§Ł„Ų£Ų¬Ł‡Ų²Ų© ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s found on %s ŁˆŁŁ‘Ł‚ ŲØŁŠŁ†Ł‡ "
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Ų§Ų®ŲŖŲ± Ų¬Ł‡Ų§Ų² Ų§Ł„Ł…Ų³Ų­ Ų§Ł„Ų¶ŁˆŲ¦ŁŠ"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ł‡Ų°Ų§ %s Ų§Ł„Ł…Ų§Ų³Ų­ Ų§Ł„Ų¶Ł‘ŁˆŲ¦ŁŠŁ‘ ŲŗŁŠŲ± Ł…ŲÆŲ¹Ł‘Ł…"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų¬Ł‡Ų§Ų² "
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10492,7 +10954,7 @@ msgstr ""
"Ų§Ł„Ł…Ų§Ų³Ų­ Ų§Ł„Ų¶ŁˆŲ¦ŁŠ %s ŁŠŲ¬ŲØ Ų§Ų¹ŲÆŲ§ŲÆŁ‡ Ų¹Ł† Ų·Ų±ŁŠŁ‚ PrinterDrake.\n"
"ŁŠŁ…ŁƒŁ† ŲŖŲ“ŲŗŁŠŁ„ PrinterDrake Ł…Ł† Ł…Ų±ŁƒŲ² Ų§Ł„ŲŖŲ­ŁƒŁ… ŁŁŠ Ł‚Ų³Ł… Ų§Ł„Ų¹ŲŖŲ§ŲÆ."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -10515,15 +10977,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Ų£Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -10535,7 +10997,7 @@ msgstr ""
"Ł„Ł‚ŲÆ Ł‚Ł…ŲŖ ŲØŲ„Ų¹ŲÆŲ§ŲÆ Ų¬ŲÆŲ§Ų± Ł†Ų§Ų±ŁŠ Ł…Ų³ŲØŁ‚Ų§.\n"
"Ų§Ų¶ŲŗŲ· ŲŖŁ‡ŁŠŲ¦Ų© Ł„ŲŖŲŗŁŠŁŠŲ± Ų£Łˆ Ų„Ų²Ų§Ł„Ų© Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -10784,48 +11246,48 @@ msgstr "Ł„Ų§ ŁŠŁ…ŁƒŁ† Ų£Ł† ŁŠŁ†ŁŲŖŲ­ %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "%sŁ„Ł„ŁƒŲŖŲ§ŲØŲ© %sŁ„Ų§ ŁŠŁ…ŁƒŁ† Ų£Ł† ŁŠŁ†ŁŲŖŲ­ \n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Ł„Ų§, Ł„Ų§ Ų£Ų­ŲŖŲ§Ų¬ Ų§Ł„Ł‰ DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Ł†Ų¹Ł… Ų£Ų­ŲŖŲ§Ų¬ Ų§Ł„Ł‰ DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Ł„Ų§, Ł„Ų§ Ų£Ų­ŲŖŲ§Ų¬ Ų§Ł„Ł‰ NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Ł†Ų¹Ł… Ų£Ų­ŲŖŲ§Ų¬ NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Ł„Ų§ ŲŖŲ­ŁŲø"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Ų„Ų­ŁŲø Łˆ Ų§Ų®Ų±Ų¬"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Ł…Ų¹Ų§Ł„Ų¬ Ų„Ų¹ŲÆŲ§ŲÆ Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Ł„Ų§ (Ų§Ł…Ł†Ų¹ Ł‡Ų°Ų§ Ł…Ł† Ų§Ł„Ų„Ł†ŲŖŲ±Ł†ŲŖ Ų¹Ł† Ų·Ų±ŁŠŁ‚ Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Ł†Ų¹Ł… (Ų§Ų³Ł…Ų­ Ł„Ł‡Ų°Ų§ Ł…Ł† Ų®Ł„Ų§Ł„ Ų§Ł„Ų¬ŲÆŲ§Ų± Ų§Ł„Ł†Ų§Ų±ŁŠ)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "ŁŠŲ±Ų¬Ł‰ Ų§Ł„Ų„Ł†ŲŖŲøŲ§Ų±... Ų¬Ų§Ų±ŁŠ Ų§Ł„ŲŖŲ£ŁƒŲÆ Ł…Ł† Ų§Ł„Ų­Ų²Ł… Ų§Ł„Ł…Ų«ŲØŲŖŲ©"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -10834,6 +11296,10 @@ msgstr ""
"ŁŲ“Ł„ ŲŖŲ«ŲØŁŠŲŖ Ų§Ł„Ų­Ų²Ł… Ų§Ł„Ų¶Ų±ŁˆŲ±ŁŠŲ©: %s Łˆ Bastille.\n"
" Ų­Ų§ŁˆŁ„ ŲŖŲ«ŲØŁŠŲŖŁ‡Ł… ŁŠŲÆŁˆŁŠŲ§Ł‹."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "ŁˆŁŠŲØ/FTP"
@@ -10883,6 +11349,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Ų£ŲÆŁˆŲ§ŲŖ ŲµŁˆŲŖŁŠŲ©: Ł…Ų“ŲŗŁ„Ų§ŲŖ mp3 Ų£Łˆ midi, Ł…Ų§Ų²Ų¬Ų§ŲŖ ŲµŁˆŲŖ, Ų§Ł„Ų®"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "ŁƒŲŖŲØ Łˆ Ł…Ų°ŁƒŲ±Ų§ŲŖ 'ŁƒŁŠŁ Ų£Ų¹Ł…Ł„' Ų­ŁˆŁ„ Ł„ŁŠŁ†ŁƒŲ³ Łˆ Ų§Ł„ŲØŲ±Ų§Ł…Ų¬ Ų§Ł„Ų­Ų±Ų©"
@@ -10970,10 +11440,6 @@ msgid "Office Workstation"
msgstr "Ł…Ų­Ų·Ų© Ų¹Ł…Ł„ Ł…ŁƒŲŖŲØŁŠŲ©"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Ų®Ų§ŲÆŁ…"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, Ų§Ł„Ų®"
@@ -11038,6 +11504,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Ų¹Ł…Ł„Ų§Ų” Ł„ŲØŲ±ŁˆŲŖŁˆŁƒŁˆŁ„Ų§ŲŖ Ł…Ų®ŲŖŁ„ŁŲ© Ł…Ų«Ł„ ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "ŲØŁˆŲ§ŲØŲ© Ų§Ł†ŲŖŲ±Ł†ŲŖ"
@@ -11069,6 +11539,66 @@ msgstr "ŁˆŲ³Ų§Ų¦Ų· Ł…ŲŖŲ¹ŲÆŲÆŲ© - Ł†Ų³Ų® Ų£Ł‚Ų±Ų§Ųµ"
msgid "Scientific Workstation"
msgstr "Ł…Ų­Ų·Ų© Ų¹Ł…Ł„ Ų¹Ł„Ł…ŁŠŲ©"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Ų®ŁŠŲ§Ų±Ų§ŲŖ"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Ų§Ł„Ų£Ł…Ł†"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Ł‚Ų§Ų¦Ł…Ų© Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„ŲŖŁŠ Ų³ŲŖŲ¶Ł…Ł† ŁŁŠ Ų§Ł„Ł‚Ų±Ųµ."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Ų±Ų¬Ų§Ų” Ų§Ų®ŲŖŲ± Ł…Ų³Ų§Ų­Ų© Ų§Ł„Ł‚Ų±Ųµ Ų§Ł„Ł…ŲÆŁ…Ų¬"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Ų±Ų¬Ų§Ų” Ų£ŲÆŲ®Ł„ Ų³Ų±Ų¹Ų© Ų³ŁˆŲ§Ł‚Ų© ŁƒŲŖŲ§ŲØŲ© Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "ŁŁŠŁ…Ų§ Ł…Ų¶Ł‰ CDRW Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ ,Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŁ…Ų­Łˆ "
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "ŁŲ¶Ł„Ų§ Ų§Ų®ŲŖŲ± Ų§Ų³Ł… Ų¬Ł‡Ų§Ų² ŁƒŲŖŲ§ŲØŲ© Ų§Ł„Ų£Ł‚Ų±Ų§Ųµ (Ł…Ų«Ų§Ł„: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "ŁŲ¶Ł„Ų§ ŲŖŲ£ŁƒŲÆ ŲØŲ£Ł†Łƒ ŲŖŲ±ŁŠŲÆ ŲŖŲ¶Ł…ŁŠŁ† Ų„Ł‚Ł„Ų§Ų¹ Ų§Ł„ŲŖŲ«ŲØŁŠŲŖ ŁŁŠ Ł‚Ų±ŲµŁƒ Ų§Ł„Ł…ŲÆŁ…Ų¬."
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ " Ł…Ł† ŁŲ¶Ł„Łƒ ŁŲ­Ųµ Ų„Ų°Ų§ Ų£Ų±ŲÆŲŖ Ų£Ł† ŲŖŲŖŲ¶Ł…Ł‘Ł† \n"
+#~ "Ų±ŁƒŁ‘ŲØ Ų§Ł„Ų¬ŲÆŲ± Ų¹Ł„Ł‰ Ł‚Ų±ŲµŁƒ Ų§Ł„Ł…ŲÆŁ…Ų¬"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Ų®Ų§ŲÆŁ… NTP"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "ŲŖŲ±ŁƒŁŠŲØ Ų·Ų±ŁˆŲÆ ..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "ŲŖŲ±ŁƒŁŠŲØ Ų·Ų±ŁˆŲÆ ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Ł…Ų±ŁƒŲ² Ų§Ł„ŲŖŁ‘Ų­ŁƒŁ‘Ł… "
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Ų§Ų®ŲŖŲ± Ų§Ł„Ų£ŲÆŲ§Ų© Ų§Ł„ŲŖŁŠ ŲŖŲ±ŁŠŲÆ Ų§Ų³ŲŖŲ®ŲÆŲ§Ł…Ł‡Ų§"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Ų£Ų¹ŲÆŁ‘ Ų§Ł„Ų·Ų±ŁŠŁ‚Ų© Ų§Ł„ŲŖŁŠ Ų³ŁŠŁ†ŲØŁ‡Łƒ Ų§Ł„Ł†ŲøŲ§Ł… ŲØŁ‡Ų§"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "no serial_usb found\n"
+
#~ msgid "Graphics card identification: %s\n"
#~ msgstr "Ł…Ų¹Ų±Ł ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©: %s\n"
@@ -11154,9 +11684,6 @@ msgstr "Ł…Ų­Ų·Ų© Ų¹Ł…Ł„ Ų¹Ł„Ł…ŁŠŲ©"
#~ msgid "Setting security level"
#~ msgstr "Ų¬Ų§Ų±ŁŠ Ų¶ŲØŲ· Ł…Ų³ŲŖŁˆŁ‰ Ų§Ł„Ų£Ł…Ł†"
-#~ msgid "Graphics card"
-#~ msgstr "ŲØŲ·Ų§Ł‚Ų© Ų§Ł„Ų“Ų§Ų“Ų©"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ų§Ų®ŲŖŲ± ŲØŲ·Ų§Ł‚Ų© Ų“Ų§Ų“Ų©"
@@ -11230,9 +11757,6 @@ msgstr "Ł…Ų­Ų·Ų© Ų¹Ł…Ł„ Ų¹Ł„Ł…ŁŠŲ©"
#~ "ŁƒŁ„ Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ Ų§Ł„Ł…ŁˆŲ¬ŁˆŲÆŲ© Ų¹Ł„Ł‰ Ų§Ł„ŁˆŲ³Ų· '%s' Ų³ŁŠŲŖŁ… Ł…Ų­ŁˆŁ‡Ų§.\n"
#~ "Ų§Ų°Ų§ ŁƒŁ†ŲŖ ŲŖŲ±ŁŠŲÆ Ų§Ł„Ł…ŲŖŲ§ŲØŲ¹Ų©, Ų§Ų¶ŲŗŲ· Ł…ŁˆŲ§ŁŁ‚. "
-#~ msgid "unknown"
-#~ msgstr "ŲŗŁŠŲ± Ł…Ų¹Ų±ŁˆŁ"
-
#~ msgid "Select a module or write his name:"
#~ msgstr "Ų§Ų®ŲŖŲ§Ų± Ų§Ł„ŁˆŲ­ŲÆŲ© Ų£Łˆ Ų§ŁƒŲŖŲØ Ų§Ų³Ł…Ł‡Ų§:"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 502ff3346..e21ba8371 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -60,11 +60,11 @@ msgstr "Bir X vericisi seƧin"
msgid "X server"
msgstr "X verici"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Ƈoxlu Başlıq quraşdırılması"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,44 +72,44 @@ msgstr ""
"Sizin sisteminiz Ƨoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Ekran kartınızın yaddaş bƶyĆ¼klĆ¼yĆ¼nĆ¼ seƧin"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree quraşdırılması"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "BĆ¼tĆ¼n başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +121,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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, 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:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +145,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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,11 +154,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "XĆ¼susi"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Ekran kartı"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Rezolyusiya"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Oldu"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Ƈıx"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -171,32 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Monitorunuzu seƧin"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "XĆ¼susi"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Ɯmumi"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Geri al"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -214,11 +256,11 @@ msgstr ""
"seƧməməyiniz Ƨox vacibdir, əks halda monitor zərər gƶrər.\n"
"SeƧərkən bir qərarsızlığa dĆ¼ÅŸÉ™rsəniz, alƧaq rezolyusiya seƧin."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "ƜfĆ¼qi yeniləmə sĆ¼r'əti"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sĆ¼r'əti"
@@ -242,57 +284,42 @@ msgstr "16 milyon rəng (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4 milyard rəng (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Rezolyusiyalar"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Rezolyusiya"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seƧin"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Ləğv et"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Oldu"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
@@ -301,71 +328,71 @@ msgstr "Qurğuları sınamaq istəyirsiniz?"
msgid "Test of the configuration"
msgstr "Qurğuların sınağı"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura dĆ¼zĆ¼lĆ¼ÅŸĆ¼: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "SiƧan nƶvĆ¼: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "SiƧan avadanlığı: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun ƜfĆ¼qi Yeniləməsi: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Ekran kartı: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Rəng dərinliyi: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sĆ¼rĆ¼cĆ¼: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ilə AƧılış"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -374,166 +401,183 @@ 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?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "ISDN bağlantınızın nƶvĆ¼ nədir?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "AƧılış qisminin ilk sektoru"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yĆ¼kləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan aƧıl (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Sistem yĆ¼kləyicisi ana seƧənəkləri"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Ä°stifadə ediləcək AƧılış idarəcisi"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "AƧılış yĆ¼kləyici quruluşu"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "AƧılış avadanlığı"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (kƶhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Bəsit"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "AƧılışda gecikmə mĆ¼ddəti"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Parol (təkrar)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "ʏmr sətiri seƧənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "məhdudlaşdır"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər aƧılışda təmizlə"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ɯmumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Birdən artıq profilə icazə ver"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``ʏmr sətiri seƧənəklərini məhdudlaşdır`` seƧənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "İnit İsmarıcı"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini AƧ"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Ƈəkirdək AƧılışı Vaxt Dolması"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CDdən AƧılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF AƧılışı Fəallaşdırım?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "ʏsas OS"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -542,7 +586,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -550,155 +594,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:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ʏlavə et"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Qurtardı"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Ne cĆ¼r bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "ʏks"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Kƶk"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "E'tibarsız"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ʏsas"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd bƶyĆ¼klĆ¼yĆ¼"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVÄ°deo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Girişi sil"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilə bilməz"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara Ć¼zĆ¼ tapıldı"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "HeƧ %s ara Ć¼zĆ¼ var?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) Ć¼Ć§Ć¼n sĆ¼rĆ¼cĆ¼ yĆ¼klənir"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -709,17 +754,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:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modul seƧənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sĆ¼rĆ¼cĆ¼sĆ¼ sınansın?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -736,15 +781,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:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "SeƧənəkləri gƶstər"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -753,56 +798,56 @@ msgstr ""
"%s modulunun yĆ¼klənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Zəif parol seƧdiniz!"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəƧi adı alın"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəƧi adı artıq vardır"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Bu istifadəƧi adı artıq vardır"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "İstifadəƧini əlavə et"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -811,32 +856,32 @@ msgstr ""
"Bir istifadəƧi girin\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "İstifadəƧini qəbul et"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Ä°stifadəƧi adı"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -845,59 +890,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:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "ʏsas istifadəƧini seƧin:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəƧisini seƧin:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə Ć¼Ć§Ć¼n bir dil seƧin."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəƧi əlavə et"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -906,42 +951,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "YĆ¼ksək"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "YĆ¼ksək"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "ÅžĆ¼bhəci"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -952,7 +997,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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -960,7 +1005,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:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -969,13 +1014,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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -990,7 +1035,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:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1000,32 +1045,49 @@ msgstr ""
"tamamilə qapalıdır.\n"
"TəhlĆ¼kəsizlik səviyyəsi indi ən Ć¼stdədir."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "SeƧənəklər"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "TəhlĆ¼kəsizlik səviyyəsini seƧin"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "TəhlĆ¼kəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici Ć¼Ć§Ć¼n seƧənəkləri gƶstərin"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1050,7 +1112,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1064,7 +1126,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:915
+#: ../../bootloader.pm_.c:938
#, 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"
@@ -1079,7 +1141,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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1093,7 +1155,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1108,84 +1170,180 @@ 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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Masa ƜstĆ¼"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mƶvcud deyildir.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fayl/_Ƈıx"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle Kateqoriyasından Monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle Monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "ʏnənəvi Monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "ʏnənəvi Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "AƧılışda Auroranı başlat"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub modu"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Sistemi qur"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Xəta"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NoVÄ°deo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Quruluş sinifini seƧin"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1194,43 +1352,70 @@ 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Paket seƧkilərini saxla"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "AƧılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
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:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq Ć¼Ć§Ć¼n aƧıla bilmir: %s"
@@ -1275,69 +1460,119 @@ msgstr "Artıq bƶlmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seƧə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Fransızca"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "BelƧika dili"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Almanca"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Yunanca"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "NorveƧcə"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "İsveƧcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Ä°talyanca"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "yeni"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Xahiş edirik siƧanınızı seƧin"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Verici"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Bağlama nƶqtəsi: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "SeƧənəklər: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "ʏvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1350,15 +1585,6 @@ msgstr ""
"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
"buraxmayı unutmayın."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Xəta"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Sehirbaz"
@@ -1385,7 +1611,7 @@ msgid "Please click on a partition"
msgstr "Xahiş edirik bir bƶlmə Ć¼stĆ¼nə tıqlayın"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "ʏtraflı"
@@ -1414,13 +1640,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Digər"
@@ -1428,12 +1654,12 @@ msgstr "Digər"
msgid "Filesystem types:"
msgstr "Fayl sistemi nƶvĆ¼:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Nƶv"
@@ -1443,7 +1669,7 @@ msgstr "Nƶv"
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Sil"
@@ -1451,7 +1677,7 @@ msgstr "Sil"
msgid "Use ``Unmount'' first"
msgstr "ʏvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1459,111 +1685,111 @@ msgstr ""
"%s bƶlməsinin nƶvĆ¼nĆ¼ dəyişdirdikdən sonra, bu bƶlmədəki bĆ¼tĆ¼n mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seƧin"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bƶlmə yarat"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Usta moduna keƧ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Normal moda keƧ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Qeyd etmədən Ƈıx"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Bƶlmə cədvəlini qeyd etmədən Ƨıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Daha Ƈox"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seƧkisi"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "BĆ¼tĆ¼n birinci bƶlmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Artıq bƶlmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bƶlmə yaratmaq Ć¼Ć§Ć¼n, bir bƶlməni silib məntiqi bƶlmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Bƶlmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Bƶlmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Bƶlmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Bƶlmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sƶkĆ¼lə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Fayl seƧ"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1571,11 +1797,11 @@ 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:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1583,131 +1809,114 @@ msgstr ""
"Disket sĆ¼rĆ¼cĆ¼yə bir disket yerləşdirin\n"
"Bu disketdəki bĆ¼tĆ¼n mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Bƶlmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı gƶstər"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "SeƧənəklər"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "BƶyĆ¼klĆ¼yĆ¼nĆ¼ Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ayır"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Loopback Ć¼Ć§Ć¼n istifadə et"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Yeni bƶlmə yarat"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "BaşlanÄŸÄ±Ć§ sektoru: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "MB cinsindən bƶyĆ¼klĆ¼k: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Fayl sistemi nƶvĆ¼: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Bağlama nƶqtəsi: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "XĆ¼susiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Bƶlmə nƶvĆ¼nĆ¼ Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1716,139 +1925,144 @@ msgstr ""
"nƶqtəsindən ayrıla bilinmir.\n"
"ʏvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "BƶyĆ¼klĆ¼yĆ¼ dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Hansı bƶlmə nƶvĆ¼nĆ¼ istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Bu bƶlmədəki bĆ¼tĆ¼n mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bƶlməsi bƶyĆ¼klĆ¼yĆ¼ dəyişdirildirkdən sonra bu bƶlmədəki bĆ¼tĆ¼n mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Yeni bƶyĆ¼klĆ¼k seƧin"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən bƶyĆ¼klĆ¼k: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Bƶlmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "ʏlavə etmək Ć¼Ć§Ć¼n mƶvcud bir RAID seƧin"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "ʏlavə etmək Ć¼Ć§Ć¼n mƶvcud bir LVM seƧin"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM adı?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Bu disk bƶlməsi loopback Ć¼Ć§Ć¼n işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seƧin"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Modul seƧənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "avadanlıq"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "parƧa bƶyĆ¼klĆ¼yĆ¼"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlĆ¼kəlidir."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Nəcə bƶlməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən Ƨıxarmaq mƶvzusunda ciddisiniz?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1860,7 +2074,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1872,7 +2086,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bƶlməsini əlavə edərkən Ƨox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1883,132 +2097,132 @@ msgstr ""
"ʏgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bƶlməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sĆ¼rĆ¼cĆ¼sĆ¼nĆ¼n bƶlmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı Ć¼Ć§Ć¼n sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bƶlməsi şəkilləndirildikdən sonra bu bƶlmədəki bĆ¼tĆ¼n mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bƶlmə: %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bƶlmələr Ć¼Ć§Ć¼n boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bƶlmələr Ć¼Ć§Ć¼n boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Avadanlıq: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sĆ¼rĆ¼cĆ¼ hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Nƶv: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "BƶyĆ¼klĆ¼yĆ¼: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2017,7 +2231,7 @@ msgstr ""
"Loopback faylı:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2025,27 +2239,27 @@ msgstr ""
"Ana aƧılma bƶlməsi\n"
" (MS-DOS aƧılışı Ć¼Ć§Ć¼n)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "ParƧa bƶyĆ¼klĆ¼yĆ¼ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2056,7 +2270,7 @@ msgstr ""
"Bəlkə də bu bir SĆ¼rĆ¼cĆ¼ bƶlməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2067,64 +2281,59 @@ msgstr ""
"Bu, ikili aƧılış Ć¼Ć§Ć¼n xĆ¼susi\n"
"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "BƶyĆ¼klĆ¼k: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bƶlmə cədvəli nƶvĆ¼: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nƶ'li\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "SeƧənəklər: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi nƶvĆ¼: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol Ƨox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2178,23 +2387,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bƶlmə xətası"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2211,33 +2420,33 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiƧik disk bƶlmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiƧik disk bƶlmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nƶqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nƶqtəsi %s olan bir bƶlmə var\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s Ć¼Ć§Ć¼n LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kƶk fayl sistemi iƧərisində olmalıdır"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2246,26 +2455,26 @@ msgstr ""
"Bu bağlama nƶqtəsi Ć¼Ć§Ć¼n həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardır.\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s Ć¼Ć§Ć¼n LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə Ć¼Ć§Ć¼n boş sahə yoxdur"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq Ć¼Ć§Ć¼n aƧılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2273,259 +2482,263 @@ msgstr ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hƶkmlĆ¼ bir sĆ¼rĆ¼cĆ¼ "
"tapılmadı. Bu problemin qaynağı Ć¼Ć§Ć¼n avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "HeƧ disk bƶlməniz yoxdur!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Avtomatik təsbit işlət"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Ɯmumi"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kart mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Şəkilləndirilir"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Bƶlmə nƶvĆ¼nĆ¼ Dəyişdir"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Ƈıx"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Kƶmək"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Kƶmək"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Kƶmək/_Haqqında..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "SiƧan"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Ləğv et"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "SiƧan"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Ä°zah"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Tanıtma"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Fayl seƧ"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "KeƧit avadanlığı"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 dĆ¼yməli"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ƈıx"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kƶmək"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kƶmək"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kƶmək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seƧkisi"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "SiƧan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Mə'lumatı gƶstər"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "SiƧan qurğuları"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapısında tapıldı"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Xahiş edirik gƶzləyin"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra Ƨıxılacaq"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ɯmumi"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Avtomatik yoxla"
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bƶlmə nƶvĆ¼nĆ¼ Dəyişdir"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Şəkilləndirilir"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3917,7 +4130,7 @@ msgstr ""
"Bƶlmədəki mə'lumatları qoruyaraq \"Ləğv et\" dĆ¼yməsinə\n"
"əməliyyatı ləğv edə bilərsiniz."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3925,7 +4138,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3954,20 +4167,20 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3975,7 +4188,7 @@ msgstr ""
"Bu saxlanmış paketlər seƧkisini işlətmək Ć¼Ć§Ć¼n qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
@@ -4014,7 +4227,7 @@ msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
@@ -4196,12 +4409,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə dĆ¼zəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nƶqtəsini Ƨoxalt"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4213,12 +4426,12 @@ msgstr ""
"ʏvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sĆ¼rĆ¼cĆ¼ yoxdur"
@@ -4228,7 +4441,7 @@ msgstr "Disket sĆ¼rĆ¼cĆ¼ yoxdur"
msgid "Entering step `%s'\n"
msgstr "Başlanğıc addımı `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4241,78 +4454,78 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
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:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Paket Qrup SeƧkisi"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Fərdi paket seƧkisi"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ɯmumi bƶyĆ¼klĆ¼k: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "BƶyĆ¼klĆ¼yĆ¼: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "ʏhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seƧə bilməzsiniz, Ć§Ć¼nki qurmaq Ć¼Ć§Ć¼n yer Ƨatmır."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Bu paketi seƧə bilməzsiniz/sistemdən Ƨıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən Ƨıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən Ƨıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4320,77 +4533,77 @@ msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən Ƨıxarmaq mƶvzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən Ƨıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Avtomatik seƧili paketləri gƶstər"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seƧkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan Ƨıx"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seƧin"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Qalan mĆ¼ddət"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gƶzləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4404,17 +4617,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sĆ¼rĆ¼cĆ¼nĆ¼zə taxın və OLDU'ya basın.\n"
"ʏgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq Ć¼Ć§Ć¼n Ä°MTÄ°NA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4733,108 +4946,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seƧiniz."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "BĆ¼tĆ¼n mƶvcud klaviaturaların siyahısı"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Qurulum/GĆ¼ncəlləmə"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa gĆ¼ncəlləməmidir?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Tƶvsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "GĆ¼ncəlləmə"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seƧkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siƧanınızın nƶvĆ¼nĆ¼ seƧin."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "SiƧan Qapısı"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "SiƧanınızın bağlı olduğu serial Qapıyı seƧin."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "DĆ¼ymə emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "DĆ¼ymə 2 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "DĆ¼ymə 3 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE qapıları qurulur"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "uyğun bƶlmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nƶqtələri Ć¼Ć§Ć¼n bƶlmələr daranır"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Bağlama nƶqtələrini seƧin"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4853,7 +5066,7 @@ msgstr ""
"\n"
"BĆ¼tĆ¼n bƶlmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4861,78 +5074,78 @@ msgstr ""
"DiskDrake bƶlmə cədvəlini oxumağı bacara bilmədi.\n"
"ƖzĆ¼nĆ¼z davam edə bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bƶlmələrini seƧin"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Kƶk (root) Bƶlməsi"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kƶk (/) bƶlməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bƶlmə cəvəlindəki dəyişikliklərin daxil olması Ć¼Ć§Ć¼n kompĆ¼terinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bƶlmələrini seƧin"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Bƶlmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək Ć¼Ć§Ć¼n lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Mƶvcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Mƶvcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "GĆ¼ncəllənəcək paketlar tapılır"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Bu paketi sistemdən Ƨıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "GĆ¼ncəllənəcək paketlar tapılır"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4940,59 +5153,59 @@ msgid ""
msgstr ""
"Sisteminizdə qurulum ya da gĆ¼ncəlləmə Ć¼Ć§Ć¼n lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri Ƨağır"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri Ƨağır"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup SeƧkisi"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sĆ¼rĆ¼cĆ¼sĆ¼nə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
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:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -5012,11 +5225,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5025,21 +5238,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5109,7 +5322,7 @@ msgstr ""
"USA\n"
"Ć¼nvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5121,185 +5334,194 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, 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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq Ć¼Ć§Ć¼n bir əks Ć¼nvanı seƧin"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "ʏks Ć¼nvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə gƶra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Ƈap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "MĆ¼ndəricat"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "SiƧan"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Ƈap Edici"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "\"Windows\"u sil"
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Yerli Ƈap Edici"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS Verici"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Tanıtma"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS sahəsi"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS Verici"
+msgid "Authentication Windows Domain"
+msgstr "Tanıtma"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Sahə(domain) adı"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5330,19 +5552,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Ä°lk disket sĆ¼rĆ¼cĆ¼"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Ä°kinci disket sĆ¼rĆ¼cĆ¼"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5372,7 +5594,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5381,28 +5603,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sĆ¼rĆ¼cĆ¼ yoxdur"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, 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:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "AƧılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "AƧılış yĆ¼kləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5410,11 +5632,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5422,16 +5644,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:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yĆ¼kləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5448,17 +5670,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:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5468,7 +5690,7 @@ msgstr ""
"\n"
"Həqiqətən də Ƨıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5494,15 +5716,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:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5516,15 +5738,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Paket seƧkilərini saxla"
@@ -5552,405 +5774,468 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seƧin"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "ʏtraflı"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- ʏvvəlki"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Sonrakı ->"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "SeƧkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "SeƧkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "SeƧənəklər: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "SeƧkiniz? (əsas %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ƈex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Ä°spanca"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Fransızca"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "NorveƧcə"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "İsveƧcə"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "İngiliz (UK) klaviaturası"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ermenicə (kƶhnə) "
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "BelƧika dili"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "fəallaşdır"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniya dili"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Ä°sveƧcə (Alman sırası)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Ä°sveƧcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ƈex dili (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Almanca (ƶlĆ¼ dĆ¼ymələr olmasın)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveƧcə)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "GĆ¼rcĆ¼ dili (\"Rus\" sırası)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "GĆ¼rcĆ¼ dili (\"Latın\" sırası)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Xırvatca"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Ä°srail"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Ä°srail (Fonetik)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Ä°zlandiya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Ä°talyanca"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Yaponca 106 dĆ¼yməli"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreya klaviaturası"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latın Amerika dili"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Yeri"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (kƶhnə)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azərbaycanca (kiril)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sırası)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Cədvəl"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "TĆ¼rkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "TĆ¼rkcə (mĆ¼asir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latın/kiril)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5959,37 +6244,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Dairəvi bağlama %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefon nƶmrəsi"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Bƶlmə şəkilləndirilməsi"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -6092,51 +6377,43 @@ msgstr "heƧ biri"
msgid "No mouse"
msgstr "SiƧansızs"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Xahiş edirik siƧanınızı seƧin"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "SiƧanınızı işə salmaq Ć¼Ć§Ć¼n,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "TʏKʏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Sonrakı ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- ʏvvəlki"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Doğrudur?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Mə'lumat"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Ağacı AƧ"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Ağacı Qapat"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
@@ -6159,6 +6436,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "dhcp istifadə et"
@@ -6186,7 +6467,7 @@ msgstr ""
"Sisteminizdə heƧ bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Şəbəkə ara Ć¼zĆ¼nĆ¼ seƧin"
@@ -6199,7 +6480,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6214,7 +6495,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Ev sahibi adı"
@@ -6242,7 +6523,7 @@ msgstr "ISDN bağlantınızın nƶvĆ¼ nədir?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6364,43 +6645,43 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seƧiniz"
msgid "Dialup options"
msgstr "Ƈevirməli şəbəkə seƧənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Bağlantı adı"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefon nƶmrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Giriş adı"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skript əsaslı"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal əsaslı"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Sahə(domain) adı"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya gƶrə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Ä°kinci DNS Vericisi (arzuya gƶrə)"
@@ -6513,13 +6794,13 @@ msgstr "Qurulacaq profili seƧin"
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
@@ -6633,7 +6914,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6645,50 +6926,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:298
+#: ../../network/network.pm_.c:299
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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (sĆ¼rĆ¼cĆ¼ %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Ć¼nvanı"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "AƧılışda başladılır"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6699,40 +6980,40 @@ 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:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "KeƧit avadanlığı"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
@@ -6744,7 +7025,7 @@ msgstr "İnternet qurğuları"
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
@@ -6772,43 +7053,43 @@ msgstr "Bağlantı quraşdırılması"
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seƧin"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nƶmrəniz"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Ä°XM telefon nƶmrəsi"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya gƶrə)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya gƶrə)"
@@ -6817,30 +7098,30 @@ msgstr "Dns xidmətcisi 2 (arzuya gƶrə)"
msgid "Choose your country"
msgstr "Klaviaturanızı seƧin"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı nƶvĆ¼:"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı nƶvĆ¼:"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Hesab Girişi (istifadəƧi adı)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6877,7 +7158,7 @@ msgstr "Xətalı yedəkləmə faylı"
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6923,7 +7204,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6952,7 +7233,7 @@ msgstr "Uzaq Ƈap Edici"
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq Ƨap edici vericisi(lpd)"
@@ -6972,7 +7253,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Ƈap Edici Vericisi"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Ƈap Edici avadanlığı URI"
@@ -6981,112 +7262,112 @@ msgstr "Ƈap Edici avadanlığı URI"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Ƈap Edici"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Ƈap Edici"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (ʏsas)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Ƈap Edici Bağlantısı SeƧin"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Ƈap ediciniz nə şəkildə bağlıdır?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -7097,17 +7378,21 @@ msgstr ""
"Buradakı hər Ƨap edici avtomatik tapılacaqdır.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seƧin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7118,7 +7403,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7128,36 +7413,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP Ć¼nvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nƶmrəsi rəqəmlə yazılmalıdır"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Qapı"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Ƈap Edicisiz"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7170,37 +7455,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Yerli Ƈap Edici"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Uzaq Ƈap Edici"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Yerli Ƈap Edici"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7214,53 +7530,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Uzaq Ƈap Edici"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Qapıları sına"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Şəbəkə Ƈap Edicisi (soket) "
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7268,43 +7581,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Ƈap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Yerli Ƈap Edici"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Yerli Ƈap Edici"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7312,7 +7616,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7320,83 +7624,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seƧiniz"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Ƈap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "%s paketi qurulur"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Uzaq Ƈap Edici (lpd) SeƧənəkləri"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7406,31 +7665,51 @@ msgstr ""
"Ƨap edicinin bağlı olduğu Ƨap edici vericisinin adını və nƶvbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Ƈap Edici"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s tapıldı"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Bağlantınız başladılır..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Şəbəkə dayandırılır"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Ƈap Edici SeƧənəkləri"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7443,35 +7722,46 @@ msgstr ""
"IP Ć¼nvanı, Ƨap edicinin paylaşdırma adı, işləmə grupu, istifadəƧi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB verici adı"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7495,7 +7785,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7504,7 +7794,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7512,11 +7802,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare Ƈap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7528,88 +7818,109 @@ msgstr ""
"edici \n"
"nƶvbəsi adı ilə istifadəƧi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Ƈap Edici Vericisi"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Ƈap Edici Nƶvbə Adı"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Ƈap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Soket Ƨap edicidən yekun almaq Ć¼Ć§Ć¼n, Ƨap edicinin ev sahibi adını ve "
"mĆ¼mkĆ¼nsə, qapısının nƶmrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Ƈap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Ƈap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Ƈap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Ƈap edici adı"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Ƈap Edici"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7624,28 +7935,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Ƈap Edici"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Ƈap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cĆ¼r bir Ƨap ediciniz var?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7654,18 +7965,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7675,12 +7986,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7688,7 +7999,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7701,7 +8012,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7711,34 +8022,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ƈap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Qapıları sına"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7746,45 +8057,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də Ƨap et"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Ƈap Edici"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi Ƨap edilir..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi Ƨap edilir..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi Ƨap edilir..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi Ƨap edilir..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7800,7 +8111,7 @@ msgstr ""
"\n"
"DĆ¼z mĆ¼ işləyir?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7810,16 +8121,16 @@ msgstr ""
"Ƈap edicinin işləməsi Ć¼Ć§Ć¼n bir az vaxt keƧər.\n"
"DĆ¼z mĆ¼ işləyir?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Ƈap Edicisiz"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7828,15 +8139,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7845,7 +8156,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7853,41 +8164,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7897,7 +8208,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7906,46 +8217,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Qapat"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Ƈap edici seƧənəkləri"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7954,9 +8265,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7967,19 +8278,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7989,51 +8300,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8041,61 +8352,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ƈap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Ƈap Edicisiz"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayıb"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8103,12 +8414,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8118,34 +8429,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Hansı Ƨap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "YĆ¼ksək"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "ÅžĆ¼bhəci"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8160,12 +8471,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı Ƨap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8179,70 +8490,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Ƈap Edici Bağlantısı SeƧin"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı Ƨap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ƈap Edicini Qur"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Ƈap edici seƧənəkləri"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Ƈap Edicini Qur"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir Ƨap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Ƈap Edici"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8253,7 +8564,7 @@ msgstr ""
"Aşağıda yazıƧıdakı nƶvbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mƶvcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8263,141 +8574,137 @@ msgstr ""
"Aşağıda yazıƧıdakı nƶvbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mƶvcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ƈıx"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Ƈap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi Ƨap edilir..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Ƈap Edici"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Yerli Ƈap Edici"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
@@ -8449,8 +8756,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Vəkil verici ftp://... olmalıdır."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vəkil verici http://... şəklində olmalıdır."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8501,44 +8808,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Bu səviyyə RAID'i diqqətli istifadənizi tƶvsiyə edirik. Sisteminiz daha "
-"asand\n"
-"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."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Bu təhlĆ¼kəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
-"mĆ¼mkĆ¼ndĆ¼r. \n"
-"TəhlĆ¼kəsizlik, birdən Ƨox alıcının bağlanmasına icazə verəcək şəkildə "
-"artırılmışdır. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "SeƧənəklə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"
@@ -8850,7 +9119,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8973,7 +9242,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
@@ -9072,21 +9341,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
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:135
+#: ../../standalone/XFdrake_.c:147
#, 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"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9094,177 +9363,177 @@ msgstr ""
"Bƶlmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"Xəsərli hissələri dĆ¼zəltməyə cəhd edəcəm"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Databeyz"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS Verici"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "İstifadəƧini əlavə et"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Yardım"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Bağlı deyil"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Sil"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Fayl seƧ"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "İstifadəƧini əlavə et"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sĆ¼rĆ¼cĆ¼sĆ¼nə bir disket taxın"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sĆ¼rĆ¼cĆ¼ yoxdur"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Xəta"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Qurulum sonrası qurğular"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9279,23 +9548,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9303,40 +9572,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "İstifadəƧi əlavə et"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9344,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9352,34 +9634,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Qapıları sına"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Xətalı yedəkləmə faylı"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9387,737 +9733,800 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup SeƧkisi"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, 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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Nƶvbəni sil"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Ä°stifadəƧi adı"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siƧanınızı seƧin"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Klaviatura quruluşunu seƧiniz."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Xahiş edirik bir bƶlmə Ć¼stĆ¼nə tıqlayın"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bƶlmə Ć¼stĆ¼nə tıqlayın"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
+msgid "Please check if you are using a DVDR device"
+msgstr "Xahiş edirik bir bƶlmə Ć¼stĆ¼nə tıqlayın"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, 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:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Fayl seƧ"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siƧanınızı seƧin"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara Ć¼zĆ¼"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Nƶv"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Ä°stifadəƧi adı"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə Ć¼Ć§Ć¼n bir dil seƧin."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Ƈərx"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Ƈərx"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Modul seƧənəkləri:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "SiƧan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "SeƧənəklər"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, 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:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siƧanınızın nƶvĆ¼nĆ¼ seƧin."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siƧanınızı seƧin"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Ƈap Edici Bağlantısı SeƧin"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri Ƨağır"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siƧanınızın nƶvĆ¼nĆ¼ seƧin."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri Ƨağır"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri Ƨağır"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Xahiş edirik siƧanınızın nƶvĆ¼nĆ¼ seƧin."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "XĆ¼susi"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- ʏvvəlki"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri Ƨağır"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Sonrakı ->"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə Ć¼Ć§Ć¼n bir dil seƧin."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə Ć¼Ć§Ć¼n bir dil seƧin."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə Ć¼Ć§Ć¼n bir dil seƧin."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Xahiş edirik siƧanınızı seƧin"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10128,7 +10537,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10149,7 +10558,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10158,7 +10567,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10182,7 +10591,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10199,21 +10608,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10227,17 +10636,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10254,7 +10663,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10294,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10305,7 +10714,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10318,7 +10727,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10357,95 +10766,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xəta:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "İdarə Mərkəzi"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "Usta"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "SiƧan"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Uzaq Ƈap Edici"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Paylaşdırma adı"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Ƈap Edici"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Tanıtma"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Paket Qrup SeƧkisi"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Xahiş edirik gƶzləyin"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10457,148 +10893,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Qurulumdan Ƨıx"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Qapı"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan Ƨıx"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seƧə bilərsiniz"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Şəbəkə quraşdırılması (%d adapter)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Profili sil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Silinəcək profil:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Yeni profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ev sahibi adı:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "İnternet imkanı"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Nƶv: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "KeƧit:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Ara Ć¼z"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Hal:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Ä°nternet keƧişini Qur..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "SĆ¼rĆ¼cĆ¼"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Ara Ć¼z"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Hal:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Yerli Şəbəkəni Quraşdır..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Sehirbaz..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "ʏlavə Et"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "LĆ¼tdən Gƶzləyin... Qurğular əlavə edilir"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Bağlandı"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Bağlı deyil"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Bağlan..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Bağlantını Kəs..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10606,44 +11042,44 @@ msgstr ""
"Qurulu ara Ć¼zĆ¼nĆ¼z yoxdure.\n"
"ʏvvəlcə onları 'Quraşdır'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "%s Adapteri: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "AƧılış Protokolu"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "AƧılışda başladılır"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP alıcısı"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Fəal"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Fəal"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10651,121 +11087,121 @@ msgstr ""
"HeƧ Ä°nternet bağlantınız yoxdur.\n"
"ʏvvəlcə onları 'Quraşdır'a basaraq qurun"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "İnternet bağlantısı quraşdırılması"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "İnternet Bağlantısı Quraşdırılması"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Bağlantı nƶvĆ¼:"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametrlər"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "KeƧit"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Eternet Kartı"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP Alıcısı"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "istifadə qaydası: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modul adı"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "BƶyĆ¼klĆ¼k"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "aƧılış disketi yaradılması"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "əsas"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy xətası: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Ƨəyirdək buraxılışı"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Ɯmumi"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ustaların Sahəsi"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Modul əlavə et"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "zorla"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "lazım olarsa"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "scsi modulları keƧ"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "raid modulları keƧ"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Modulu Ƨıxart"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Nəticə"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10774,12 +11210,12 @@ msgstr ""
"%s avadanlığında medya yoxdur.\n"
"Xahiş edirik. birini taxın."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilə bilmir: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10790,104 +11226,104 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Qurtardı"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazırlanır"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10896,121 +11332,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Bƶlmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Bağlama nƶqtəsi"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bƶlmələrini seƧin"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "İş Yeri"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Dayandır"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Ƈap Edici"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Fayl seƧ"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Ƈap Edici"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "İnit İsmarıcı"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan Ƨıx"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11022,31 +11463,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "keƧ"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11058,19 +11499,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rĆ¼lməsi indi aƧıldı"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11086,21 +11527,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq Ć¼Ć§Ć¼n uyğun Şəbəkə Adapterinə "
"ehtiyacınız var."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Ɯz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Ara Ć¼z %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11108,11 +11549,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salın."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Şəbəkə ara Ć¼zĆ¼"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11127,18 +11568,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq Ć¼zərəyəm?"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seƧin"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayıb"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11148,17 +11589,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11169,7 +11610,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11181,33 +11622,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN Ć¼nvan Ƨaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11215,20 +11656,20 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. YĆ¼kləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11239,23 +11680,23 @@ msgstr ""
"bƶlĆ¼ÅŸdĆ¼rə bilərsiniz, bunun Ć¼Ć§Ć¼n isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ä°nternet Bağlantısı BƶlĆ¼ÅŸdĆ¼rmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Ä°nternet bağlantısı bƶlĆ¼ÅŸdĆ¼rĆ¼lməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11270,20 +11711,13 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını aƧmaq Ć¼Ć§Ć¼n Quraşdıra tıqlayın."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "İdarə Mərkəzi"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "İstifadə edəcəyiniz vasitəni seƧin"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11292,108 +11726,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Fransızca"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Ä°zlandiya dili"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Paketlər qurulurkən bir xəta oldu:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11417,11 +11855,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Klaviatura quruluşunu seƧiniz."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Konsolda BackSpace'in Silmə funksyasını gƶrməyini istəyirmisiniz?"
@@ -11445,7 +11883,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -11557,148 +11995,149 @@ msgstr "Təqvim"
msgid "Content of the file"
msgstr "Fayl məzmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gƶzləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Sahə(domain) adı"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS Verici"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "avadanlıq"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ƈap Edici Vericisi"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "avadanlıq"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Şəkilləndirilir"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Quraşdırma"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siƧanınızın nƶvĆ¼nĆ¼ seƧin."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_USB avadanlığı tapılmadı\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "3 dĆ¼ymə emulasiyası"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Qapıları sına"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Ekran kartınızı seƧin"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "AƧılış avadanlığı"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11706,7 +12145,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11726,15 +12165,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Firewall quraşdırılması"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Firewall quraşdırılması"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11746,7 +12185,7 @@ msgstr ""
"Firewall qurğularını artıq qurtarmısınız.\n"
"Qur-a tıqlayaraq firewall qurğuların silin ya da təkmilləşdirin."
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11997,56 +12436,60 @@ msgstr "%s aƧıla bilmir: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Yazmaq Ć¼Ć§Ć¼n %s aƧıla bilmir: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Firewall quraşdırılması"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Xahiş edirik gƶzləyin, qurulum hazırlanır"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Verici, Veb/FTP"
@@ -12097,6 +12540,10 @@ msgstr ""
"Səs ilə əlaqədər vasitələr: mp3 və ya midi ƧalÄŸÄ±Ć§Ä±lar, qarışdırıƧılar, vs."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linuks və pulsuz proqram tə'minatıları Kitablar və Howtoları"
@@ -12184,10 +12631,6 @@ msgid "Office Workstation"
msgstr "İş Yeri Stansiyası"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Verici"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
@@ -12250,6 +12693,10 @@ msgid "Clients for different protocols including ssh"
msgstr "SSH daxil bir Ƨox protokolların alıcıları"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Ä°nternet keƧişı"
@@ -12281,6 +12728,108 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Bu səviyyə RAID'i diqqətli istifadənizi tƶvsiyə edirik. Sisteminiz daha "
+#~ "asand\n"
+#~ "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."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Bu təhlĆ¼kəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+#~ "mĆ¼mkĆ¼ndĆ¼r. \n"
+#~ "TəhlĆ¼kəsizlik, birdən Ƨox alıcının bağlanmasına icazə verəcək şəkildə "
+#~ "artırılmışdır. "
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "SeƧənəklər"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "TəhlĆ¼kəsizlik"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Klaviatura quruluşunu seƧiniz."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Xahiş edirik siƧanınızı seƧin"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Vəkil verici ftp://... olmalıdır."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seƧin."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "\"Windows\"u sil"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Cədvəl"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS Verici"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Uzaq Ƈap Edici"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "%s paketi qurulur"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "CUPS sĆ¼rĆ¼cĆ¼ datası oxunur..."
+
+#~ msgid "Control Center"
+#~ msgstr "İdarə Mərkəzi"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "İstifadə edəcəyiniz vasitəni seƧin"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_USB avadanlığı tapılmadı\n"
+
#~ msgid "Choose options for server"
#~ msgstr "X verici Ć¼Ć§Ć¼n seƧənəkləri gƶstərin"
@@ -12345,9 +12894,6 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Setting security level"
#~ msgstr "TəhlĆ¼kəsizlik səviyyəsinin quraşdırılması"
-#~ msgid "Graphics card"
-#~ msgstr "Ekran kartı"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartınızı seƧin"
@@ -12424,6 +12970,3 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Percentage of packages to install"
#~ msgstr "Qurulacaq paketlərin faizi"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "TəhlĆ¼kəsizlik səviyyəsini seƧin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index e808ec713..250f86846 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -57,55 +57,55 @@ msgstr "Ąį’šūöå X ńåšāåš"
msgid "X server"
msgstr "X ńåšāåš"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "÷ūņąķķå ķąńņšīéźi"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Ļąēķą÷öå ļąģåš āiäżąļąģ’öi"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Ķąńņšīéźą XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "ßźóž źąķōićóšąöūž XFree āū ęąäąåöå ąņšūģąöü?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Źąķōićóšąāąöü ģąž źąšņó"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Ńåšāåš XFree86 %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ē ļąäņšūģźąé 3D-ļąńźąšżķķ’"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ē żźńļåšūģåķņąėüķąé ļąäņšūģźąé 3D-ļąńźąšżķķ’"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +150,57 @@ msgstr ""
"ĢĄÉÖÅ ĶĄ ”ĀĄĒÅ, ŲŅĪ ĆŻŅĄ ŻŹŃĻÅŠŪĢÅĶŅĄĖÜĶĄß ĻĄÄŅŠŪĢŹĄ I ĢĪĘĄ ĻŠŪĀÅŃÖI ÄĄ\n"
"ĒĄĀIŃĄĶĶß ĀĄŲĄĆĄ ŹĄĢĻ'ŽŅŻŠÓ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Ļą āūįąšó"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Āiäżąźąšņą"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ģąķiņīš"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Ļąģåšū żźšąķó"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Īź"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Āūõąä"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -167,32 +213,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Ąį’šūöå ģąķiņīš"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ģąķiņīš"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Ļą āūįąšó"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Ąćóėüķū"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Ąäźąņ"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -215,11 +257,11 @@ msgstr ""
"āū ģīęąöå ńąļńąāąöü ģąķiņīš.\n"
"Źąėi āū ńóģķ’āąåöåń’, ąį’šūöå źąķńåšāąņū¢ķū’ ķąńņšīéźi."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "׹ńö³ķ’ ćąšūēąķņąėüķūé šąēćīšņźi"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "׹ńö³ķ’ āåšņūźąėüķąé šąēćīšņźi"
@@ -243,57 +285,42 @@ msgstr "16 ģiėüøķą¢ źīėåšą¢ (24 įiņū)"
msgid "4 billion colors (32 bits)"
msgstr "4 ģiėi’šäą źīėåšą¢ (24 įiņū)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Ļąģåšū żźšąķó"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Ļąģåšū żźšąķó"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Āūįąš ļąģåšą¢ żźšąķó i ćėūįiķi źīėåšó"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Āiäżąźąšņą: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Ąäģåķą"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Īź"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
@@ -302,71 +329,71 @@ msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
msgid "Test of the configuration"
msgstr "Ļšąāåšźą ļąšąģåņšą¢ ķąńņšīéźi"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ņūļ źėąāi’ņóšū: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ņūļ ģūųū: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ģūų: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ģąķiņīš: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "׹ńö³ķ’ ćąš.šąēć. ģąķiņīšó: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "׹ńö³ķ’ āåšņ.šąēć. ģąķiņīšó: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Āiäżąźąšņą: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Āiäżąļąģ’öü: %s Źį\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Ļąšąģåņšū ćėūįiķi źīėåšó: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Ļąģåšū żźšąķó: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ńåšāåš XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ńåšāåš XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Ēąļóńź X ļšū ńņąšöå ńińņżģū"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -375,168 +402,185 @@ msgstr ""
"Ģīęķą ķąńņšīiöü ńińņżģó äė’ ą¢ņąģąņū÷ķąćą ēąļóńźó X ļąńė’ ńņąšņó ńińņżģū.\n"
"Ęąäąåöå, źąį X ńņąšņąāą¢ ļšū šżńņąšöå?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "ßźi ņūļ āąųąćą ISDN ēėó÷żķķ’?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Ļåšųū ńåźņąš ēąćšóēą÷ķąćą šąēäēåėó"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ļåšųū ńåźņąš ļšūėąäū (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Óńņąė’āąķķå SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Źóäū āū ęąäąåöå ¢ńņąė’āąöü ļą÷ąņźīāū ēąćšóē÷ūź?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Óńņąė’āąķķå LILO/GRUB"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Ćąėī¢ķū’ īļöūi ļą÷ąņźīāąćą ēąćšóē÷ūźó"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Ćąėī¢ķū’ īļöūi ļą÷ąņźīāąćą ēąćšóē÷ūźó"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Óńņąė’āąķķå ēąćšóē÷ūźó"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ēąćšóēą÷ķą’ ļšūėąäą"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ķå ļšąöóå ļšū ńņąšūõ āåšńi’õ BIOS)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Źąģļąźņķą"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "źąģļąźņķą"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Āiäżą-šżęūģ"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Ēąņšūģźą ļåšąä ēąćšóēźąé āīįšąēó ļą äąģą¢ėåķķž"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ļąšīėü"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Ļą¢ņąšūöå ļąšīėü"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Ąįģåęąāąķķå īļöū’¢ źąģąķäķąćą šąäźą"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ąįģåęąāąķķå"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Ą÷ūų÷ąöü /tmp ļšū źīęķąé ēąćšóēöū"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ļąēķą÷öå äąźėąäķū ļąģåš RAM (ēķīéäēåķą %d Mį)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Äąńņóļķą ųģąņ ļšīōiė’¢"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Ļąēķą÷öå ļąģåš RAM ó Mį"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Īļöū’ ``Ąįģåęąāąķķå īļöū’¢ źąģąķäķąćą šąäźó'' ķå āūźąšūńņī¢āąåööą įåē ļąšīė’"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Ļąńļšąįóéöå ’ų÷ż šąē"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Ļąšīėi ķå ńóļąäąžöü"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
#, fuzzy
msgid "Default OS?"
msgstr "Ļą äąģą¢ėåķķž"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -545,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -553,157 +597,158 @@ msgstr ""
"Ó ģåķž ģąžööą ķąńņóļķū’ ļóķźņū.\n"
"Āū ģīęąöå äąäąöü ’ų÷ż, ąėüįī ēģ’ķiöü ińķóž÷ū’."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äąäąöü"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Ēšīįėåķą"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
#, fuzzy
msgid "Modify"
msgstr "Ēģ’ķiöü RAID"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "ßźi ņūļ ļóķźņą ęąäąåöå äąäąöü?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Iķųą’ ĄŃ (SunOS,...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Iķųą’ ĄŃ (MacOS,...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Iķųą’ ĄŃ (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Āīįšąē"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Äąėó÷ūöü"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "×ūņąķķå-ēąļiń"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Ņąįėiöą"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Ķåķąäēåéķą"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Ģåņźą"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ļą äąģą¢ėåķķž"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Āūäąėiöü ēąļiń"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Ļóńņą’ ģåņźą ķå äąēāąė’åööą"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Āū ļąāiķķū ģåöü šąēäēåė swap"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ćżņą’ ģåņźą ¢ęī āūźąšūńņī¢āąåööą"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ēķīéäēåķū %s %s iķņżšōåéńū"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Öi øńöü ó āąń iķųū?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi øńöü ó āąń %s iķņżšōåéń?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ķå"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ņąź"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Óńņąė’āąķķå äšąéāåšó äė’ %s źąšņū %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(ģīäóėü %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -714,17 +759,17 @@ msgstr ""
"Īļöūi - ó ōąšģąöå ``iģ’=ēķą÷żķķå iģ’2=ēķą÷żķķå2 ...''.\n"
"Ķąļšūźėąä, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Īļöūi ģīäóėž:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßźi äšąéāåš %s ļąńļšąįąāąöü?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -741,15 +786,15 @@ msgstr ""
"¢ ļīųóźąõ ķåąįõīäķąé iķōąšģąöūi? Ģąć÷ūģą, ņżńöišąāąķķå ļšūā’äēå\n"
"äą ńļūķåķķ’ źąģļ'žņżšó, ąėå ’ķī ķi÷īćą ķå ńąļńóå."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Ą¢ņąļīųóź"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Ļąēķą÷öå ļąšąģåņšū"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -758,56 +803,56 @@ msgstr ""
"Ēąćšóēźą ģīäóėž %s ķå ļšąéųėą.\n"
"Ęąäąåöå ļąńļšąįąāąöü ē iķųūģi ļąšąģåņšąģi?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(óęī äąäąäēåķą %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ćżņū ļąšīėü ēąķąäņą ļšīńņū"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Źąėi ėąńźą, óā’äēiöå iģ’ źąšūńņąėüķiźó"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iģ’ źąšūńņąėüķiźó ļąāiķķą ēģ’ų÷ąöü ėiņąšū ņīėüźi ķą ķięķiģ šżćińņšū, \n"
"ėi÷įū, `-' i `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ćżņą iģ’ źąšūńņąėüķiźó ¢ęī äąäąäēåķą"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ćżņą iģ’ źąšūńņąėüķiźó ¢ęī äąäąäēåķą"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -816,32 +861,32 @@ msgstr ""
"Óā’äēiöå iģ’ źąšūńņąėüķiźó\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Ļšūķ’öü źąšūńņąėüķiźą"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Óėąńķąå iģ’"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Iģ’ źąšūńņąėüķiźó:"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Ąįąėīķźą:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ļiźņąćšąģą"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Ą¢ņąģąņū÷ķū ¢āąõīä ó ńińņżģó"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -850,57 +895,57 @@ msgstr ""
"Ģīęķą ķąńņšīiöü ńińņżģó äė’ ą¢ņąģąņū÷ķąćą ¢āąõīäó ¢ ńińņżģó äė’\n"
"ąäķąćī źąšūńņąėüķiźą. Źąėi Āū ķå ęąäąåöå ćżņąćą, ķąöińķiöå \"Ąäģåķą\"."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Ąį’šūöå ąńķī¢ķąćą źąšūńņąėüķiźą:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Ąį’šūöå ģżķżäęąš āīźķą¢:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Źąėi ėąńźą, ąį’šūöå ģīāó äė’ źąšūńņąķķ’."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Óńø"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "׹źąåööą"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -909,42 +954,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Ńąšäż÷ķą ēąļšąųąåģ ó Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Ēóń³ģ ńėąįū"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńņąķäąšņķū"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Āūńīźi"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Āūńīźi"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Ļąšąķąiäąėüķū"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -956,7 +1001,7 @@ msgstr ""
"ķą ģąųūķąõ, ’źi’ äąėó÷ąķū äą ńåņźi öi äą Internet. Óāąõīä ķå ąįąšīķåķū "
"ļąšīėåģ."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -964,7 +1009,7 @@ msgstr ""
"Ļąšīėü ēąšąē óźėž÷ąķū, ąėå āūźąšūńņąķķå źąģļ'žņżšó ¢ ’źąńöi ńåņźąāąćą\n"
"ņąźńąģą ķå šżźąģåķäąāąķą."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -974,13 +1019,13 @@ msgstr ""
"’źi äąėó÷ąķū äą Internet ó ’źąńöi źėiåķņó. Äąäąķū’ ķīāū’ ļšąāåšźi\n"
"į’ńļåźi."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -994,7 +1039,7 @@ msgstr ""
"ńåšāåšó. Óēšīāåķü į’ńļåźi äąńņąņźīāą āūńīźi äė’ šąįīņū\n"
"ńåšāåšó, ’źi äąļóńźąå ēėó÷żķķi ńą ųģąņėiźiģi źėiåķņąģi."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1003,27 +1048,44 @@ msgstr ""
"Ļšūģąžööą ¢ėąńöiāąńöi 4 óēšī¢ķ’, ąėå ēąšąē ńińņżģą ļī¢ķąńöž ēą÷ūķåķą.\n"
"Ļąšąģåņšū į’ńļåźi ¢ńņąķī¢ėåķū ķą ģąźńiģóģ."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Īļöūi"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Óēšīāåķü į’ńļåźi"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Ķąńņšīéźi ¢ēšī¢ķ’ į’ńļåźi"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ąį’šūöå äąäąņźīāū’ ķąńņšīéźi äė’ ńåšāåšą"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1035,158 +1097,282 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Ļšąöī¢ķū ńņīė"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Ńņąšņąāąå ģåķž"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Źóäū āū ęąäąåöå ¢ńņąė’āąöü ļą÷ąņźīāū ēąćšóē÷ūź?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr ""
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
#, fuzzy
msgid "Boot Style Configuration"
msgstr "Ķąńņšīéźą ģąäżģó"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Ōąéėū:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Ģąķiņīš"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "Ēģ’ķiöü ģąķiņīš"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Šżęūģ ēėó÷żķķ’"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Ēąćšóēą÷ķą’ ļšūėąäą"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Óńņąė’āąķķå ńińņżģū"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Ļąģūėźą"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "Ńåšāåš XFree86 %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "ćąėüųņóź"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Źėąń óńņąė’āąķķ’"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
#, fuzzy
msgid "Configure"
msgstr "Ķąńņšīéźą X Window"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Ąńąįińņū āūįąš ļąźåņą¢"
+
+#: ../../bootlook.pm_.c:270
+#, fuzzy
+msgid "Themes"
+msgstr "Äšżāą"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1231,67 +1417,117 @@ msgstr "Äąäąöü šąēäēåė ķåģąć÷ūģą"
msgid "Screenshots will be available after install in %s"
msgstr "Āū ģīęąöå ąįšąöü ³ķųū’ ģīāū, ’źi’ įóäóöü äąńņóļķū ļąńė’ ¢ńņąė’āąķķ’"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ōšąķöū’"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Įåėüćiéńźi"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Ķ’ģåöźi"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Ćšż÷ąńźi"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Ķąšāåęńźi"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Ćė."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Iņąėü’ķńźi"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "ļąńė’äī¢ķą’"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Ķīāū"
+
+#: ../../diskdrake/dav.pm_.c:57
+#, fuzzy
+msgid "Server"
+msgstr "ńåšāåš"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "ńåšāåš"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Ļóķźņ ģąķöišąāąķķ’:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Īļöūi: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Ļą-ļåšųąå, ēšąįiöå šżēåšāīāóž źīļiž āąųūõ äąäēåķūõ"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "×ūņąéöå ¢āąęėiāą!"
@@ -1304,15 +1540,6 @@ msgstr ""
"Źąėi āū ļėąķóåöå āūźąšūńņī¢āąöü boot āīįėąńöü, ņąäū šąēģ’ńöiöå ’å\n"
" ķå äąėåé ēą 2048 ńåźņąšī¢ ąä ļą÷ąņźó äūńźą"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ļąģūėźą"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Ģąéńņąš ńņāąšżķķ’"
@@ -1338,7 +1565,7 @@ msgid "Please click on a partition"
msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Ļąäšąį’ēķąńöi"
@@ -1367,13 +1594,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Ļóńņą"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "²ķųū’"
@@ -1381,12 +1608,12 @@ msgstr "²ķųū’"
msgid "Filesystem types:"
msgstr "Ņūļū ōąéėąāūõ ńińņżģą¢:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Ńņāąšūöü"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ņūļ"
@@ -1396,7 +1623,7 @@ msgstr "Ņūļ"
msgid "Use ``%s'' instead"
msgstr "Āūźąšūńņī¢āąéöå ``%s'' ēąģåńņ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Ēķių÷ūöü"
@@ -1404,84 +1631,84 @@ msgstr "Ēķių÷ūöü"
msgid "Use ``Unmount'' first"
msgstr "Ńļą÷ąņźó ēšąįiöå ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Óńå äąäēåķū’ ¢ šąēäēåėå %s įóäóöü ńņšą÷ąķū ļąńė’ ēģåķū ’ćī ņūļó"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Ąį’šūöå äēå’ķķå"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Ńņāąšżķķå ķīāąćą šąēäēåėó"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Šżęūģ żźńļåšņó"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ēāū÷ąéķū šżęūģ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Ąäźąņ"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ńąļšą¢äū ļšąö’ćāąöü?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Āūéńöi įåē ēąõąāąķķ’"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Āūéńöi įåē ēąļińó ņąįėiöū šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Šąēģåšźąāąöü ą¢ņąģąņū÷ķą"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Ą÷ūńöiöü óńø"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Ļåšąķīń"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Iķōąšģąöū’"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Óńå ļåšųąńķū’ šąēäēåėū āūźąšūńņąķū"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Äąäąöü šąēäēåė ķåģąć÷ūģą"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1489,35 +1716,35 @@ msgstr ""
"Źąį ēšąįiöü įīėüų šąēäåėą¢, āūäąėiöå ąäēiķ i ńņāąšūöå ļąųūšąķū šąēäēåė "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Ēąļiń ņąįėiöū šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Äąäąņźīāą’ ņąįėiöą šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Äąäąņźīāą’ ņąįėiöą šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Äąäąņźīāą’ ņąįėiöą šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Ą¢ņąģąķöišąāąķķå ēģåķķūõ ķąēąļąųāąėüķ³źą¢"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Ąį’šūöå ōąéė"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1525,11 +1752,11 @@ msgstr ""
"Ņąįėiöą šąēģ’ų÷żķķ’ šżēåšāīāąćą äūńźó ģąå iķųū ļąģåš\n"
"Ļšąö’ćāąöü äąėåé?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Óāąćą!"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1537,132 +1764,115 @@ msgstr ""
"Óńņą¢öå äūńźåņó ¢ äūńźąāīä\n"
"Óńå äąäēåķū’ ķą ćżņąé äūńźåöå įóäóöü ńņšą÷ąķū"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Ļąńļšąįóåģ āūšąņąāąöü ņąįėiöó šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Iķōąšģąöū’"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Źšīļźą ģąķöišąāąķķ’"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Īļöūi"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Ēģ’ķåķķå ļąģåšą¢"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Ļåšąķīń"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Ōąšģąņąāąķķå"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ģąķöišąāąķķå"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Äąäąöü äą RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Äąäąöü äą LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Šąēģąķöišąāąöü"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Āūäąėiöü ē RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Āūäąėiöü ē LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Ēģ’ķiöü RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Āūźąšūńņī¢āąöü äė’ āišņóąėüķąé ōąéėąāąé ńińņżģū"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Ńņāąšżķķå ķīāąćą šąēäēåėó"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Ļą÷ąņźīāū ńåźņąš:"
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ļąģåš ó Ģį:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Ņūļ ōąéėąāąé ńińņżģū:"
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Ļóķźņ ģąķöišąāąķķ’:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Ļąšąģåņšū: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ōąšģąņąāąķķå āišņóąėüķąćą šąēäēåėó %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Ēģ’ķiöü ņūļ šąēäēåėó"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "ßźóž ńińņżģó äšóźó Āū ęąäąåöå āūźąšūńņī¢āąöü?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Źóäū āū ęąäąåöå ģąķöišąāąöü āišņóąėüķóž ļšūėąäó %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Źóäū āū ęąäąåöå ģąķöišąāąöü ļšūėąäó %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1671,137 +1881,142 @@ msgstr ""
"āišņóąėüķąé ōąéėąāąé ńińņżģū.\n"
"Ńļą÷ąņźó āūäąėiöå āišņóąėüķóž ńińņżģó"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Źóäū āū ęąäąåöå ģąķöišąāąöü ļšūėąäó %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Ļąäė³ź ģåęą¢ ōąéėąāąé ńińņżģū FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ēģ’ķåķķå ļąģåšą¢"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ļąģåšū ’źīćą šąēäēåėą āū ęąäąåöå ēģ’ķiöü?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Óńå äąäēåķū’ ¢ ćżņūģ šąēäēåėå ļąāiķķū įūöü ēąšõiāąāąķū’"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óńå äąäēåķū’ ¢ šąēäēåėå %s įóäóöü ńņšą÷ąķū"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Āūįąš ķīāūõ ļąģåšą¢"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Ļąģåš ó Ģį:"
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Ķą ’źi äūńź ļåšąķåńö³?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Ńåźņąš"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Ķą ’źi ńåźņąš ļåšąķåńö³?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ļåšąķīń³ģ"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ļåšąķīń³ööą šąēäēåė..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Ąį’šūöå ińķóž÷ū RAID äė’ äąäąķķ’"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "ķīāū"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Āūį’šūöå ińķóž÷ū LVM äė’ äąįą¢ėåķķ’"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ćżņū šąēäēåė ķå ģīęą įūöü āūźąšūńņąķū ļąä āišņóąėüķóž ōąéėąāóž ńińņżģó"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Āišņóąėüķą’ ōąéėąāą’ ńińņżģą (loopback)"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Iģ’ āišņóąėüķąćą šąēäēåėó"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Óėąńķąå iģ’"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ōąéė óęī āūźąšūńņī¢āąåööą iķųąé āišņóąėüķąé ńińņżģąé. Źąėi ėąńźą, \n"
"ąį’šūöå iķųóž ķąēāó"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ōąéė óęī ińķóå. Āūźąšūńņąöü ’ćī?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Īļöūi ģīäóėž:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ļšūėąäą"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "óēšīāåķü"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ļąģåš įėīźó"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Įóäēüöå óāąęėiāū. Ćżņóž ąļåšąöūž ķåėüćą ąäģ’ķiöü"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
#, fuzzy
msgid "What type of partitioning?"
msgstr "ßźi ņūļ äšóźąšźi āū ģąåöå?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1812,7 +2027,7 @@ msgstr ""
"Źąė³ āū äóģąåöå āūźąšūńņī¢āąöü LILO - ņąäū ćżņą ķå įóäēå ļšąöąāąöü, LILO ķå "
"āūźąšūńņī¢āąåöą, ņąäū /boot ķå ļąņšżįķū."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1824,7 +2039,7 @@ msgstr ""
"Źąėi įóäēå āūźąšūńņī¢āąööą äūńļå÷ąš ēąćšóēźi LILO, ķå ēąļąģ’ņąéöå äąäąöü\n"
"šąēäēåė /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1834,137 +2049,137 @@ msgstr ""
"Ķ’ģą ēąćšóē÷ūźó, ’źi į ēąćšóēi¢ń’ įåē /boot šąēäēåėą.\n"
"Äąäąéöå šąēäåė /boot, źąėi ėąńźą."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ņąįėiöą šąēģ’ų÷żķķ’ ļšūėąäū %s įóäēå ēąļińąķą ķą äūńź!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Źąį ēģ’ķåķķi ¢ńņóļiėi ¢ äēå’ķķå, ķåīįõīäķą ļåšąēąćšóēiööą"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Óńå äąäēåķūå ¢ šąēäēåėå %s įóäóöü ńņšą÷ąķū ļąńė’ ōąšģąņąāąķķ’"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ōąšģąņąāąķķå"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ōąšģąņąāąķķå āišņóąėüķąćą šąēäēåėó %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ōąšģąņąāąķķå šąēäēåėó %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid ķå ļšąöąēäīėüķū"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ķå õąļąå ļšąńņīšū äė’ ńņāąšżķķ’ ķīāūõ šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ķå õąļąå ļšąńņīšū äė’ ńņāąšżķķ’ ķīāūõ šąēäēåėą¢"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Ļąģåšū żźšąķó: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Ļšūėąäą:"
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Ėiņąšą äė’ DOS-äūńźó: %s (ķą¢ćąä)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Ņūļ: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Iģ’: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Ļą÷ąņąź: ńåźņąš %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Ļąģåš: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s ńåźņąšą¢"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Öūėiķäšū ē %d ļą %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Ōąšģąņąāąķķå\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ķå ąäōąšģąņąāąķą\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Ēąģąķöišąāąķą\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ōąéė(ū) āišņóąėüķąé ōąéėąāąé ńińņżģū: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1972,27 +2187,27 @@ msgstr ""
"Ēąćšóēą÷ķū šąēäēåė ļą äąģą¢ėåķķž\n"
" (äė’ ēąćšóēźi MS-DOS, ą ķå äė’ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Óēšīāåķü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ļąģåš ōšąćģåķņó %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äūńźi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Iģ’ ōąéėó āišņóąėüķąé ōąéėąāąé ńińņżģū: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2000,7 +2215,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2008,65 +2223,60 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Ļąģåš: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ćåąģåņšū’: %s öūėiķäšą¢, %s ćąėīāąź, %s ńåźņąšą¢\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Iķōąšģąöū’: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äūńźi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ņūļ ņąįėiöū šąēäēåėą¢: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ķą ųūķå %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Īļöūi: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ņūļ ōąéėąāąé ńińņżģū:"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ćżņū ļąšīėü ēąķąäņą ļšīńņū (’ćī äą¢ęūķ’ ļąāiķķą įūöü ķå ģåķåé ēą %d ėiņąšą¢)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ļąšīėi ķå ńóļąäąžöü"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2120,23 +2330,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS ńåšāåš"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ļąģūėźą ōąšģąņąāąķķ’ %s"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ķå āåäąž ’ź ąäōąšģąņąāąöü %s ē ņūļąģ %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ļąģūėźą šąēģąķöišąāąķķ’ %s: %s"
@@ -2153,34 +2363,34 @@ msgstr ""
msgid "server"
msgstr "ńåšāåš"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Āū ķå ģīęąöå šąēįiāąöü ķą šąēäåėū, ļąģåš ’źiõ ģåķåé ēą 16 Ģį"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Āū ķå ģīęąöå šąēįiāąöü ķą šąēäåėū, ļąģåš ’źiõ ģåķåé ēą 32 Ģį"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Ļóķźņ ģąķöišąāąķķ’ ļąāiķåķ ļą÷ūķąööą ē /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óęī øńöü šąēäēåė ē ļóķźņąģ ģąķöišąāąķķ’ %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ćżņū źąņąėīć ļąā³ķåķ ēķąõīäē³ööą ¢ķóņšū źąšąķøāąé ōąéėąāąé ń³ńņżģū"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2189,28 +2399,28 @@ msgstr ""
"Āąģ ķåąįõīäķą ēąäąöü ļšąāiėüķū ņūļ ōąéėąāąé ńińņżģū (ext2, reiserfs)\n"
"äė’ ćżņąé źšīļźi ģąķöišąāąķķ’\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Āąģ ķåąįõīäķą ēąäąöü ļšąāiėüķū ņūļ ōąéėąāąé ńińņżģū (ext2, reiserfs)\n"
"äė’ ćżņąé źšīļźi ģąķöišąāąķķ’\n"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ķå õąļąå ļšąńņīšū äė’ ńņāąšżķķ’ ķīāūõ šąēäēåėą¢"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ļąģūėźą ąäźšūöö’ %s äė’ ēąļińó: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2218,258 +2428,262 @@ msgstr ""
"Ļąģūėźą: äė’ ńņāąšżķķ’ ķīāūõ ōąéėąāūõ ńińņżģą¢ ķå ēķąéäēåķū ąäļąāåäķū’ \n"
"ļšūėąäū. Ļšąāåšöå ąįńņąė’āąķķå äė’ ļīųóźó iģąāåšķąé ļšū÷ūķū."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Āū ķå ńņāąšūėi ąķi’źiõ šąēäēåėą¢!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Ąääąėåķū ļšūķņżš"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Ąćóėüķū"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Ąäšąńū ļąģ’ö³ źąšņū (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "ōąšģąņąāąķķå"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Ēģ’ķiöü ņūļ šąēäēåėó"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Āūõąä"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr ""
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "Ąäģ’ķiöü"
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Ļīšņ ģūųū"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Ąäšąńū ļąģ’ö³ źąšņū (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Ąäģåķą"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Ļīšņ ģūųū"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Ąļińąķķå"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Ą¢ņżķņūōiźąöū’"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Ąį’šūöå ōąéė"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Ļšūėąäą-ųėžē"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 źķīļźi"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Āūõąä"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "Ąäģ’ķiöü"
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Ą¢ņąļīųóź"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Āūēķą÷żķķå ęīšńņźąćą äūńźó"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Ćė. ąļińąķķå ąįńņąė’āąķķ’"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Ķąńņšīéźą ģūųū"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Iķōąšģąöū’"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Ķąńņšīéźą ģūųū"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Äóįė’āąķķå ļóķźņó ģąķöišąāąķķ’ %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Źąėi ėąńźą, ļą÷ąźąéöå"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d ńåźóķäą¢"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Ąääąėåķū ļšūķņżš"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ąćóėüķū"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Ą¢ņąļīųóź"
+msgid "Card model :"
+msgstr "Ąäšąńū ļąģ’ö³ źąšņū (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ēģ’ķiöü ņūļ šąēäēåėó"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ōąšģąņąāąķķå"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3657,7 +3871,7 @@ msgstr ""
"\n"
"Ķąö³ńķ³öå \"Ąäģåķą\" źąį ąäģ’ķ³öü ąļåšąöūž įåē ńņšąņū äąäēåķūõ ³ šąēäēåėą¢"
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3665,7 +3879,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3685,26 +3899,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Ķåģąć÷ūģą āūźąšūńņī¢āąöü broadcast įåē äąģåķą NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ļąģūėźą ÷ūņąķķ’ ōąéėó %s"
@@ -3742,7 +3956,7 @@ msgstr ""
"\n"
"Óńø ąäķī ļšąö’ćāąöü?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Āū ļąāiķķū ģåöü šąēäēåė swap"
@@ -3927,12 +4141,12 @@ msgstr ""
"Óēķiźėą ļąģūėźą, ’źóž ķå ąņšūģė³āąåööą źąšżźņķą ąļšąöąāąöü,\n"
"ņąģó ļšąö’ćāąéöå ķą ńāąž šūēūźó."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóįė’āąķķå ļóķźņó ģąķöišąāąķķ’ %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3944,12 +4158,12 @@ msgstr ""
"Ļšąāåšöå cdrom ķą āąųūģ źąģļóņąšū, āūźąšūńņī¢āąž÷ū\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Š”Š°Ń€Š“эчŠ½Š° Š·Š°ŠæрŠ°ŃˆŠ°ŠµŠ¼ у %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äūńźąāīä ķåäąńņóļķū"
@@ -3959,7 +4173,7 @@ msgstr "Äūńźąāīä ķåäąńņóļķū"
msgid "Entering step `%s'\n"
msgstr "Ļåšąõīä ķą źšīź `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3971,79 +4185,79 @@ msgstr ""
"ļšąćšąģó ¢ńņąė’āąķķ’. Äė’ ćżņąćą ķąöińķiöå `F1' ó ÷ąń ēąćšóēźi, ą ļīņūģ\n"
"ķąį’šūöå `text' i ķąöińķiöå <ENTER>."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Źėąń Óńņąė’āąķķ’"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Źąėi ėąńźą, ąį’šūöå ąäēiķ ē źėąńą¢ óńņąė’āąķķ’:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Āūįąš ćšóļū ļąźåņą¢"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Ąńąįińņū āūįąš ļąźåņą¢"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ąćóėüķū ļąģåš: %d / %d Mį"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Äšżķķū ļąźåņ"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Iģ’: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Āåšńi’: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Ļąģåš: %d Kį\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Ēķą÷ķąńöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Āū ķå ģīęąöå āūįšąöü ćżņū ļąźåņ, ņąģó ’ź ķå õąļąå ģåńöą äė’ ’ćī ¢ńņąė’āąķķ’"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Ķąńņóļķū’ ļąźåņū įóäóöü äąäąķū äą ńińņżģū"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Ķąńņóļķū’ ļąźåņū įóäóöü āūäąėåķū"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Āū ķå ģīęąöå āūėó÷ąöü ³ ąäģ’ķ’öü āūėó÷żķķå ćżņąćą ļąźåņó"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ćżņą ąįąā’ēźīāū ļąźåņ, ’ćī āūėó÷żķķå ķåėüćą ąäģ’ķiöü"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Āū ķå ģīęąöå ąäģ’ķiöü āūėó÷żķķå ćżņąćą ļąźåņó. Øķ óęī ¢ńņąė’āąķū"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4051,78 +4265,78 @@ msgstr ""
"Ćżņū ļąźåņ ļąāiķåķ įūöü ąįķī¢ėåķū\n"
"Āū ¢ļż¢ķåķū, ųņī õī÷ąöå ąäģ’ķiöü āūėó÷żķķå?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Āū ķå ģīęąöå ąäģ’ķiöü āūėó÷żķķå ćżņąćą ļąźåņó. ßćī ļąņšżįķą ąįķąāiöü"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Óńņąėø¢źą"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Ēąõąāąķķå ķą äūńźåņó"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Ąńąįińņū āūįąš ļąźåņą¢"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Āūäąėiöü ē ńińņżģū"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Óńņąėø¢āąåģ"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "׹źąåööą"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Ēąńņąėīń’ ÷ąńó "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Ļąäšūõņī¢źą ¢ńņąė’āąķüķ’"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d ļąźåņą¢"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Óńņąė’āąķķå ļąźåņó %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ļšūķ’öü"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Ąäźąēąöü"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4138,17 +4352,17 @@ msgstr ""
"Źąėi āū ķå ģąåöå ’ćī, ķąöińķiöå Ąäģ’ķiöü, źąį ąäģ’ķiöü óńņąė’āąķķå ē ćżņąćą "
"Cd."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Óńø šī¢ķą ļšąö’ćāąöü?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Ąņšūģąėąń’ ļąģūėźą ¢ļąšąäźąāąķķ’ ļąźåņą¢:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Ąņšūģąėąń’ ļąģūėźą ¢ļąšąäźąāąķķ’ ļąźåņą¢:"
@@ -4322,109 +4536,109 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Źėąāi’ņóšą"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Źąėi ėąńźą, ąį’šūöå ņūļ źėąāi’ņóšū."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "ßźi źėąń óńņąė’āąķķ’ āū ęąäąåöå?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Install/Update"
msgstr "Óńņąėø¢źą"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Ąį’šūöå ¢ńņąė’āąķķå öi ąįķą¢ėåķķå"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Šżźąģåķäąāąķą"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Żźńļåšņ"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Ąńąįińņū āūįąš ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "źąėi ėąńźą, ļąēķą÷öå ņūļ āąųąé ģūųū."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Ļīšņ ģūųū"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Źąėi ėąńźą, ļąēķą÷öå ļīńė’äī¢ķū ļīšņ, äą ’źīćą ļąäźėž÷ąķą āąųą’ ģūų."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Ķąńņšīéźą źąšņ PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Ķąńņšīéźą IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ķ’ģą äąńņóļķūõ šąēäēåėą¢"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Ąį’šūöå ļóķźņū ģąķöišąāąķķ’"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4442,7 +4656,7 @@ msgstr ""
"\n"
"Öi ęąäąåöå ńņšąöiöü óńå šąēäēåėū?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4450,77 +4664,77 @@ msgstr ""
"DiskDrake ķå ēģīć ļšąāiėüķą ļšą÷ūņąöü ņąįėiöó šąäēåėą¢.\n"
"Ļšąö’ćāąéöå ņīėüźi ķą ńāąž šūēūźó!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Źąšąķøāū šąēäēåė ķå ēķīéäēåķū"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Źąšąķøāū šąēäēåė"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "ßźi šąäēåė źąšąķøāū (/) äė’ āąųąé ńińņżģū?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Źąį ģąäūōiźąöū’ ņąįėiöū šąēäēåėą¢ ēäåéńķiėąń’, ļąņšżįķą ļåšąēąćšóēźą."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Āūįąš šąēäēåėą¢ äė’ ōąšģąņąāąķķ’"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Ļšąāåšūöü ķą ķą’¢ķąńöü äšżķķūõ įėīźą¢?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Ōąšģąņąāąķķ’ šąēäēåėą¢"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńņāąšżķķå i ōąšģąņąāąķķå ōąéėą %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Ķå õąļąå ģåńöą ¢ įóōåšū ļąäźą÷źi (swap) äė’ ¢ńņąė’āąķķ’, ļąā’ėi÷öå ’ćī."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ļšąćė’ä äąńņóļķūõ ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Ļšąćė’ä äąńņóļķūõ ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Ļīųóź ļąźåņą¢ äė’ ąįķą¢ėåķķ’"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Āū ķå ģīęąöå ąäģ’ķiöü āūėó÷żķķå ćżņąćą ļąźåņó. Øķ óęī ¢ńņąė’āąķū"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Ļīųóź ļąźåņą¢ äė’ ąįķą¢ėåķķ’"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4528,61 +4742,61 @@ msgid ""
msgstr ""
"Āąųą ńińņżģą ķå ģąå äąńņąźīāą ģåńöą äė’ ¢ńņąė’āąķķ’ öi ąįķą¢ėåķķ’ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Ąäķą¢ėåķķå ē äūńźåņū"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Ąäķą¢ėåķķå ē äūńźåņū"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Āūįąš ćšóļū ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Ēąõąāąķķå ķą äūńźåņó"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Āūįąš ļąźåņą¢ äė’ óńņąė’āąķķ’"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "׹źąéöå"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4601,11 +4815,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ļąēķą÷ąķū \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Ļąäšūõņī¢źą ¢ńņąė’āąķüķ’"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4614,21 +4828,21 @@ msgstr ""
"Óńņąė’āąķķå ļąźåņó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Ķąńņšīéźą ļąńė’ ¢ńņąė’āąķķ’"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4706,7 +4920,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4718,190 +4932,200 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńóā’ēü ē ėžšąģ äė’ ąņšūģąķķ’ ńļińó äąńņóļķūõ ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Āūįąš ėžńņšą äė’ ąņšūģąķķ’ ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńóā’ēü ē ėžšąģ äė’ ąņšūģąķķ’ ńļińó äąńņóļķūõ ļąźåņą¢"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "ßźi āąų ÷ąńąāū ļī’ń?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Āąų ńińņżģķū ćąäēiķķiź óńņąė’āąķū ķą GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS ńåšāåš:"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Ąääąėåķū ńåšāåš CUPS"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "No printer"
msgstr "Iģ’ äšóźąšźi"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi øńöü ó āąń iķųū?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
#, fuzzy
msgid "Mouse"
msgstr "Ļīšņ ģūųū"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Ļšūķņżš"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
#, fuzzy
msgid "ISDN card"
msgstr "Óķóņšąķą’ ISDN źąšņą"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
#, fuzzy
msgid "Sound card"
msgstr "Ńņąķäąšņķū"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Āūźąšūńņī¢āąöü NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Āūäąėiöü Windows(TM)"
+msgid "Windows Domain"
+msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Ėąźąėüķū ļšūķņżš"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ļąšīėü äė’ root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Ķ’ģą ļąšīėž"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ą¢ņżķņūōiźąöū’"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Ą¢ņżķņūōiźąöū’"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "ńåšāåš"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "Ą¢ņżķņūōiźąöū’ NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS ńåšāåš:"
#: ../../install_steps_interactive.pm_.c:1138
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "Authentication Windows PDC"
+msgid "Authentication Windows Domain"
msgstr "Ą¢ņżķņūōiźąöū’"
-#: ../../install_steps_interactive.pm_.c:1139
+#: ../../install_steps_interactive.pm_.c:1142
#, fuzzy
-msgid "Windows Domain"
-msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
+msgid "Domain Admin User Name"
+msgstr "Iģ’ äąģåķó"
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1143
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS ńåšāåš:"
+msgid "Domain Admin Password"
+msgstr "Ļąäöāåšäēiöü ļąšīėü"
-#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4928,19 +5152,19 @@ msgstr ""
"Źąėi ęąäąåöå ńņāąšūöü ēąćšóēą÷ķū äūńź ēąšąē, óńņą¢öå äūńźåņó ¢ ļåšųū\n"
"äūńźąāīä i ķąöińķiöå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Ļåšųū äūńźąāīä"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Äšóći äūńźąāīä"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Ļšąļóńöiöü"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4966,7 +5190,7 @@ msgstr ""
"Ęąäąåöå ńņāąšūöü ēąćšóēą÷ķū äūńź ēąšąē?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4975,28 +5199,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Āūįą÷ąéöå, ąėå äūńźąāīä ķåäąńņóļķū"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Ąį’šūöå äūńźąāīä, ó ’źiģ įóäēå ńņāąšąööą ēąćšóēą÷ķą’ äūńźåņą"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Ńņāąšżķķå ēąćšóēą÷ķąé äūńźåņū"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Ļąäšūõņī¢źą ēąćšóē÷ūźą"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5004,11 +5228,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Āū ęąäąåöå āūźąšūńņī¢āąöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5016,16 +5240,16 @@ msgstr ""
"Ļąģūėźą ¢ńņąė’āąķķ’ ąboot, \n"
"ńļšąįąāąöü óńņąėø¢āąöü, ķåćėåäē’÷ū ķą ģąć÷ūģąńöü ļąšóųżķķ’ ļåšųąćą šąēäåėó?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Óńņąė’āąķķå ēąćšóē÷ūźó"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ļšąöżń óńņąė’āąķķ’ ēąćšóē÷ūźą ķå ąņšūģą¢ń’. Óēķiźėą ķąńņóļķą’ ļąģūėźą:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5036,17 +5260,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Ńņāąšżķķå äūńźåņū äė’ ¢ńņąė’āąķķ’"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5055,7 +5279,7 @@ msgstr ""
"Ķåźąņīšū’ źšīźi ķå ēąāåšųąķū.\n"
"Āū ńąļšą¢äū ęąäąåöå āūéńöi ēąšąē?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5087,16 +5311,16 @@ msgstr ""
"Iķōąšģąöū’ ļą ķąńņšīéźå āąųąé ńińņżģū øńņü ¢ ļąńė’-¢ńņąėøāą÷ķąé\n"
"ćėąāå āąųąćą Äąļąģīęķiźą Źąšūńņąėüķiźó ē Ąōiöūéķąćą Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ńņāąšżķķå äūńźåņū äė’ ¢ńņąė’āąķķ’"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5105,16 +5329,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Ą¢ņąģąņū÷ķū"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
#, fuzzy
msgid "Replay"
msgstr "Ļåšąēąćšóēiöü"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Ąńąįińņū āūįąš ļąźåņą¢"
@@ -5143,406 +5367,470 @@ msgstr ""
msgid "Choose a file"
msgstr "Ąį’šūöå äēå’ķķå"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr ""
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Ņżźńņ"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Äšżķķū āūįąš, ļąńļšąįóéöå ’ų÷å\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Āąų āūįąš? (ēģī¢÷ąķķå %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Āąų āūįąš? (ēģī¢÷ąķķå %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Īļöūi: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Āū ęąäąåöå āūźąšūńņī¢āąöü aboot?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Āąų āūįąš? (ēģī¢÷ąķķå %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "×åųńźi (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Ķ’ģåöźi"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Ińļąķńźi"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ōiķńźi"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ōšąķöóēńźi"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ķąšāåęńźi"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Ļīėüńźi"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Šóńźi"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Ųāåöźi"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UK źėąāi’ņóšą"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US źėąāi’ņóšą"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Išąķńźi"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ąšģ’ķńźi (ńņąšū)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Ąšģ’ķńźi (typewriter)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Ąšģ’ķńźi (ōąķåņū÷ķū)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Ąēåšįąéäęąķńź³ (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Įåėüćiéńźi"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Ņąįėiöą"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ąšģ’ķńźi (ōąķåņū÷ķū)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Įąėćąšńźi"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Įšąēiėüńźi (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Żńņīķńźi"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Įåėąšóńź³"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Ųāåéöąšńźi (Ķ’ģåöźą’ šąńźėąäźą)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Ųāåéöąšńźi (Ōšąķöóēńźą’ šąńźėąäźą)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "×åųńźi (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Ķ’ģåöźi (ķ’ģą ēąįėąźišąāąķūõ źėąāių)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Äąöźi"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ķąšāåęńźi)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Żńņīķńźi"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Ćšóēiķńźi (\"Šóńźą’\" šąńźėąäźą)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Ćšóēiķńźi (\"Ėąöiķńźą’\" šąńźėąäźą)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Ćšż÷ąńźi"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ģąäü’šńźi"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Õąšāąöźi"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "I¢šūņ"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "I¢šūņ (ōąķåņū÷ķū)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Išąķńźi"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Ińėąķäńźi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Iņąėü’ķńźi"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "ßļīķńźi 106 źėąāių"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "UK źėąāi’ņóšą"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ėąöiķą-Ąģåšūźąķńźi"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Šąēģåšźąāąķķå"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Ėiņī¢ńźi AZERTY (ńņąšū)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Ėiņī¢ńźi AZERTY (ķīāū)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ėiņī¢ńźi \"ķóģąš šąäźą\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ėiņī¢ńźi \"ōąķåņū÷ķū\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Šąēģåšźąāąķķå"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Ąēåšįąéäęąķńź³ (ź³šūė³öą)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Ćąėąķäńźi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Ļīėüńźi (ńņąķäąšņķą’ šąńźėąäźą)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Ļīėüńźi (qwertz šąńźėąäźą)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Ļąšņóćąėüńźi"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Źąķąäńźi (Źāåįżź)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Šóńźi (ß-Ā-Å-Š-Ņ-Č)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Šóńźi (ß-Ā-Å-Š-Ņ-Č)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Šóńźi (ß-Ā-Å-Š-Ņ-Č)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Ńėąāåķńźi"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Ńėąāąöźi (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Ńėąāąöźi (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Ąēåšįąéäęąķńź³ (ź³šūė³öą)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
#, fuzzy
-msgid "Tamil"
-msgstr "Ņąįėiöą"
+msgid "Tamil (Unicode)"
+msgstr "i18n (äīįšą)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Ņąéńźą’ źėąāi’ņóšą"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Ņąéńźą’ źėąāi’ņóšą"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Ņóšżöźi (ņšąäūöūøķą’ \"F\" ģąäżėü)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Ņóšżöźi (ńó÷ąńķą’ \"Q\" ģąäżėü)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Óźšąiķńźi"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US źėąāi’ņóšą (ģięķąšīäķą’)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Āüåņķąģńźi \"ķóģąš šąäźą\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ąēåšįąéäęąķńź³ (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5551,37 +5839,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ģąķöišąāąķķå äūńźó %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Ķóģąš ņżėåōīķó"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Ōąšģąņąāąķķå šąēäēåėą¢"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5687,53 +5975,45 @@ msgstr "ķ’ģą"
msgid "No mouse"
msgstr "Ķ’ģą ģūųū"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
#, fuzzy
msgid "To activate the mouse,"
msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "Šóųöå źīėąģ ģūųū!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
#, fuzzy
msgid "Finish"
msgstr "Ōiķńźi"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Äąėåé ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ćżņą äąźėąäķą?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Iķōąšģąöū’"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Šąēćąšķóöü äšżāą"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Ēćąšķóöü äšżāą"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Ļåšąźėž÷żķķå ļąģię óļąšąäźąāąķķåģ ļą ćšóļå i ąńīįźąõ"
@@ -5753,6 +6033,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr ""
@@ -5782,7 +6066,7 @@ msgstr ""
"Ķi āīäķū ethernet ńåņźąāū ąäąļņąš ó āąųąé ńińņżģå ķå āūēķą÷ąķū. Źąėi ėąńźą, "
"ńźąšūńņąéöå źąķōićóšąöūéķū iķńņšóģżķņ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Ļąēķą÷öå ńåņźąāū iķņżšōåéń"
@@ -5797,7 +6081,7 @@ msgstr ""
msgid "no network card found"
msgstr "ńåņźąāą’ źąšņą ķå ēķīéäēåķą"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ķąńņšīéźą ńåņźi"
@@ -5813,7 +6097,7 @@ msgstr ""
"ķąļšūźėąä ``mybox.mylab.myco.com''.\n"
"Āū ģīęąöå ņąźńąģą ¢āåńöi IP ąäšąń ųėžēó, źąėi øķ ó āąń øńöü."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Iģ’ ģąųūķū"
@@ -5843,7 +6127,7 @@ msgstr "ßźi ņūļ āąųąćą ISDN ēėó÷żķķ’?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5965,44 +6249,44 @@ msgstr "Äą ’źīćą ļąńė’äī¢ķąćą ļīšņó äąėó÷ąķū ģąäżģ?"
msgid "Dialup options"
msgstr "Ļąšąģåņšū źąģóņąāąķąćą ēėó÷żķķ’ (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Iģ’ ēėó÷żķķ’"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Ķóģąš ņżėåōīķó"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Iģ’ (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "ķą ąńķīāå ńźšūļņó"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "ķą ąńķīāå ņżšģiķąėó"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Iģ’ äąģåķó"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Ļåšųū ńåšāåš DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Äšóći ńåšāåš DNS:"
@@ -6113,14 +6397,14 @@ msgstr "Ąį’šūöå ąńķī¢ķąćą źąšūńņąėüķiźą:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Āūēķą÷żķķå ļšūėąäą¢..."
@@ -6230,7 +6514,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6238,7 +6522,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6248,43 +6532,43 @@ msgstr ""
"Źīęķū ļóķźņ ļąāiķåķ įūöü ēąļī¢ķåķū ’ź IP ąäšąń ¢ äēåń’ņźīāą-źšīļźąāąé \n"
"ķąņąöūi (ķąļšūźėąä, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Ķąńņšīéźą ńåņźąāąé ļšūėąäū %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Ńåšāåš XFree86: %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ąäšąń"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ģąńźą ńåņźi"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Ą¢ņąģąņū÷ķū IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Ńņāąšūöü ēąćš. äūńź"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ąäšąń ļąāiķåķ įūöü ó ōąšģąöå 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6296,40 +6580,40 @@ msgstr ""
"ķąļšūźėąä ``mybox.mylab.myco.com''.\n"
"Āū ģīęąöå ņąźńąģą ¢āåńöi IP ąäšąń ųėžēó, źąėi øķ ó āąń øńöü."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS ńåšāåš"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Ļšūėąäą-ųėžē"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Ķąńņšīéźą proxy źżųóž÷ūõ ńåšāåšą¢"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy ļąāiķåķ įūöü http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy ļąāiķåķ įūöü ftp://..."
@@ -6341,7 +6625,7 @@ msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Öi ęąäąåöå ēąšąē ļąńļšąįąāąöü äąėó÷ūööą äą Iķņżšķżņó?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
#, fuzzy
msgid "Testing your connection..."
msgstr "ßźi ņūļ āąųąćą ISDN ēėó÷żķķ’?"
@@ -6372,44 +6656,44 @@ msgstr "Ķąńņšīéźą äąėó÷żķķ’ äą Iķņżšķżņó"
msgid "Please fill or check the field below"
msgstr "Źąėi ėąńźą, ēąļī¢ķiöå öi ļąēķą÷öå ļīėå ķiężé"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ źąšņū"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Ąäšąńū ļąģ’ö³ źąšņū (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO źąšņū"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 źąšņū"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 źąšņū"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Āąų ąńąįińņū ņżėåōīķķū ķóģąš"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Iģ’ ļšąāąéäąšó, ķąļšūźėąä ļšąāąéäąš.net"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Ķóģąš ņżėåōīķó ļšąāąéäąšą"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 ļšąāąéäąšó"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 ļšąāąéäąšó"
@@ -6419,30 +6703,30 @@ msgstr "DNS 2 ļšąāąéäąšó"
msgid "Choose your country"
msgstr "Āūįąš źėąāi’ņóšū"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Šżęūģ ēėó÷żķķ’"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Iģ’ ēėó÷żķķ’"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Iģ’ ēėó÷żķķ’"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Iģ’ äė’ ¢āąõīäó (iģ’ źąšūńņąėüķiźó)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Ļąšīėü äė’ ¢āąõīäó"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6478,7 +6762,7 @@ msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
msgid "Error writing to file %s"
msgstr "Ļąģūėźą ēąļińó ¢ ōąéė %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6521,7 +6805,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6550,7 +6834,7 @@ msgstr "Ąääąėåķū ļšūķņżš"
msgid "Printer on remote CUPS server"
msgstr "Ąääąėåķū ńåšāåš CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Ąääąėåķū ńåšāåš lpd"
@@ -6569,7 +6853,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Ńåšāåš äšóźó"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI ļšūķņżšó"
@@ -6578,112 +6862,112 @@ msgstr "URI ļšūķņżšó"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Ėąźąėüķū ļšūķņżš"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ļąģūėźą ēąļińó ¢ ōąéė %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(ģīäóėü %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ńåšāåšą SMB"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Ļą äąģą¢ėåķķž)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Āūįąš ņūļó ēėó÷żķķ’ ļšūķņżšó"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "ßź ļšūķņąš äąėó÷ąķū?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6694,17 +6978,21 @@ msgstr ""
"ķą ćżņąé ģąųūķå, øķ įóäēå ēķīéäēåķū ą¢ņąģąņū÷ķą.\n"
"Źąė³ Āū ķå ¢ļż¢ķåķū, ąį’šūöå \"Ąääąėåķū ńåšāåš CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Ķąńņšīéźą"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ąääąėåķū ńåšāåš CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6715,7 +7003,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6725,36 +7013,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ąäšąń ļąāiķåķ įūöü ó ōąšģąöå 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
#, fuzzy
msgid "CUPS server IP"
msgstr "IP ńåšāåšą SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ļīšņ"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Ķąńņšīéźą ģąäżģó"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Iģ’ äšóźąšźi"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6767,37 +7055,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ėąźąėüķū ļšūķņżš"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Ėąźąėüķū ļšūķņżš"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6811,53 +7130,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Ąääąėåķū ļšūķņżš"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ļšąāåšźą ļąšņī¢"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Äóįė’āąķķå ļóķźņó ģąķöišąāąķķ’ %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Ńåņźąāū ļšūķņżš (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6865,43 +7181,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI ļšūķņżšó"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Ėąźąėüķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Äąńņóļķū’ ļąźåņū"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6909,7 +7216,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6917,83 +7224,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Äą ’źīćą ļąńė’äī¢ķąćą ļīšņó äąėó÷ąķū ģąäżģ?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI ļšūķņżšó"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Ķąńņšīéźą"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Óńņąė’āąķķå ļąźåņó %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Óńņąė’āąķķå ļąźåņó %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Óńņąė’āąķķå ļąźåņó %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Īļöūi ąääąėåķąćą ļšūķņżšó lpd"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7003,31 +7265,51 @@ msgstr ""
"ļąēķą÷ūöü iģ’ ąääąėåķąćą ńåšāåšą i iģ’ ÷ąšći äšóźó,\n"
"ó ’źóž ąääąėåķū ńåšāåš įóäēå ąäļšą¢ė’öü ēąäąķķi."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Ąääąėåķū āóēåė"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Ąääąėåķū āóēåė"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Ąääąėåķū āóēåė"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Äóįė’āąķķå ļóķźņó ģąķöišąāąķķ’ %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "ßźi ņūļ āąųąćą ISDN ēėó÷żķķ’?"
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ąäėó÷żķķå ąä ńåņźi"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Īļöūi ļšūķņżšó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7040,35 +7322,46 @@ msgstr ""
"šżńóšńó, ’źi ńļąėó÷ąķū ē āūįšąķūģ ļšūķņżšąģ, iģ’ źąšūńņąėüķiźó, ļąšīėü i "
"iķōąšģąöūž ąį ļšąöī¢ķąé ćšóļå."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Iģ’ ńåšāåšó SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP ńåšāåšą SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Iģ’ äė’ šąēģåšźąāąķąćą šżńóšńó"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Ļšąöī¢ķą’ ćšóļą"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Ąääąėåķū ļšūķņżš"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7092,7 +7385,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7101,7 +7394,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7109,11 +7402,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Īļöūi ļšūķņżšó NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7125,88 +7418,109 @@ msgstr ""
"(ķå ēą¢ńøäū ńóļąäąå ē iģåķåģ ó ńåņöū TCP/IP) i iģ’ ÷ąšći äšóźó, ’źą’ "
"ąäļąā’äąå ąįšąķąģó ļšūķņżšó, ą ņąźńąģą iģ’ źąšūńņąėüķiźó i ļąšīėü."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Ńåšāåš äšóźó"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Iģ’ ÷ąšći äšóźó"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Īļöūi ńīźåņó ļšūķņżšó"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Źąį äšóźąāąöü ļšąē ńīźåņ äšóźąšźi, āąģ ķåąįõīäķą ēąį’ńļå÷ūöü\n"
"iģ’ ļšūķņżšó i ģąć÷ūģą ’ćī ķóģąš ļīšņó."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Iģ’ ļšūķņżšó"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Iģ’ ļšūķņżšó"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI ļšūķņżšó"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Iģ’ äšóźąšźi"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Šąēģåšźąāąķķå"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7221,28 +7535,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Ćżņą äąźėąäķą?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Ēėó÷żķķå ļšūķņżšó"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "ßźi ņūļ äšóźąšźi āū ģąåöå?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7251,18 +7565,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7272,12 +7586,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7285,7 +7599,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7298,7 +7612,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7308,34 +7622,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ęąäąåöå ļšąņżńöišąāąöü äšóź?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Ļšąāåšźą ļąšņī¢"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7343,45 +7657,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Ņąź, ķąäšóźąāąöü ąįåäēāå ńņąšīķźi ņżźńņó"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Ļšūķņżš"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Ńņąķäąšņķū"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Äšóź ņżńņąāūõ ńņąšīķąź"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Äšóź ņżńņąāūõ ńņąšīķąź"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Äšóź ņżńņąāūõ ńņąšīķąź"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Äšóź ņżńņąāūõ ńņąšīķąź"
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7397,7 +7711,7 @@ msgstr ""
"\n"
"Øķ ļšąöóå ķąšģąėüķą?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7407,16 +7721,16 @@ msgstr ""
"Ļåšąä ņūģ, ’ź ļšūķņżš ēąļšąöóå, ģīęą ļšąéńöi ļż¢ķū ÷ąń.\n"
"Øķ ļšąöóå ķąšģąėüķą?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Iģ’ äšóźąšźi"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7425,15 +7739,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7442,7 +7756,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7450,41 +7764,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7494,7 +7808,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7503,47 +7817,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ąäėó÷żķķå ąä ńåņźi"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ąäėó÷żķķå ąä ńåņźi"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ąäėó÷żķķå ąä ńåņźi"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ąäėó÷żķķå ąä ńåņźi"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Ļīšņ ģūųū"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Īļöūi ļšūķņżšó"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7552,9 +7866,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7565,19 +7879,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7587,51 +7901,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7639,62 +7953,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Iģ’ äšóźąšźi"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Ķąńņšīéźą ļšūķņżšó"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "ßźi ņūļ āąųąćą ISDN ēėó÷żķķ’?"
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Ķąńņšīéźą ńåņźi"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ģąķiņīš ļąźóėü ķå ķąńņšīåķū"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7702,12 +8016,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Ķąńņšīéźą ńåņźi"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7717,34 +8031,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "ßźóž ńińņżģó äšóźó Āū ęąäąåöå āūźąšūńņī¢āąöü?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Āūńīźi"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Ļąšąķąiäąėüķū"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7759,12 +8073,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "ßźóž ńińņżģó äšóźó Āū ęąäąåöå āūźąšūńņī¢āąöü?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7778,70 +8092,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Āūįąš ņūļó ēėó÷żķķ’ ļšūķņżšó"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "ßźóž ńińņżģó äšóźó Āū ęąäąåöå āūźąšūńņī¢āąöü?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ķąńņšīéźą ļšūķņżšó"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Óńņąė’āąķķå ļąźåņó %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Īļöūi ļšūķņżšó"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Ķąńņšīéźą ļšūķņżšó"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ęąäąåöå ķąńņšīiöü ļšūķņżš?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Ļšūķņżš"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7852,7 +8166,7 @@ msgstr ""
"Ņóņ ēģ’ų÷ąžööą ÷żšći äšóźó.\n"
"Āū ģīęąöå äąäąöü ’ų÷ż, ąėüįī ēģ’ķiöü ińķóž÷ū’."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7862,142 +8176,138 @@ msgstr ""
"Ņóņ ēģ’ų÷ąžööą ÷żšći äšóźó.\n"
"Āū ģīęąöå äąäąöü ’ų÷ż, ąėüįī ēģ’ķiöü ińķóž÷ū’."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Ķąńņšīéźą ńåņźi"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Ēāū÷ąéķū"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Āūõąä"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Ēėó÷żķķå ļšūķņżšó"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Äšóź ņżńņąāūõ ńņąšīķąź"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Ėąźąėüķū ļšūķņżš"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Öi ęąäąåöå ļšąņżńöišąāąöü ķąńņšīéźi?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
@@ -8048,8 +8358,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy ļąāiķåķ įūöü ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy ļąāiķåķ įūöü http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8100,44 +8410,6 @@ msgstr "mkraid ķå ļšąöąēäīėüķū (ģīęą raid ļšūėąäū ąäńóņķi÷ąžöü?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ķåäąńņąņźīāą šąēäēåėą¢ äė’ RAID óēšī¢ķ’ %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ćżņū óēšīāåķü ķåąįõīäķą āūźąšūńņī¢āąöü ē ąńö’šīćąé. Ńińņżģą įóäēå ļšąńöåé\n"
-"ó źąšūńņąķķi, ąėå i įīėüų ÷óņķąé: ćżņū óēšīāåķü į’ńļåźi ķåėüćą "
-"āūźąšūńņī¢āąöü\n"
-"ķą ģąųūķąõ, ’źi’ äąėó÷ąķū äą ńåņźi öi äą Internet. Óāąõīä ķå ąįąšīķåķū "
-"ļąšīėåģ."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Ķą ćżņąģ óēšī¢ķå į’ńļåźi ģąć÷ūģą āūźąšūńņąķķå ńińņżģū ¢ ’źąńöi\n"
-"ńåšāåšó. Óēšīāåķü į’ńļåźi äąńņąņźīāą āūńīźi äė’ šąįīņū\n"
-"ńåšāåšó, ’źi äąļóńźąå ēėó÷żķķi ńą ųģąņėiźiģi źėiåķņąģi."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ēąźąķ÷żķķå ķąńņšīéźi"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Īļöūi"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8436,7 +8708,7 @@ msgstr "öiźąāą"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8561,7 +8833,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Äąėó÷żķķå äą Iķņżšķżņó"
@@ -8661,21 +8933,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Óńņąė’āąķķå ļąźåņó %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Źąėi ėąńźą, āūéäēiöå, ą ļīņūģ ńźąšūńņąéöå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Źąėi ėąńźą, ļåšąéäēiöå ¢ %s äė’ ąźņūāąöūi ēģ’ķåķķ’¢"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8683,175 +8955,175 @@ msgstr ""
"Ņąįėiöą šąēäēåėą¢ ķå ÷ūņąåööą, ’ķą ēąķąäņą ńąļńąāąķą äė’ ģåķ’ :(\n"
"Ļąńļšąįóž ińöi äąėåé i įóäó ļšąļóńźąöü äšżķķū’ šąēäēåėū"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Ńåšāåš äšóźó"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Ńåšāåš äšóźó"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS ńåšāåš:"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS ńåšāåš:"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
#, fuzzy
msgid "Etherboot Floppy/ISO"
msgstr "Ńņāąšūöü ēąćš. äūńź"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr ""
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Šąēģåšźąāąķķå"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Ēķių÷ūöü"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Ąį’šūöå ōąéė"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ķąńņšīéźą IDE"
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "Ķąńņšīéźą X Window"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Óńņą¢öå äūńźåņó ¢ äūńźąāīä %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Äūńźąāīä ķåäąńņóļķū"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Ļąģūėźą"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Ķąńņšīéźą ļąńė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8866,23 +9138,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Ķąńņšīéźą ģąäżģó"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Ńņāąšżķķå äūńźåņū äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8890,40 +9162,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Ļšūģ³öå āiķųąāąķķi!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Óńņąėø¢źą"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Ōąšģąņąāąķķå āišņóąėüķąćą šąēäēåėó %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8931,7 +9216,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8939,34 +9224,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Ļšąāåšźą ļąšņī¢"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8974,739 +9323,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ļąģūėźą ÷ūņąķķ’ ōąéėó %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Āūįąš ćšóļū ļąźåņą¢"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Āūäąėiöü ÷ąšćó äšóźó"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Āūäąėiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Iģ’ źąšūńņąėüķiźó:"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Ļąńļšąįóéöå ’ų÷ż šąē"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Ļąńļšąįóéöå ’ų÷ż šąē"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Ķ’ģą ļąšīėž"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Źąėi ėąńźą, ąį’šūöå ņūļ źėąāi’ņóšū."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
+msgid "Please check if you are using a DVDR device"
+msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Ķąö³ńķ³öå ķą šąēäēåė"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Ąį’šūöå ōąéė"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Ńåņźą:"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Ņūļ: "
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Iģ’ źąšūńņąėüķiźó:"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Źąėi ėąńźą, ąį’šūöå ģīāó äė’ źąšūńņąķķ’."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "׹źąéöå"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Ē źīėąģ"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Ē źīėąģ"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Īļöūi ģīäóėž:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
#, fuzzy
msgid "across Network"
msgstr "Ńåņźą:"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Ļīšņ ļšūķņżšó"
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Ķąńņš. ōąéėąāūõ ńińņżģą¢"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Ģūų: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Īļöūi"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
#, fuzzy
msgid "\t-Tape \n"
msgstr "Ņūļ: "
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äą ’źīćą ļąńė’äī¢ķąćą ļīšņó äąėó÷ąķū ģąäżģ?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "źąėi ėąńźą, ļąēķą÷öå ņūļ āąųąé ģūųū."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Šąēģåšźąāąķķå"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Āūįąš ņūļó ēėó÷żķķ’ ļšūķņżšó"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Ąäķą¢ėåķķå ē äūńźåņū"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "źąėi ėąńźą, ļąēķą÷öå ņūļ āąųąé ģūųū."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "²ķųū’"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Óńņąė’āąķķå ńińņżģū"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Ąäķą¢ėåķķå ē ōąéėó"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Ąäķą¢ėåķķå ē ōąéėó"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "źąėi ėąńźą, ļąēķą÷öå ņūļ āąųąé ģūųū."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Ļą āūįąšó"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńņąšņąāąå ģåķž"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Ąäķą¢ėåķķå ē ōąéėó"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Ņżźńņ"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ķąńņóļķū’ ļąźåņū įóäóöü äąäąķū äą ńińņżģū"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Źąėi ėąńźą, ąį’šūöå ģīāó äė’ źąšūńņąķķ’."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Źąėi ėąńźą, ąį’šūöå ģīāó äė’ źąšūńņąķķ’."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Źąėi ėąńźą, ąį’šūöå ģīāó äė’ źąšūńņąķķ’."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Äšżķķū ōąéė šżēåšāīāąé źīļii"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Ēąõąāąķķå ¢ ōąéė"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ķąńņšīéźą"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ēąźąķ÷żķķå ķąńņšīéźi"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Ķąńņš. ōąéėąāūõ ńińņżģą¢"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9717,7 +10130,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9738,7 +10151,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9747,7 +10160,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9771,7 +10184,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9788,21 +10201,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9816,17 +10229,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9843,7 +10256,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9883,7 +10296,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9894,7 +10307,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9907,7 +10320,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9946,96 +10359,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Óńņąė’āąķķå %s ķå ąņšūģąėąń’. Óēķiźėą ķąńņóļķą’ ļąģūėźą:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Źąķńīėüķū’ ³ķńņšóģåķņąėüķū’ ńšīäź³"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Äąėó÷żķķå äą Iķņżšķżņó"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "ąįąā’ēźīāą"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Ļīšņ ģūųū"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Iģ’ äė’ šąēģåšźąāąķąćą šżńóšńó"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
#, fuzzy
msgid "Windows Migration tool"
msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Āūźąšūńņī¢āąöü DiskDrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Šąēģåšźąāąķķå"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Ļąźåņ"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Źąėi ėąńźą, ļą÷ąźąéöå"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10047,349 +10487,349 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Ēąźąķ÷żķķå ¢ńņąė’āąķķ’"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Ļīšņ"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Ēąźąķ÷żķķå ¢ńņąė’āąķķ’"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Āū ģīęąöå ąįšąöü ³ķųū’ ģīāū, ’źi’ įóäóöü äąńņóļķū ļąńė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
#, fuzzy
msgid "Profile: "
msgstr "ļąģūėźą ģąķöišąāąķķ’: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
#, fuzzy
msgid "Hostname: "
msgstr "Iģ’ ģąųūķū"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr ""
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
#, fuzzy
msgid "Type:"
msgstr "Ņūļ: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Ųėžē:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr ""
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr ""
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
#, fuzzy
msgid "Configure Internet Access..."
msgstr "Ķąńņšīéźą ńėóęįą¢"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
#, fuzzy
msgid "LAN configuration"
msgstr "Ķąńņšīéźą ADSL"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Driver"
msgstr "ńåšāåš"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Interface"
msgstr "Ńåņźąāū iķņżšōåéń"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Ńņąšņąāąå ģåķž"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
#, fuzzy
msgid "Configure Local Area Network..."
msgstr "Ķąńņšīéźą ėąźąėüķąé ńåņźi"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Ģąéńņąš ńņāąšżķķ’..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Ļšąāåšźą ļąšąģåņšą¢ ķąńņšīéźi"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Iģ’ ēėó÷żķķ’"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Not connected"
msgstr "Šąēģåšźąāąķķå"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
#, fuzzy
msgid "LAN Configuration"
msgstr "Ķąńņšīéźą"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Ąźņū¢ķū"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Ąźņū¢ķū"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
#, fuzzy
msgid "Internet connection configuration"
msgstr "Iķņżšķżņ ēėó÷żķķå i źąķōićóšąöū’"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
#, fuzzy
msgid "Internet Connection Configuration"
msgstr "Iķņżšķżņ ēėó÷żķķå i źąķōićóšąöū’"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
#, fuzzy
msgid "Connection type: "
msgstr "Iģ’ ēėó÷żķķ’"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Ųėžē"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr ""
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Module name"
msgstr "Īļöūi ģīäóėž:"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Size"
msgstr "Ļąģåš: %s"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
#, fuzzy
msgid "drakfloppy"
msgstr "Ąäķą¢ėåķķå ē äūńźåņū"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
#, fuzzy
msgid "boot disk creation"
msgstr "Ķąńņšīéźą ļąńė’ ¢ńņąė’āąķķ’"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Ļą äąģą¢ėåķķž"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
#, fuzzy
msgid "kernel version"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
#, fuzzy
msgid "General"
msgstr "Ąćóėüķū"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
#, fuzzy
msgid "Expert Area"
msgstr "Żźńļåšņ"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
#, fuzzy
msgid "Add a module"
msgstr "Äąäąöü źąšūńņąėüķiźą"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
#, fuzzy
msgid "force"
msgstr "Ļåšąķīń"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr ""
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
#, fuzzy
msgid "omit scsi modules"
msgstr "Šżęūģ ēėó÷żķķ’"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr ""
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
#, fuzzy
msgid "Remove a module"
msgstr "Ąäāąšīņķū ļąšąäąź ńņąšīķąź"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr ""
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Ēšąįiöü ķåąźņū¢ķūģ ńåņźąāąå ēėó÷żķķå"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10397,105 +10837,105 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "Ķå ēķąéųėi %s"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Ēšīįėåķą"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Ōąšģąņąāąöü äūńźåņó"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ļąäšūõņī¢źą ¢ńņąė’āąķüķ’"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "ąįģåęąāąķķå"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "ąįģåęąāąķķå"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10504,121 +10944,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Ōąšģąņąāąķķå šąēäēåėą¢"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Āūäąėåķķå āūįšąķūõ RPM-ļąźåņą¢ ē ńińņżģū"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Ēąźąķ÷żķķå ķąńņšīéźi"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Źšīļźą ģąķöišąāąķķ’"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Āūįąš šąēäēåėą¢ äė’ ōąšģąņąāąķķ’"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "äīįšą"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Ąäģ’ķiöü"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Ļšūķņżš"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Óńņąė’āąķķå ńińņżģū"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Ąį’šūöå ōąéė"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Ąääąėåķū ļšūķņżš"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Ó āąųąé ń³ńņżģå ķ’ģą ķiāīäķąćą ńåņźąāąćą ąäąļņąšą!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Óńņąėø¢źą"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Ó āąųąé ń³ńņżģå ķ’ģą ķiāīäķąćą ńåņźąāąćą ąäąļņąšą!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Ēąźąķ÷żķķå ¢ńņąė’āąķķ’"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå ēąšąē ģąć÷ūģą"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10626,35 +11071,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "disable"
msgstr "Ņąįėiöą"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
#, fuzzy
msgid "reconfigure"
msgstr "Ķąńņšīéźą X Window"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
#, fuzzy
msgid "Disabling servers..."
msgstr "Āūēķą÷żķķå ļšūėąäą¢..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå ēąšąē ēąįąšīķåķą"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå ēąšąē ēąįąšīķåķą"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10662,21 +11107,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
#, fuzzy
msgid "enable"
msgstr "Ņąįėiöą"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå ēąšąē ģąć÷ūģą"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10693,21 +11138,21 @@ msgstr ""
"\n"
"Āū ęąäąåöå óńņąė’āąöü ńóģåńķū äīńņóļ äą Internet?"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Ńåņźąāū iķņżšōåéń"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Ó āąųąé ń³ńņżģå ķ’ģą ķiāīäķąćą ńåņźąāąćą ąäąļņąšą!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10715,11 +11160,11 @@ msgstr ""
"Ķi āīäķū ethernet ńåņźąāū ąäąļņąš ó āąųąé ńińņżģå ķå āūēķą÷ąķū. Źąėi ėąńźą, "
"ńźąšūńņąéöå źąķōićóšąöūéķū iķńņšóģżķņ."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Ńåņźąāū iķņżšōåéń"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10729,7 +11174,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10737,12 +11182,12 @@ msgstr ""
"Źąėi ėąńźą, ąį’šūöå ńåņźąāū ąäąļņąš, ’ź³ įóäēå āūźąšūńņąķū äė’ äąėó÷żķķ’ äą "
"āąųąé ėąźąėüķąé ńåņźi."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Ģąķiņīš ļąźóėü ķå ķąńņšīåķū"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10752,17 +11197,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ķąńņšīéźą ģąäżģó"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10773,7 +11218,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10785,33 +11230,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ńåšāåšą SMB"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ļąņżķöūéķū ąäšąń ĖĀŃ źąķōėiźņóå ē į’ćó÷ąé źąķōićóšąöū’é %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Ēķīéäēåķą ń³ńņżģą ńåņźąāąé į’ńļåź³ (firewall)!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10819,21 +11264,21 @@ msgstr ""
"Óāąćą! Ēķīéäēåķą ³ńķóž÷ą’ ńińņżģą ńåņźąāąé į’ńļåźi (firewall). Āąģ ģąć÷ūģą "
"ńļąņšżį³ööą ńźąšżźņąāąöü ’å ļąńė’ ¢ńņąė’āąķķ’."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
#, fuzzy
msgid "Configuring..."
msgstr "Ķąńņšīéźą IDE"
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Źąķō³ćóšąöū’ ńöżķąšą¢, óńņąė’āąķķå ĻĒ, ēąļóńź ńėóęįą¢..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Ļšąįėåģū ē óńņąė’āąķķåģ ļąźåņó %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10844,25 +11289,25 @@ msgstr ""
"ē ³ķųūģ³ źąģļ'žņżšąģ³ ¢ āąųąé ĖĀŃ, źąšūńņąž÷ūń’ ą¢ņąģąņū÷ķūģ\n"
"źąķō³ćóšąāąķķåģ (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå ēąšąē ģąć÷ūģą"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Iķņżšķżņ ēėó÷żķķå i źąķōićóšąöū’"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10872,21 +11317,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ńóģåńķąå Iķņżšķżņ-ēėó÷żķķå"
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Äąėó÷żķķå äą Iķņżšķżņó"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Ąį’šūöå iķńņšóģåķņ, ’źi ęąäąåöå ńźąšūńņąöü"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10895,108 +11332,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Źąķąäńźi (Źāåįżź)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Å¢šīļą"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Ōšąķöū’"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Ińėąķäńźi"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Å¢šīļą"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "ļąńė’äī¢ķą’"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ąņšūģąėąń’ ļąģūėźą ¢ļąšąäźąāąķķ’ ļąźåņą¢:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11020,11 +11461,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Źąėi ėąńźą, ąį’šūöå ņūļ źėąāi’ņóšū."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Āū ęąäąåöå źąį BackSpace ļšąöąāą¢ ó źąķńīė³ ’ź Delete?"
@@ -11054,7 +11495,7 @@ msgstr "Ķåģąć÷ūģą ēąļóńö³öü live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr ""
@@ -11164,148 +11605,149 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Ķąńņšīéźą ADSL"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Iģ’ äąģåķó"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS ńåšāåš:"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Ńåšāåš äšóźó"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS ńåšāåš:"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS ńåšāåš:"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "ļšūėąäą"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ńåšāåš äšóźó"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "ļšūėąäą"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "ōąšģąņąāąķķå"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Ķąńņšīéźą"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ļąńļšąįóéöå ’ų÷ż šąē"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "źąėi ėąńźą, ļąēķą÷öå ņūļ āąųąé ģūųū."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_usb ķå ēķīéäēåķ\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Żģóė’āąöü ņšżöžž źķīļźó?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Āūēķą÷żķķå ļšūėąäą¢..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Ļšąāåšźą ļąšņī¢"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Ąį’šūöå āiäżąźąšņó"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Ēąćšóēą÷ķą’ ļšūėąäą"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11313,7 +11755,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11333,17 +11775,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "Ēķīéäēåķą ń³ńņżģą ńåņźąāąé į’ńļåź³ (firewall)!"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "Ēķīéäēåķą ń³ńņżģą ńåņźąāąé į’ńļåź³ (firewall)!"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11351,7 +11793,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11544,56 +11986,60 @@ msgstr ""
msgid "Can't open %s for writing: %s\n"
msgstr "Ļąģūėźą ąäźšūöö’ %s äė’ ēąļińó: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Źąķōićóšąöū’ ńåņźi"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Ļąäšūõņī¢źą ¢ńņąė’āąķüķ’"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr ""
@@ -11647,6 +12093,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Ą¢äūøńšīäź³: ļšąéćšąāąėüķ³ź³ mp3 ³ midi, ģ³źųąšū ³ ć.ä."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "ķ³ć³ ³ Howto ļą Linux ³ Free Software"
@@ -11742,11 +12192,6 @@ msgid "Office Workstation"
msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "ńåšāåš"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
@@ -11813,6 +12258,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Ķąńņšīéźą ēėó÷żķķ’ ē Iķņżšķżņąģ"
@@ -11846,6 +12295,109 @@ msgstr "Ģóėüņūģåäū’ - Ńņāąšżķķå CD"
msgid "Scientific Workstation"
msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Ćżņū óēšīāåķü ķåąįõīäķą āūźąšūńņī¢āąöü ē ąńö’šīćąé. Ńińņżģą įóäēå "
+#~ "ļšąńöåé\n"
+#~ "ó źąšūńņąķķi, ąėå i įīėüų ÷óņķąé: ćżņū óēšīāåķü į’ńļåźi ķåėüćą "
+#~ "āūźąšūńņī¢āąöü\n"
+#~ "ķą ģąųūķąõ, ’źi’ äąėó÷ąķū äą ńåņźi öi äą Internet. Óāąõīä ķå ąįąšīķåķū "
+#~ "ļąšīėåģ."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Ķą ćżņąģ óēšī¢ķå į’ńļåźi ģąć÷ūģą āūźąšūńņąķķå ńińņżģū ¢ ’źąńöi\n"
+#~ "ńåšāåšó. Óēšīāåķü į’ńļåźi äąńņąņźīāą āūńīźi äė’ šąįīņū\n"
+#~ "ńåšāåšó, ’źi äąļóńźąå ēėó÷żķķi ńą ųģąņėiźiģi źėiåķņąģi."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Īļöūi"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "źó÷ąšąāū"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Źąėi ėąńźą, ąį’šūöå ņūļ źėąāi’ņóšū."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Źąė³ ėąńźą, ēšąį³öå ķåźąėüź³ šóõą¢ ģūųųó."
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Proxy ļąāiķåķ įūöü ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Āūįąš ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Āūäąėiöü Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Ņąįėiöą"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS ńåšāåš:"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Ąääąėåķū ļšūķņżš"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Óńņąė’āąķķå ļąźåņó %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Óńņąė’āąķķå ļąźåņó %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Óńņąė’āąķķå ļąźåņó %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "×ūņąž įąēó äąäēåķūõ äšąéāåšī¢ CUPS"
+
+#, fuzzy
+#~ msgid "Control Center"
+#~ msgstr "Äąėó÷żķķå äą Iķņżšķżņó"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Ąį’šūöå iķńņšóģåķņ, ’źi ęąäąåöå ńźąšūńņąöü"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_usb ķå ēķīéäēåķ\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Ąį’šūöå äąäąņźīāū’ ķąńņšīéźi äė’ ńåšāåšą"
@@ -11910,9 +12462,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Setting security level"
#~ msgstr "Ķąńņšīéźi ¢ēšī¢ķ’ į’ńļåźi"
-#~ msgid "Graphics card"
-#~ msgstr "Āiäżąźąšņą"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ąį’šūöå āiäżąźąšņó"
@@ -11993,9 +12542,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Percentage of packages to install"
#~ msgstr "Ąäńīņąź ļąźåņą¢ äė’ ¢ńņąė’āąķķ’"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Óēšīāåķü į’ńļåźi"
-
#~ msgid "Complete (%dMB)"
#~ msgstr "Ļī¢ķū (%dMį)"
@@ -12049,9 +12595,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Local Printer Device"
#~ msgstr "Ėąźąėüķū ļšūķņżš"
-#~ msgid "Printer Device"
-#~ msgstr "Ļīšņ ļšūķņżšó"
-
#~ msgid "Choose the size you want to install"
#~ msgstr "Ąį’šūöå ļąęąäąķū ļąģåš óńņąė’āąķķ’"
@@ -12074,9 +12617,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ "Äą ’źīćą ļīšņó äąėó÷ąķū āąų ļšūķņżš \n"
#~ "(/dev/lp0 żźāiāąėåķņķū LPT1:)?\n"
-#~ msgid "New"
-#~ msgstr "Ķīāū"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Ķåāūēķą÷ąķąńöü (%s), įóäēüöå äąźėąäķū’\n"
@@ -13070,9 +13610,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Automatical resolutions search"
#~ msgstr "Ą¢ņąģąņū÷ķū ļīųóź ļąģåšą¢ żźšąķó"
-#~ msgid "Available packages"
-#~ msgstr "Äąńņóļķū’ ļąźåņū"
-
#~ msgid "Bad kickstart file %s (failed %s)"
#~ msgstr "Äšżķķū ńņąšņąāū (kickstart) ōąéė %s (ļąģūėźą %s)"
@@ -13223,9 +13760,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Configure timezone"
#~ msgstr "Ķąńņšīéźą ÷ąńąāīćą ļī’ńó"
-#~ msgid "Confirm Password"
-#~ msgstr "Ļąäöāåšäēiöü ļąšīėü"
-
#~ msgid "Connect to Internet using Cable"
#~ msgstr "Äąėó÷ūööą äą Iķņżšķżņ ļšąē źąįåėü (ńåņźó)"
@@ -13869,9 +14403,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
#~ msgstr "Āūįšąķą ēąųģąņ ļąźåņą¢: %dMį ķå ¢ėąēiöü ó %dMį"
-#~ msgid "Tree"
-#~ msgstr "Äšżāą"
-
#~ msgid "Try to find %s devices?"
#~ msgstr "Ļąńļšąįąāąöü ēķąéńöi %s ļšūėąäū?"
@@ -14021,9 +14552,6 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ msgid "i18n (important)"
#~ msgstr "i18n (āąęķą)"
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (äīįšą)"
-
#~ msgid "i18n (very nice)"
#~ msgstr "i18n (āåėüģi äīįšą)"
@@ -14049,8 +14577,5 @@ msgstr "Ķąāóźīāū’ ļšūźėąäąķķ³"
#~ "rpmdrake ēąšąē ó šżęūģå ``low memory''.\n"
#~ "rpmdrake įóäēå ļåšąēąļóų÷ąķū äēåė’ ēąįåńļ’÷żķķ’ ļīųóźó ōąéėą¢"
-#~ msgid "tie"
-#~ msgstr "ćąėüųņóź"
-
#~ msgid "woman-blond"
#~ msgstr "ęąķ÷ūķą-įėąķäūķźą"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2ae952797..65fb2b273 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -59,54 +59,54 @@ msgstr "Čēįåšåņå X ńśšāśš"
msgid "X server"
msgstr "X ńśšāśš"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Čēįåšåņå źąļąöčņåņ ķą ļąģåņņą ķą ćšąōč÷ķąņą ńč źąšņą"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Ķąńņšīéźą ķą XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Źī’ ķąńņšīéźą ķą XFree čńźąņå äą čģąņå ?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Čēļīėēāąé šąēųčšåķčåņī Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ķąńņšīéźą ńąģī ķą źąšņą \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ń õąšäóåšķī 3D óńźīšåķčå"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Źąšņąņą āč ģīęå äą čģą ļīääšśęźą ķą õąšäóåšķī 3D óńźīšåķčå ā XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ÅŹŃĻÅŠČĢÅĶŅĄĖĶO õąšäóåšķī 3D óńźīšåķčå"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,11 +151,57 @@ msgstr ""
"ĪŅĮÅĖÅĘÅŅÅ, ×Å ŅĪĀĄ Å ÅŹŃĻÅŠČĢÅĶŅĄĖĶĄ ĻĪÄÄŠŚĘŹĄ Č ŹĪĢĻŽŅŚŠŚŅ ĀČ ĢĪĘÅ ÄĄ "
"ĒĄĮČÅ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (čķńņąėąöč’ ćšąōč÷åķ äšąéāåš)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Źėčåķņńźą"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Ćšąōč÷ķą źąšņą"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ģīķčņīš"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Šąēäåėčņåėķą ńļīńīįķīńņ"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Čēõīä"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -168,32 +214,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Čēįåšåņå ģīķčņīš"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ģīķčņīš"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Źėčåķņńźą"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Īįł"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Āśšķč"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -217,11 +259,11 @@ msgstr ""
"ļīāšåäčņå ģīķčņīšą ńč.\n"
" Ąźī čģąņå ķ’źąźāč ńśģķåķč’, čēįåšåņå źīķńåšāąņčāķą ķąńņšīéźą."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Õīščēīķņąėķą ńźīšīńņ ķą āśēńņąķīā’āąķå"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Āåšņčźąėķą ńźīšīńņ ķą āśēńņąķīā’āąķå"
@@ -245,57 +287,42 @@ msgstr "16 ģčėčīķą öā’ņą (24 įčņą)"
msgid "4 billion colors (32 bits)"
msgstr "4 ģčėčąšäą öā’ņą (32 įčņą)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Šąēäåėčņåėķą ńļīńīįķīńņ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Šąēäåėčņåėķą ńļīńīįķīńņ"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Čēįåšåņå šąēäåėčņåėķą ńļīńīįķīńņ č äśėįī÷čķą ķą öāåņīāåņå"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Ćšąōč÷ķą źąšņą: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Īņźąē"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Čńźąņå ėč äą ņåńņāąņå ķąńņšīéźčņå?"
@@ -304,71 +331,71 @@ msgstr "Čńźąņå ėč äą ņåńņāąņå ķąńņšīéźčņå?"
msgid "Test of the configuration"
msgstr "Ļšīāåšźą ķą ķąńņšīéźąņą"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ņčļ źėąāčąņóšą: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ņčļ ģčųźą: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Óńņšīéńņāī ķą ģčųźąņą: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ģīķčņīš: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Õīščēīķņąėķą ńčķõšīķčēąöč’ ķą ģīķčņīšą: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Āåšņčźąėķī īļšåńķ’āąķå ķą ģīķčņīšą: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Ćšąōč÷ķą źąšņą: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Ćšąōč÷ķą ļąģåņ: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Äśėįī÷čķą ķą öāåņą: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Šąēäåėčņåėķą ńļīńīįķīńņ: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ńśšāśš: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äšąéāåš: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ļšč ńņąšņčšąķå ķą ńčńņåģąņą"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -377,165 +404,182 @@ msgstr ""
"Kīģļžņśšą āč ģīęå ąāņīģąņč÷ķī, äą āėåēå ā X ļšč ńņąšņčšąķå.\n"
"Čńźąņå ėč X äą ńå ńņąšņčšą, źīćąņī šåńņąšņčšąņå ńčńņåģąņą?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Źąźśā å ņčļśņ ķą ISDN āšśēźąņą ?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Ļśšāč ńåźņīš īņ ńņąšņčšąłč’ ńå ä’ė"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ļśšāč’ņ ńåźņīš īņ äšąéāą (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO čķńņąėąöč’"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Źśäå čńźąņå äą čķńņąėčšąņå bootloader-ą?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub čķńņąėąöč’"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO ń ņåźńņīāī ģåķž"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO ń ćšąōč÷ķī ģåķž"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Ńņąšņčšąķå īņ DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Īļöčč ķą ēąšåęäąłąņą ļšīćšąģą"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Čēļīėēāąķą ēąšåęäąłąņą ļšīćšąģą"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Bootloader čķńņąėąöč’"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ńņąšņčšąłī óńņšīéńņāī"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ķå šąįīņč ķą ńņąšč BIOS-č)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Źīģļąźņåķ"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "źīģļąźņåķ"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Āčäåī šåęčģ"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Ēąįąā’ķå ļšåäč ńņąšņčšąķåņī ķą default ä’ėą"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ļąšīėą"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Ļąšīėą (īņķīāī)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Īćšąķč÷č īļöččņå, ēąäąāąķč īņ źīģąķäķč’ šåä"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "īćšąķč÷č"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Ļī÷čńņāąķå ķą /tmp ļšč āń’źī ēąšåęäąķå"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ņī÷åķ šąēģåš ķą RAM-ļąģåņņą, ąźī å ķåīįõīäčģī (ķąģåšåķč %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Āźėž÷č ģķīćī ļšīōčėč"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Äąéņå šąēģåšą RAM-ļąģåņ ā Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Īļöč’ņą ``Īćšąķč÷č īļöččņå īņ źīģąķäķč’ šåä'' å įåēļīėåēķą įåē ļąšīėą"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Ģīė’, īļčņąéņå īņķīāī"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Ļąšīėčņå ķą ńśāļąäąņ"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Ńņąšņīāī ńśīįłåķčå"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Čē÷ąźāąķå ķą Open Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Čē÷ąźāąķå ēą ńņąšņčšąķå ķą ’äšīņī"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Ńņąšņčšąķå īņ CD ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Ńņąšņčšąķå īņ OF ?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "ĪŃ ļī ļīäšąēįčšąķå ?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -544,7 +588,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -552,155 +596,156 @@ msgstr ""
"Ņīāą ńą šąēėč÷ķčņå ēąļčńč.\n"
"Ģīęåņå äą äīįąāčņå īłå čėč äą ļšīģåķčņå ńśłåńņāóāąłčņå."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äīįąāč"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Ćīņīāī"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Ģīäčōčöčšąé"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Źąźśā ņčļ čķōīšģąöč’ čńźąņå äą ļščįąāčņå"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Äšóćą ĪŃ (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Äšóćą ĪŃ (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Äšóćą ĪŃ (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Īįšąē"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Ćėąāåķ"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Äīļśėāąķå"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "×åņåķå-ēąļčń"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Ņąįėčöą"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Īļąńåķ"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Åņčźåņ"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ļī ļīäšąēįčšąķå"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-ćīėåģčķą"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Įåē ćšąōčźą"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ļšåģąõķč ēąļčń"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Ļšąēåķ åņčźåņ ķå å šąēšåųåķ"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Ņš’įāą äą čģąņå swap-ä’ė"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ņīēč åņčźåņ āå÷å ńå čēļīėēāą"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ķąģåšåķč ńą %s %s čķņåšōåéńč"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Čģąņå ėč äšóć(č) ?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Čģąņå ėč ķ’źąźśā %s čķņåšōåéń?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ķå"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Äą"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Čķńņąėčšąķå ķą äšąéāåš ēą %s ļėąņźą %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(ģīäóė %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -711,17 +756,17 @@ msgstr ""
"Īļöččņå ńą āśā ōīšģąņ ``čģå=ńņīéķīńņ čģå2=ńņīéķīńņ2 ...''.\n"
"Ķąļščģåš: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Īļöčč ķą ģīäóėą:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Źīé %s äšąéāåš äą ļšīįāąģ ?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -740,15 +785,15 @@ msgstr ""
"īņ źī’ņī ńå ķóęäąå ? Ļī ļščķöčļ ņīāą ģīęå äą ēąįčå źīģļžņśšą āč, ķī ķ’ģą äą "
"ćī ļīāšåäč."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Ąāņīģąņč÷ķī ēąńč÷ąķå"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Ēąäąé īļöčč"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -757,55 +802,55 @@ msgstr ""
"Ēąšåęäąķåņī ķą ģīäóėą %s ķå óńļ’.\n"
"Čńźąņå ėč äą īļčņąņå īņķīāī ń äšóćč ļąšąģåņšč ?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(āå÷å ļščįąāčõ %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ņąēč ļąšīėą å ļšåźąėåķī ļšīńņą"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Ģīė’, ēąäąéņå ļīņšåįčņåėńźī čģå"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ļīņšåįčņåėńźīņī čģå ģīęå äą āźėž÷āą ńąģī ģąėźč įóźāč, ķīģåšą, `-' č `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ņīāą ļīņšåįčņåėńźī čģå å āå÷å äīįąāåķī"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ņīāą ļīņšåįčņåėńźī čģå å āå÷å äīįąāåķī"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Äīįąāč ļīņšåįčņåė"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -814,32 +859,32 @@ msgstr ""
"Āśāåäåņå ļīņšåįčņåė\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Ļščåģč ļīņšåįčņåė"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Čńņčķńźī čģå"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Ļīņšåįčņåėńźī čģå"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Ųåė"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Čźīķą"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -848,59 +893,59 @@ msgstr ""
"ļīņšåįčņåė.\n"
"Čńźąņå ėč ņąēč āśēģīęķīńņ ?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Čēįåšåņå ļīäšąēįčšął ńå ļīņšåįčņåė :"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Čēįåšåņå Windows Manager ēą ńņąšņčšąķå:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ģīė’, čēįåšåņå čēļīėēāąķ åēčź."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Āńč÷źč"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Äīįąā’ķå ķą ļīņšåįčņåė"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Ļīäåė’ķå ķą ōąéėīāå"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ņīēč ļąźåņ ņš’įāą äą įśäå īįķīāåķ\n"
"Ńčćóšķč ėč ńņå, ÷å čńźąņå äą ćī čēźėž÷čņå ?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -909,42 +954,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Äīįšå äīųėč ļšč Cracker-čņå"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Ėīųī"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńņąķäąšņķą"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Āčńīźī"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Āčńīźī"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Ļąšąķīč÷ķī"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -954,7 +999,7 @@ msgstr ""
"óļīņšåįą, ķī å ļī-÷óāńņāčņåėķī: ķå ņš’įāą äą įśäå čēļīėēāąķą ķą ģąųčķč\n"
"ńāśšēąķč ń äšóćč čėč ļī Čķņåšķåņ. Ķ’ģą äīńņśļ ń ļąšīėč."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -962,7 +1007,7 @@ msgstr ""
"Ļąšīėąņą ńåćą å āźėž÷åķą, ķī čēļīėēāąķåņī źąņī ģšåęīā źīģļžņśš ķå å "
"ļšåļīšś÷čņåėķī."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -972,13 +1017,13 @@ msgstr ""
"čēļīėēāąķ äą ńå ńāśšēāą źśģ Čķņåšķåņ źąņī źėčåķņ. Čģą ļšīāåšźč ķą "
"ńčćóšķīńņņą. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -993,7 +1038,7 @@ msgstr ""
"Ńčćóšķīńņņą ńåćą å äīńņąņś÷ķī ćīė’ģą äą ńå čēļīėēāą ńčńņåģąņą źąņī\n"
"ńśšāśš ļščåģął āšśēźč īņ ģķīćī źėčåķņč. "
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1002,32 +1047,49 @@ msgstr ""
"Čēįčšąģå 4-ņī ķčāī, ķī ńčńņåģąņą å ķąļśėķī ēąņāīšåķą.\n"
"Ķčāīņī ķą ńčćóšķīńņ å ķą ģąźńčģóģą ńč."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Īļöčč"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Čēįåšåņå ķčāī ķą ńčćóšķīńņ"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Ķčāī ķą ńčćóšķīńņ"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Čēļīėēāąéņå libsafe ēą ńśšāśšč"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Įčįėčīņåźą, źī’ņī īńčćóš’āą ēąłčņą īņ aņąźč ń ļšåļśėāąķå ķą įóōåš č ōīšģąņķč "
"ńņščķćīāå."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1052,7 +1114,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1066,7 +1128,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:915
+#: ../../bootloader.pm_.c:938
#, 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."
@@ -1081,7 +1143,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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1095,7 +1157,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1109,84 +1171,180 @@ 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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Äåńźņīļ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Ńņąšņīāī Ģåķž"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ķå ģīęåņå äą čķńņąėčšąņå bootloader ķą ä’ėą %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "ķ’ģą āśāåäåķą ļīģīł īłå.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Ķąńņšīéźą ķą ķą÷čķą ķą ńņąšņčšąķå"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ōąéė"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ōąéė/_Čēõīä"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle źąņåćīščēčšąķ ģīķčņīš"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle ģīķčņīš"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Īįčźķīāåķ ģīķčņīš"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Īįčźķīāåķ Gtk+ ģīķčņīš"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Ļóńķč Aurora ļšč ńņąšņčšąķå"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Šåęčģ ķą Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Šåęčģ ķą Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Čķńņąėčšąķå ķą ńčńņåģąņą"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Ćšåųźą"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Źīļčšąķå ķą %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Įåē ćšąōčźą"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Čēįīš ķą źėąń čķńņąėąöč’"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1195,42 +1353,69 @@ msgstr ""
"Ā ģīģåķņą čēļīėēāąņå %s źąņī ļšīćšąģą ēą ńņąšņčšąķå.\n"
"Öśźķåņå ķą Ķąńņšīé, ēą äą ńņąšņčšąņå óńņąķīā’āąłč’ ģąćüīńķčź."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Ķąńņšīé"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Ēąļąēč čēįīš ķą ļąźåņč"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Ńčńņåģåķ šåęčģ"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Ļóńķč X-Window ńčńņåģąņą ļšč ńņąšņčšąķå"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ķå, ķå čńźąģ autologin"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äą, čńźąģ autologin ń ņīāą (ļīņšåįčņåė, äåńźņīļ)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ķå ģīćą äą īņāīš’ /etc/inittab ēą ÷åņåķå: %s"
@@ -1275,68 +1460,119 @@ msgstr "Ķå ģīćą äą äīįąā’ ļīāå÷å ä’ėīāå"
msgid "Screenshots will be available after install in %s"
msgstr "Ģīęåņå äą čēįåšåņå äšóćč åēčöč, źīčņī łå įśäąņ ķąėčöå ńėåäčķńņąėąöč’ņą"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ōšąķöč’"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Įåėćčéńźą"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Ķåģńźą"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Ćšśöźą"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Ķīšāåęźą"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Āčę"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Čņąėčąķńźą"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "ńåščéķą"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Ķåčēāåńņåķ ģīäåė"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "ķīā"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Ńśšāśš"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Ńśšāśš"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Ģ’ńņī ķą ģīķņčšąķå: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Īļöčč: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Ļśšāī ńśēäąéņå backup ķą ńāīčņå äąķķč"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Ļšī÷åņåņå āķčģąņåėķī !"
@@ -1350,15 +1586,6 @@ msgstr ""
"ńåźņīšą\n"
"ńą äīńņąņś÷ķč) ā ķą÷ąėīņī ķą äčńźą"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ćšåųźą"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Ģąćüīńķčź"
@@ -1384,7 +1611,7 @@ msgid "Please click on a partition"
msgstr "Ģīė’, öśźķåņå ķą ä’ėą"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Ļīäšīįķīńņč"
@@ -1412,13 +1639,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Ļšąēåķ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Äšóćą"
@@ -1426,12 +1653,12 @@ msgstr "Äšóćą"
msgid "Filesystem types:"
msgstr "Āčäīāå ōąéėīāą ńčńņåģą:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Ńśēäąé"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Āčä"
@@ -1441,7 +1668,7 @@ msgstr "Āčä"
msgid "Use ``%s'' instead"
msgstr "Āģåńņī ņīāą čēļīėēāąéņå ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Čēņščé"
@@ -1449,79 +1676,79 @@ msgstr "Čēņščé"
msgid "Use ``Unmount'' first"
msgstr "Ļśšāī čēļīėēāąéņå 'Äåģīķņčšąķå'"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ńėåä ļšīģ’ķą ķą ņčļą ķą ä’ėą %s, āńč÷źč äąķķč āśšõó ķåćī łå įśäąņ ēąćóįåķč"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Čēįåšåņå ä’ė"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Čēįåšåņå äšóć ä’ė"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Čēėåē"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Ļšåģčķč ā Åźńļåšņåķ šåęčģ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ļšåģčķč ā Ķīšģąėåķ šåęčģ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Āśšķč"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ļšīäśėęåķčå āśļšåźč āńč÷źī ?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Čēõīä įåē ēąļčń"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Čēõīä, įåē äą ēąļčń ķą ņąįėčöąņą ķą ä’ėīāåņå ?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Čńźąņå ėč äą ēąļąēčņå ļšīģåķčņå ā /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Ąāņīģąņč÷ķī ńśēäąāąķå"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Čē÷čńņč āńč÷źī"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Īłå"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Čķōīšģąöč’ņą ēą ņāśšäč’ äčńź"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Āńč÷źč ļśšāč÷ķč ä’ėīāå ńå čēļīėēāąņ"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ķå ģīćą äą äīįąā’ ļīāå÷å ä’ėīāå"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1529,31 +1756,31 @@ msgstr ""
"Ąźī čńźąņå īłå ä’ėīāå, ģīė’ čēņščéņå åäčķ, ēą äą ģīęåņå äą ńśēäąäåņå åäčķ "
"šąēųčšåķ ä’ė"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Ēąļąēč ņąįėčöąņą ń ä’ėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Āśēńņąķīāč ņąįėčöąņą ń ä’ėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Ńļąń’āąķå ņąįėčöąņą ń ä’ėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ļšåēąšåäč ņąįėčöąņą ń ä’ėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Ąāņīģąņč÷ķī ģīķņčšąķå ķą ńģåķ’åģ ķīńčņåė"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Čēįåšåņå ōąéė"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1561,11 +1788,11 @@ msgstr ""
"Šåēåšāķąņą ņąįėčöą ķą ä’ėīāåņå ķå å ńśń ńśłąņą ćīėåģčķą\n"
"Äą ļšīäśėęą ėč āńå ļąź ?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Ļšåäóļšåęäåķčå"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1573,129 +1800,112 @@ msgstr ""
"Ńėīęåņå äčńźåņą āśā ōėīļčņī\n"
"Āńč÷źč äąķķč, ķąģčšąłč ńå āśšõó äčńźåņąņą, łå įśäąņ ēąćóįåķč"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Īļčņāąģ ńå äą ńļąń’ ņąįėčöąņą ķą ä’ėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Ļīäšīįķą čķōīšģąöč’"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Ģ’ńņī ķą ģīķņčšąķå"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Īļöčč"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Ļšīģåķč ćīėåģčķąņą"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Ļšåģåńņč"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Ōīšģąņčšąé"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ģīķņčšąé"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Ļščįąāč źśģ RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Ļščįąāč źśģ LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Äåģīķņčšąé"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Ļšåģąõķč īņ RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Ļšåģąõķč īņ LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Ģīäčōčöčšąé RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Čēļīėēāąé ēą loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Ńśēäąé ķīā ä’ė"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Ķą÷ąėåķ ńåźņīš: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ćīėåģčķą ā MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Āčä ōąéėīāą ńčńņåģą: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Ģ’ńņī ķą ģīķņčšąķå: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Ļšåäļī÷čņąķčå: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Äą ļšåģąõķą ėč loopback ōąéėą ?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Ļšīģ’ķą ņčļą ķą ä’ėą"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Źī’ ōąéėīāą ńčńņåģą čńźąņå ?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Ļšåõīä īņ ext2 źśģ ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Źśäå čńźąņå äą ģīķņčšąņå loopback-ōąéėą %s ?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Źśäå čńźąņå äą ģīķņčšąņå óńņšīéńņāī %s ?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1704,133 +1914,138 @@ msgstr ""
"loopback.\n"
"Ļśšāī ģąõķåņå loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Źśäå čńźąņå äą ģīķņčšąņå óńņšīéńņāī %s ?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Čē÷čńė’āąģ ćšąķčöčņå ķą fat ōąéėīāąņą ńčńņåģą"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ļšīģ’ķą ķą ćīėåģčķąņą"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ćīėåģčķąņą ķą ä’ėą ķå ģīęå äą įśäå ļšīģåķåķą"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Āńč÷źč äąķķč ķą ņīēč ä’ė ņš’įāą äą įśäąņ ąšõčāčšąķč"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ńėåä ļšīģ’ķą ćīėåģčķąņą ķą ä’ėą %s, äąķķčte āśšõó ķåćī łå įśäąņ ēąćóįåķč"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Čēįåšåņå ķīāą ćīėåģčķą"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ķīāą ćīėåģčķą ā MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Ķą źīé äčńź čńźąņå äą ćī ļšåģåńņčņå ?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Ńåźņīš"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Ķą źīé ńåźņīš čńźąņå äą ćī ļšåģåńņčņå?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ģåńņåķå"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ģåńņā’ ä’ėą ... "
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Čēįåšåņå ńśłåńņāóāął RAID ēą ļščįąā’ķå"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "ķīā"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Čēįåšåņå ńśłåńņāóāął LVM ēą ļščįąā’ķå"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM čģå ?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ņīēč ä’ė ķå ģīęå äą įśäå čēļīėēāąķ ēą loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Čģå ķą loopback ōąéėą: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Äąéņå čģå ķą ōąéė"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Ōąéėśņ āå÷å ńå čēļīėēāą ņī äšóć loopback, čēįåšåņå äšóć ōąéė."
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ōąéėśņ āå÷å ńśųåńņāóāą. Äą ćī čēļīėēāąģ ėč ?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Īļöčč ēą mount:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Šąēėč÷ķč"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "óńņšīéńņāī"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "ķčāī"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ćīėåģčķą ķą ļąš÷åņī"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Āķčģąķčå: ņąēč īļåšąöč’ å īļąńķą"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Źąźśā ņčļ šąēäåė’ķå ķą ä’ėīāå ?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Ņīēč ļąźåņ ņš’įāą äą įśäå īįķīāåķ\n"
"Ńčćóšķč ėč ńņå, ÷å čńźąņå äą ćī čēźėž÷čņå ?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1842,7 +2057,7 @@ msgstr ""
"Čėč čēļīėēāąņå LILO č ņī ķå šąįīņč, čėč ķå čēļīėēāąņå LILO č ķ’ģąņå ķóęäą "
"īņ /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1854,7 +2069,7 @@ msgstr ""
"Ąźī ńģ’ņąņå äą čēļīėēāąņå boot ģåķčäęśšą LILO, įśäåņå āķčģąņåėķč ļšč\n"
"ļščįąā’ķåņī ķą /boot ä’ė"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1864,44 +2079,44 @@ msgstr ""
"Ķ’ģą ēąšåęäąłą ļšīćšąģą, źī’ņī äą ģīęå äą ńå ńļšąāč ń ķåćī įåē /boot ä’ė.\n"
"Ņąźą ÷å äīįąāåņå /boot ä’ė"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ņąįėčöąņą ķą ä’ėīāåņå ķą óńņšīéńņāī %s łå įśäå ēąļčńąķą āśšõó äčńźą !"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Ņš’įāą äą šåńņąšņčšąņå, ļšåäč ļšīģåķčņå äą āė’ēąņ ā ńčėą"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ńėåä ōīšģąņčšąķå ķą ä’ėą %s, āńč÷źč äąķķč āśšõó ķåćī łå įśäąņ ēąćóįåķč"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ōīšģąņčšąķå"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ōīšģąņčšąķå ķą loopback ōąéėą %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ōīšģąņčšąķå ķą ä’ėą %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Ńźščé ōąéėīāåņå"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Ļšåģåńņč ōąéėīāåņå ķą ķīā ä’ė"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1910,83 +2125,83 @@ msgstr ""
"Äčšåźņīšč’ņą %s āå÷å ńśäśšęą ķ’źąźāč äąķķč\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Ļšåģåńņč ōąéėīāåņå ķą ķīā ä’ė"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Źīļčšąķå ķą %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Čēņščāąķå ķą %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Óńņšīéńņāī: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Įóźāą ķą óńņšīéńņāīņī ļīä DOS: %s (ļšīńņī ļšåäļīėīęåķčå)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Āčä: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Čģå: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Ķą÷ąėī: ńåźņīš %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Šąēģåš: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s ńåźņīšą"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Īņ öčėčķäśš %d äī öčėčķäśš %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Ōīšģąņčšąķ\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ķåōīšģąņčšąķ\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Ģīķņčšąķ\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1995,7 +2210,7 @@ msgstr ""
"Loopback ōąéė(īāå):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2003,27 +2218,27 @@ msgstr ""
"Ä’ė, źīéņī ńå ńņąšņčšą ļī ļīäšąēįčšąķå\n"
" (ēą MS-DOS boot, ķå ēą lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Ķčāī %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Šąēģåš ķą ļąš÷åņī %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äčńźīāå %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Čģå ķą loopback ōąéėą: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2035,7 +2250,7 @@ msgstr ""
"Äšąéāåš-ä’ė, ģīęå įč ņš’įāą\n"
"ņš’įāą äą ćī īńņąāčņå.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2047,64 +2262,59 @@ msgstr ""
"čāčöą ķą ä’ėą å ēą äāīéķī\n"
"ńņąšņčšąķå ķą ńčńņåģąņą āč.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Šąēģåš: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ćåīģåņšč’: %s öčėčķäšč, %s ćėąāč, %s ńåźņīšč\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Čķōīšģąöč’: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-äčńźīāå %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ņčļ ķą ņąįėčöąņą ń ä’ėīāå: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ķą ųčķą %d ąäšåń %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Īļöčč: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Āčä ōąéėīāą ńčńņåģą: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Ļąšīėąņą å ļšåźąėåķī ļšīńņą (ņš’įāą äą įśäå äśėćą ļīķå %d ńčģāīėą)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ļąšīėčņå ķą ńśāļąäąņ"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2156,23 +2366,23 @@ msgstr "NIS äīģåéķ"
msgid "Search servers"
msgstr "DNS ńśšāśš"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ōīšģąņčšąķå īņ %s ļšīāąėåķī"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "ķå ēķąģ źąź äą ōīšģąņčšąģ %s ā ņčļ %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "ćšåųźą ļšč äåģīķņčšąķåņī ķą %s: %s"
@@ -2189,33 +2399,33 @@ msgstr ""
msgid "server"
msgstr "ńśšāśš"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ķå ģīęåņå äą čēļīėēāąņå JFS ēą ä’ė ļī-ģąėśź īņ 16 ĢĮ"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ķå ģīęåņå äą čķńņąėčšąķå ReiserFS ķą ä’ė ļī-ģąėśź īņ 32 ĢĮ"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Ņī÷źčņå ķą ģīķņčšąķå ņš’įāą äą ēąļī÷āąņ ń /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Āå÷å čģą ä’ė ń ņąēč ģ’ńņī ķą ģīķņčšąķå %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ķå ģīęåņå äą čēļīėēāąņå LVM ėīćč÷åńźč ņčļ ēą ģ’ńņī ķą ģīķņčšąķå %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ņąēč äčšåźņīšč’ ņš’įāą äą īńņąķå ā šąģźčņå ķą root ōąéėīāąņą ńčńņåģą."
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2224,26 +2434,26 @@ msgstr ""
"Ķóęäąåņå ńå īņ čńņčķńźą ōąéėīāą ńčńņåģą (ext2, reiserfs) ēą ņąēč ņī÷źą ķą "
"ģīķņčšąķå\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ķå ģīęåņå äą čēļīėēāąņå LVM ėīćč÷åńźč ņčļ ēą ģ’ńņī ķą ģīķņčšąķå %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ķ’ģą äīńņąņś÷ķī ģ’ńņī ēą ąāņīģąņč÷ķī ēąåģąķå"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ćšåųźą ļšč īņāąš’ķå ķą %s ēą ēąļčń: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2252,258 +2462,262 @@ msgstr ""
"ńśēäąäåķč ķīāč ōąéėīāč ńčńņåģč. Ģīė’ ļšīāåšåņå ņāśšäč’ ńč äčńź ńč ēą "
"ļšč÷čķąņą ēą ņīēč ļšīįėåģ"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Ķ’ģąņå ķčźąźāč ä’ėīāå!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Čēļīėēāąé ąāņīģąņč÷ķī ēąńč÷ąķå"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Īįł"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Ļąģåņ (DMA) ķą źąšņąņą"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Ōīšģąņčšąķå"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Ļšīģ’ķč ņčļą"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Čēõīä"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ļīģīł"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Ļīģīł"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Ļīģīł/_Īņķīńķī..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Ģīäóė"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Ļąģåņ (DMA) ķą źąšņąņą"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Īņźąē"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Ģīäóė"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Īļčńąķčå"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Čäåķņčōčźąöč’"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Čēįåšåņå ōąéė"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway óńņšīéńņāī"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 įóņīķą"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Čēõīä"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ļīģīł"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ļīģīł"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ļīģīł/_Īņķīńķī..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Ąāņīģąņč÷ķī ēąńč÷ąķå"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ēąńč÷ąķå ķą äčńźīāåņå"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Āčę õąšäóåšķąņą čķōīšģąöč’"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Ķąńņšīéźą ķą ģčųźą"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Ļīźąęč čķōīšģąöč’ņą"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Ķąńņšīéźą ķą ģčųźą"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "ēąńå÷åķ ķą ļīšņ %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Ģīė’ čē÷ąźąéņå"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d ńåźóķäč"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Čēņščāąķå ķą ļščķņåšą \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Čēļīėēāąé ąāņīģąņč÷ķī ēąńč÷ąķå"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Īįł"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Ąāņīģąņč÷ķī ēąńč÷ąķå"
+msgid "Card model :"
+msgstr "Ļąģåņ (DMA) ķą źąšņąņą"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Ļšīģ’ķč ņčļą"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ōīšģąņčšąķå"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4101,7 +4315,7 @@ msgstr ""
"Öśźķåņå \"Īņģ’ķą\", ēą äą īņģåķčņå ņąēč īļåšąöč’ įåē ēąćóįą äą äąķķčņå č\n"
"ä’ėīāåņå ńśłåńņāóāąłč ķą ņīēč ņāśšä äčńź."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4109,7 +4323,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -4138,20 +4352,20 @@ msgstr ""
"\n"
"Ķąčńņčķą ėč čńźąņå äą čķńņąėčšąņå ņåēč ńśšāśšč ?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Ķå ģīęåņå äą čēļīėēāąņå broadcast įåē NIS äīģåéķ"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ńėīęåņå FAT ōīšģąņčšąķą äčńźåņą ā óńņšīéńņāī %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Ņąēč äčńźåņą ķå å ōīšģąņčšąķą ķą FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4159,7 +4373,7 @@ msgstr ""
"Ēą äą čēļīėēāąņå ēąļąēåķ čēįīš ķą ļąźåņč, ńņąšņčšąéņå čķńņąėąöč’ņą ń ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Ćšåųźą ļšč ÷åņåķåņī ķą ōąéėą %s"
@@ -4198,7 +4412,7 @@ msgstr ""
"\n"
"Äą ļšīäśėęą ėč āńå ļąź ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ņš’įāą äą čģąņå FAT ä’ė ģīķņčšąķ ā /boot/efi"
@@ -4377,12 +4591,12 @@ msgstr ""
"Ļī’āč ńå ćšåųźą, ķī ķå ēķąģ źąź äą ńå ńļšąā’ ń ķå’ äåėčźąņķī.\n"
"Ģīęåņå äą ļšīäśėęčņå ķą ńāīé ščńź."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóįėčšąé ņī÷źąņą ķą ģīķņčšąķå %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4394,12 +4608,12 @@ msgstr ""
"Ļšīāåšåņå źīģļąźņ äčńźą ķą čķńņąėčšąķč’ źīģļžņśš čēļīėēāąéźč \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Äīįšå äīųėč ā %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ķ’ģą ōėīļč óńņšīéńņāī"
@@ -4409,7 +4623,7 @@ msgstr "Ķ’ģą ōėīļč óńņšīéńņāī"
msgid "Entering step `%s'\n"
msgstr "Ķąāėčēąģ ā åņąļ `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4421,80 +4635,80 @@ msgstr ""
"Ēąöåėņą,\n"
"ķąņčńķåņå 'F1', źīćąņī ńņąšņčšąņå īņ CDROM č āśāåäåņå 'ņåüņ'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Źėąń čķńņąėąöč’"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Ģīė’, čēįåšåņå åäčķ īņ ńėåäķčņå źėąńīāå ķą čķńņąėąöč’:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Čēįīš ķą ćšóļą ļąźåņč"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Čēįčšąķå ķą ļąźåņč åäčķ ļī åäčķ"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Īįłą ćīėåģčķą: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Ėīų ļąźåņ"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Čģå: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Āåšńč’: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Ćīėåģčķą: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Āąęķīńņ: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ķå ģīęåņå äą īńņąāčņå ļąźåņą ķåģąšźčšąķ, ēąłīņī ķ’ģąņå ģ’ńņī äą ćī "
"čķńņąėčšąņå"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Ńėåäķčņå ļąźåņč łå įśäąņ čķńņąėčšąķč"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Ńėåäķčņå ļąźåņč łå įśäąņ ļšåģąõķąņč"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Ķå ģīęåņå äą īņįåėåęåņå/äåīņįåėåęåņå ņīēč ļąźåņ"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ņīāą å ķóęåķ ļąźåņ, ķå ģīęå äą įśäå ķåģąšźčšąķ"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Ķå ģīęåņå äą īńņąāčņå ņīēč ļąźåņ ķåģąšźčšąķ. Ņīé āå÷å å čķńņąėčšąķ"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4502,74 +4716,74 @@ msgstr ""
"Ņīēč ļąźåņ ņš’įāą äą įśäå īįķīāåķ\n"
"Ńčćóšķč ėč ńņå, ÷å čńźąņå äą ćī čēźėž÷čņå ?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ķå ģīęåņå äą čēźėž÷čņå ņīēč ļąźåņ. Ņīé ņš’įāą äą įśäå īįķīāåķ"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Ļīźąęč ąāņīģąņč÷ķī īņįåė’ēąķčņå ļąźåņč"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Čķńņąėčšąé"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Ēąšåäč/Ēąļąēč ķą äčńźåņą"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Īįķīā’āąķå ķą čēįīšą ķą ļąźåņč"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Ģčģčķąėķą čķńņąėąöč’"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Čķńņąėčšąģ"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Ļšåńģ’ņąķå"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Īńņąāąłī āšåģå "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Ģīė’, čē÷ąźąéņå, ļīäćīņā’ķå ķą čķńņąėąöč’ņą"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d ļąźåņą"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Čķńņąėčšąķå ķą ļąźåņą %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ļščåģč"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Īņźąęč"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4585,17 +4799,17 @@ msgstr ""
"Ąźī ćī ķ’ģąņå, ķąņčńķåņå Īņģ’ķą, ēą äą čēįåćķåņå čķńņąėčšąķåņī īņ ņīēč CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Äą ļšīäśėęą ėč āńå ļąź ?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Ļī’āč ńå ćšåųźą ļšč ļīšś÷āąķåņī ķą ļąźåņčņå:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Ļī’āč ńå ćšåųźą ļšč čķńņąėčšąķå ķą ļąźåņčņå:"
@@ -4916,108 +5130,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Źėąāčąņóšą"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Ģīė’, čēįåšåņå ļīäšåęäąķå ķą źėąāčąņóšąņą."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Åņī ļśėåķ ńļčńśź ķą äīńņšśļķčņå źėąāčąņóšč"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Źąźśā źėąń čķńņąėąöč’ ęåėąåņå ?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Čķńņąėčšąé/Īįķīāč"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Ņīāą ķīāą čķńņąėąöč’ ėč å čėč īįķīā’āąķå ?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Ļšåļīšś÷čņåėķą"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Åźńļåšņķą"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Īįķīā’āąķå"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Īįķīā’āąķå ķą čēįīšą ķą ļąźåņč"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Ģīė’, čēįåšåņå ņčļ ķą ģčųźąņą."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Ļīšņ ķą ģčųźąņą"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ģīė’, čēįåšåņå źśģ źīé ńåščåķ ļīšņ å ńāśšēąķą ģčųźąņą āč."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Čģčņąöč’ ķą įóņīķč"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Čģčņąöč’ ķą 2 įóņīķą"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Čģčņąöč’ ķą 3 įóņīķą"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Ķąńņšīéźą ķą PCMCIA źąšņčņå ..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Ķąńņšīéźą ķą IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ķ’ģą ä’ėīāå ķą šąēļīėīęåķčå"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Ļšåņśšńāąķå ķą ä’ėīāåņå ēą ķąģčšąķå ķą ņī÷źč ķą ģīķņčšąķå"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Čēįåšåņå ģåńņą ēą ģīķņčšąķå"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5033,7 +5247,7 @@ msgstr ""
"Äšóćī šåųåķčå å äą ēąįšąķčņå ķą DrakX ļīļšąā’ ņąįėčöąņą ń ä’ėīāå.\n"
"(ćšåųźąņą å %s)\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5041,7 +5255,7 @@ msgstr ""
"DiskDrake ķå óńļ’ äą šąē÷åņå ļšąāčėķī ņąįėčöąņą ķą ä’ėīāåņå.\n"
"Ļšīäśėęčņå ķą ńīįńņāåķ ščńź !"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5050,70 +5264,70 @@ msgstr ""
"ēą äą ńņąšņčšąņå ńčńņåģąņą ńč, łå ņš’įāą äą ńśēäąäåņå ńņąšņčšąłī ļīėå ā "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Ķå å ķąģåšåķ ćėąāåķ ä’ė ēą ķąäćšąęäąķå"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Root ä’ė"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Źīé å root-ä’ėśņ (/) ķą ńčńņåģąņą āč ?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ķąėąćą ńå šą šåńņąšņčšąņå, ļšåäč ģīäčōčźąöččņå äą ļšåäčēāčźąņ åōåźņ"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Čēįåšåņå ä’ėīāåņå, źīčņī čńźąņå äą ōīšģąņčšąņå"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Ļšīāåšźą ēą ėīųč ńåźņīšč ?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Ōīšģąņčšąķå ķą ä’ėowe"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńśēäąāąķå č ōīšģąņčšąķå ķą ōąéėą %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Ķ’ģą äīńņąņś÷ķī swap ēą ļščźėž÷āąķå ķą čķńņąėąöč’ņą, ģīė’ äīįąāåņå ģąėźī"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ņśšń’ ķąėč÷ķč ļąźåņč"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Ņśšń’ ķąėč÷ķč ļąźåņč"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Ņśšń’ ļąźåņč ēą īįķīā’āąķå"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ķå ģīęåņå äą īńņąāčņå ņīēč ļąźåņ ķåģąšźčšąķ. Ņīé āå÷å å čķńņąėčšąķ"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Ņśšń’ ļąźåņč ēą īįķīā’āąķå"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5121,7 +5335,7 @@ msgid ""
msgstr ""
"Ńčńņåģąņą āč ķ’ģą äīńņąņś÷ķī ģ’ńņī ēą čķńņąėąöč’ čėč īįķīā’āąķå (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5129,51 +5343,51 @@ msgstr ""
"Ģīęå čēįåšåņå ēąšåęäąķå čėč ēąļčń ķą čēįīšą ķą ļąźåņč ķą ōėīļč.\n"
"Ōīšģąņśņ å ńśłč’ņ źąņī auto_install ćåķåščšąķčņå äčńźåņč."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Ēąšåäč īņ äčńźåņą"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Ēąšåęäąķå īņ äčńźåņą"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Čēįīš ķą ļąźåņč"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Ńėīęåņå äčńźåņą ńśäśšęąłą čēįīš ķą ļąźåņč"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Ēąļąēč ķą äčńźåņą"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Čēįšąķąņą ćīėåģčķą å ļī-ćīė’ģą īņ äīńņśļķīņī ļšīńņšąķńņāī"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Čēįåšåņå ļąźåņč ēą čķńņąėčšąķå"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Åäčķ ģīģåķņ"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -5192,11 +5406,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM īēąćėąāåķ \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Ļīäćīņā’ģ čķńņąėąöč’ņą"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5205,21 +5419,21 @@ msgstr ""
"Čķńņąėčšąģ ļąźåņ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Ńėåä čķńņąėąöčīķķą ķąńņšīéźą"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ńėīęåņå ńņąšņčšąłąņą äčńźåņą ā óńņšīéńņāī %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ńėīęåņå äčńźåņą ēą īįķīā’āąķå ķą ģīäóėč ā óńņšīéńņāī %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5285,7 +5499,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5297,178 +5511,187 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńāśšēāąķå ń īćėåäąėķč’ ńśšāśš ēą ļīėó÷ąāąķå ķą ńļčńśźą ń ļąźåņčņå"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Čēįåšåņå īćėåäąėåķ ńśšāśš,īņ źīéņī äą ļīėó÷čņå ļąźåņčņå"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńāśšēāąķå ń īćėåäąėķč’ ńśšāśš ēą ļīėó÷ąāąķå ķą ńļčńśźą ń ļąźåņčņå"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Źī’ å āšåģåāąņą āč ēīķą ?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Õąäšóåšķč’ņ āč ÷ąńīāķčź å ķąńņšīåķ ļī GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Ąāņīģąņč÷ķą ńčķõšīķčēąöč’ ķą āšåģåņī (čēļīėēāą NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP ńśšāśš"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Īņäąėå÷åķ CUPS ńśšāśš"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Ķ’ģą ļščķņåš"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Čģąņå ėč äšóć(č) ?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Īįīįłåķčå"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Ģčųźą"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "׹ńīāą ēīķą"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Ļščķņåš"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN źąšņą"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Ēāóźīāą źąšņą"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV źąšņą"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Ļšåģąõķč Windows(TM)"
+msgid "Windows Domain"
+msgstr "NIS äīģåéķ"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Ėīźąėķč ōąéėīāå"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Āśāåäåņå ļąšīėą ēą root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Įåē ļąšīėą"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ļąšīėąņą å ļšåźąėåķī ļšīńņą (ņš’įāą äą įśäå äśėćą ļīķå %d ńčģāīėą)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Čäåķņčōčźąöč’"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP ąóņīščēąöč’"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Įąēīā dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP ńśšāśš"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS ąóņīščēąöč’"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS äīģåéķ"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS ńśšāśš"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP ąóņīščēąöč’"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS äīģåéķ"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP ńśšāśš"
+msgid "Authentication Windows Domain"
+msgstr "LDAP ąóņīščēąöč’"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Čģå ķą äīģåéķą"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5497,19 +5720,19 @@ msgstr ""
"Ąźī čńźąņå äą ńśēäąäåņå bootdisk ēą āąųąņą ńčńņåģą, ļīńņąāåņå äčńźåņą ā\n"
"ļśšāīņī óńņšīéńņāī č ķąņčńķåņå \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Ļśšāī ōėīļč óńņšīéńņāī"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Āņīšī ōėīļč óńņšīéńņāī"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Ļšåńźī÷č"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5535,7 +5758,7 @@ msgstr ""
"ńėó÷ąč ķą ńščā. Čńźąņå ėč äą ńśēäąģ bootdisk ēą ńčńņåģąņą āč ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5544,28 +5767,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ńśęąė’āąģ ķ’ģą ōėīļč"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Čēįåšåņå ōėīļč äšąéā,źśäåņī äą ķąļšąāčņå ńņąšņčšąłą äčńźåņą"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ńėīęåņå äčńźåņą ā óńņšīéńņāī %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Ńśēäąāąķå ķą ńņąšņčšąłą äčńźåņą"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Ļīäćīņīāźą ķą bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5577,11 +5800,11 @@ msgstr ""
"Čķńņąėąöč’ņą łå ļšīäśėęč, ķī łå ņš’įāą\n"
"äą čļīėēāąņå BootX, ēą äą ńņąšņčšąņå ģąųčķąņą ńč"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Čńźąņå ėč äą čēļīėēāąņå aboot ?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5589,15 +5812,15 @@ msgstr ""
"Ćšåųźą ļšč čķńņąėčšąķå ķą aboot, \n"
"äą ńå īļčņąģ ėč äą ļšīäśėęą čķńņąėąöč’ņą äīšč, ąźī ņīāą óķčęņīęč ļśšāč’ ä’ė ?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Čķńņąėčšąķå ķą bootloader"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Čķńņąėąöč’ņą ķą bootloader ļšīāąėåķą. Ļī’āč ńå ńėåäķąņą ćšåųźą:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5614,17 +5837,17 @@ msgstr ""
" Ńėåä źīåņī ķąļčųåņå: shut-down\n"
"Ļšč ńėåäāąłīņī šåńņąšņčšąķå įč ņš’įāąėī äą āčäåņå ļīäńźąēźąņą."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńėīęåņå ļšąēķą äčńźåņą ā óńņšīéńņāī %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Ļīäćīņā’ģ äčńźåņą ń ąāņīģąņč÷ķą čķńņąėąöč’"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5634,7 +5857,7 @@ msgstr ""
"\n"
"Ķąčńņčķą ėč čńźąņå äą čēėåēåņå ńåćą ?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5666,15 +5889,15 @@ msgstr ""
"Čķōīšģąöč’ ēą ķąńņšīéāąķå ķą ńčńņåģąņą āč ģīęåņå äą ķąģåščņå ā\n"
"ńėåäčķńņąėąöčīķķąņą ćėąāą īņ Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Ļīäćīņāč äčńźåņą ēą ąāņīģąņč÷ķą čķńņąėąöč’"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5688,15 +5911,15 @@ msgstr ""
"\n"
"Ģīęå įč čńźąņå äą ļīāņīščņå čķńņąėąöč’ņą.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Ąāņīģąņčēčšąķ"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ļīāņīšč"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Ēąļąēč čēįīš ķą ļąźåņč"
@@ -5723,398 +5946,461 @@ msgstr ""
msgid "Choose a file"
msgstr "Čēįåšåņå ōąéė"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Ķąļšåäķč÷ąā"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Ļšåäčųåķ"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Ņåźńņ"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Ėīų čēįīš, īļčņąéņå īņķīāī\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Āąųč’ņ čēįīš ? (ļī ļīäšąēįčšąķå å %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Āąųč’ņ čēįīš ? (ļī ļīäšąēįčšąķå å %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Īļöčč: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Čńźąņå ėč äą čēļīėēāąņå aboot ?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Āąųč’ņ čēįīš ? (ļī ļīäšąēįčšąķå å %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "×åųźą (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Ķåģńźą"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Äāīšąź"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Čńļąķńźą"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ōčķėąķäńźą"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ōšåķńźą"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ķīšāåęźą"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Ļīėńźą"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Šóńźą"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Ųāåäńźą"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UŹ źėąāčąņóšą"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US źėąāčąņóšą"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Ąėįąķńźą"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Ąšģåķńźą (ńņąšą)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Ąšģåķńźą (ļčųåłą ģąųčķą)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Ąšģåķńźą (ōīķåņč÷åķ)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Ąēåšįąéäęąķńźą (ėąņčķčöą)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Įåėćčéńźą"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "āźėž÷č"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ąšģåķńźą (ōīķåņč÷åķ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Įśėćąšńźą"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Įšąēčėńźą (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Åńņīķńźą"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Įåėąšóńźą"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Ųāåéöąšńźą (ķåģńźą ķąšåäįą)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Ųāåéöąšńźą (ōšåķńźč ķąšåäįą)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "×åųźą (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Ķåģńźą (įåē ķåšąįīņåłč źėąāčųč)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Äąņńźą"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Äāīšąź (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Äāīšąź (Ķīšāåęźą)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Äāīšąź (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Åńņīķńźą"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Ćšóēčķńźą (\"Šóńźą\" ķąšåäįą)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Ćšóēčķńźą (\"Ėąņčķńźą\" ķąšåäįą)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Ćšśöźą"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Óķćąšńźą"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Õśšāąņńźą"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Čēšąåėńźą"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Čēšąåėńźą (ōīķåņč÷ķą)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Čšąķńźą"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Čńėąķäńźą"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Čņąėčąķńźą"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "ßļīķńźą 106 źėąāčųą"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Źīšåéńźą źėąāčąņóšą"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ėąņčķīąģåščźąķńźą"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Ėąņāčéńźą"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Ėčņāčéńźą AZERTY (ńņąšą)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Ėčņāčéńźą AZERTY (ķīāą)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ėčņāčéńźą \"÷čńėīāą šåäčöą\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ėčņāčéńźą \"ōīķåņč÷åķ\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Ėąņāčéńźą"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Ģąźåäīķńźą"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Ńšśįńźą (źčščėčöą)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Õīėąķäńźą"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Ļīėńźą (QWERTY ķąšåäįą)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Ļīėńźą (QWERTZ ķąšåäįą)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Ļīšņóćąėńźą"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Źąķąäńźą (Źāåįåź)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Šóģśķńźą (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Šóģśķńźą (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Šóńźą (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Ńėīāåķńźą"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Ńėīāąųźą (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Ńėīāąųźą (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Ńšśįńźą (źčščėčöą)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Ņąįėčöą"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Ņąéāąķńźą źėąāčąņóšą"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Ņąäęčźčńņąķńźą źėąāčąņóšą"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Ņóšńźą (ņšąäčöčīķåķ \"F\" ģīäåė)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Ņóšńźą (ģīäåšåķ \"Q\" ģīäåė)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Óźšąčķńźą"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US źėąāčąņóšą (ģåęäóķąšīäķą)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Āčåņķąģńźą \"÷čńėīāą šåäčöą\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Žćīńėąāńźą (ėąņčķčöą)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -6123,37 +6409,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\"Īģąćüīńąķ źšść\" īņ ģīķņčšąķč’: %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Ļśšāī ļšåģąõķč ėīćč÷ķčņå ä’ėīāī\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Ņåėåōīķåķ ķīģåš"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Ōīšģąņčšąķå ķą ä’ėīāå"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -6256,51 +6542,43 @@ msgstr "ķ’ģą"
msgid "No mouse"
msgstr "Įåē ģčųźą"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Ēą äą ąźņčāčšąņå ģčųźąņą ńč,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "ĮÓŅĶÅŅÅ ŅĪĻ×ÅŅĪ !"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Ēąāśšųč"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Ńėåäāął ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Ļšåäčųåķ"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Āńč÷źī ļšąāčėķī ėč å ?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Čķōīšģąöč’"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Šąēųčšč äśšāīņī"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Čē÷čńņč äśšāīņī"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Ļšåāźėž÷āąķå ģåęäó ķīšģąėķī č ńīšņčšąķå ļī ćšóļč"
@@ -6323,6 +6601,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "čēļīėēāąé DHCP"
@@ -6350,7 +6632,7 @@ msgstr ""
"Ķå įåųå ķąģåšåķ ģšåęīā ąäąļņåš ā ńčńņåģąņą āč.\n"
"Ķå ģīęåņå äą ķąńņšīčņå ņąźśā āčä āšśēźą."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Čēįåšåņå ģšåęīā čķņåšōåéń"
@@ -6363,7 +6645,7 @@ msgstr "Ģīė’, čēįåšåņå źīé ģšåęīā ąäąļņåš äą čēļīėēāąģ ēą āšśēźą źśģ Čķņåšķåņ"
msgid "no network card found"
msgstr "ķå å īņźščņą ģšåęīāą źąšņą"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ķąńņīéźą ķą ģšåęąņą"
@@ -6379,7 +6661,7 @@ msgstr ""
"Host čģåņī ņš’įāą äą įóäå ķąļśėķī źāąėčōčöčšąķī čģå,\n"
"źąņī ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Čģå ķą õīńņ:"
@@ -6407,7 +6689,7 @@ msgstr "Źąźśā å ņčļśņ ķą ISDN āšśēźąņą ?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6532,43 +6814,43 @@ msgstr "Ģīė’, čēįåšåņå ńåščåķ ļīšņ źśģ źīéņī ńāśšēąķ ģīäåģśņ āč."
msgid "Dialup options"
msgstr "Īļöčč ēą čēįčšąķå ļī ņåėåōīķ"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Čģå ķą āšśēźąņą"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Ņåėåōīķåķ ķīģåš"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Ļīņšåįčņåėńźī čģå"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Įąēčšąķą ķą ńźščļņ"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Įąēčšąķą ķą ņåšģčķąė"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Čģå ķą äīģåéķą"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Ļśšāč DNS ńśšāśš (ļī čēįīš)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Āņīšč DNS ńśšāśš (ļī čēįīš)"
@@ -6680,13 +6962,13 @@ msgstr "Čēįåšåņå ļšīōčė ēą ķąńņšīéźą"
msgid "Use auto detection"
msgstr "Čēļīėēāąé ąāņīģąņč÷ķī ēąńč÷ąķå"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Šąēųčšåķč ōóķźčöčč"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Īņźščāąķå ķą óńņšīéńņāą ..."
@@ -6799,7 +7081,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6810,7 +7092,7 @@ msgstr ""
"Ļšīńņī ļščåģåņå, ēą äą īńņąāčņå óńņšīéńņāīņī ķąńņšīåķī.\n"
"Ļīļšąāźąņą ķą ļīėåņąņą ļī-äīėó łå ļšåēąļčųå ņąēč ķąńņšīéźą."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6820,43 +7102,43 @@ msgstr ""
"Āń’źī óńņšīéńņāī ņš’įāą äą įśäå āśāåäåķī źąņī IP ąäšåń\n"
"ń ņī÷źīāī-äåńåņč÷ķī īēķą÷åķčå (ķąļščģåš, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Ķąńņšīéźą ķą ģšåęīāīņī óńņšīéńņāī %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (äšąéāåš %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ąäšåń"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ģšåęīāą ģąńźą"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Ąāņīģąņč÷åķ IP ąäšåń"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Ļóńķąņ ļšč ńņąšņčšąķå"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ąäšåńśņ ņš’įāą äą įśäå āśā ōīšģąņ 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6868,40 +7150,40 @@ msgstr ""
"źąņī ``mybox.mylab.myco.com''.\n"
"Ģīęåņå ńśłī äą āśāåäåņå IP ąäšåńą ķą Āąųč’ gateway, ąźī čģąņå ņąźśā"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS ńśšāśš"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway óńņšīéńņāī"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Ķąńņšīéźą ķą proxy"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Ļšīńėåä’āąķå ķą ID ķą ģšåęīāąņą źąšņą (ļīėåēķī ļšč ėąļņīļč)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy-ńśšāśšą ņš’įāą äą å http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy-ńśšāśšą ņš’įāą äą å ftp://..."
@@ -6913,7 +7195,7 @@ msgstr "Ķąńņšīéźą ķą Čķņåšķåņ"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Čńźąņå ėč ńåćą äą īļčņąņå āšśēźą źśģ Čķņåšķåņ ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Čēļšīįāąķå ķą āšśēźąņą..."
@@ -6941,43 +7223,43 @@ msgstr "Ķąńņšīéźą ķą āšśēźąņą"
msgid "Please fill or check the field below"
msgstr "Ģīė’, ļīļśėķåņå čėč ļšīāåšåņå ļīėåņī ļī-äīėó"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ ķą źąšņąņą"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Ļąģåņ (DMA) ķą źąšņąņą"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO ķą źąšņąņą"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 ķą źąšņąņą"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 ķą źąšņąņą"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Ėč÷ķč’ āč ņåėåōīķåķ ķīģåš"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Čģå ķą äīńņąā÷čźą (ķąļš. provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Ņåėåōīķåķ ķīģåš ķą äīńņąā÷čźą"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "1-āč DNS ķą äīńņąā÷čźą (ļī ęåėąķčå)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "2-šč DNS ķą äīńņąā÷čźą (ļī ęåėąķčå)"
@@ -6985,28 +7267,28 @@ msgstr "2-šč DNS ķą äīńņąā÷čźą (ļī ęåėąķčå)"
msgid "Choose your country"
msgstr "Čēįåšåņå ńņšąķąņą ńč"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Šåęčģ ķą ķąįčšąķå"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Ńźīšīńņ ķą āšśēźąņą"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Timeout ķą āšśēźąņą (ā ńåź)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Čģå ķą ąźąóķņą (ļīņåįčņåėńźī čģå)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Ļąšīėą ķą ąźąóķņą"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7042,7 +7324,7 @@ msgstr "Ėīų backup-ōąéė"
msgid "Error writing to file %s"
msgstr "Ćšåųźą ļšč ēąļčń āśā ōąéėą %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7089,7 +7371,7 @@ msgstr "LPD - Ėčķååķ Ļščķņåšåķ Äåģīķ"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ļå÷ąņąé, Įåē Īļąųźą"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7117,7 +7399,7 @@ msgstr "Īņäąėå÷åķ ļščķņåš"
msgid "Printer on remote CUPS server"
msgstr "Ļščķņåš ķą īņäąėå÷åķ CUPS ńśšāśš"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Ļščķņåš ķą īņäąėå÷åķ LPD ńśšāśš"
@@ -7133,7 +7415,7 @@ msgstr "Ļščķņåš ķą SMB/Windows 95/98/NT ńśšāśš"
msgid "Printer on NetWare server"
msgstr "Ļščķņåš ķą NetWare ńśšāśš"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Āśāåäåņå URI ķą ļå÷ąņąłī óńņšīéńņāī"
@@ -7141,112 +7423,112 @@ msgstr "Āśāåäåņå URI ķą ļå÷ąņąłī óńņšīéńņāī"
msgid "Pipe job into a command"
msgstr "Ļšåźąšąé šąįīņąņą ļšåē źīģąķäą"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Ķåčēāåńņåķ ģīäåė"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Ėīźąėåķ ļščķņåš"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Īņäąėå÷åķ ļščķņåš"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Ćšåųźą ļšč ēąļčń āśā ōąéėą %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(ķą %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(ķą ņąēč ģąųčķą)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ķą CUPS ńśšāśšą"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Ļī ļīäšąēįčšąķå)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Čēįåšåņå āšśēźą źśģ ļščķņåšą"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Źąź å ńāśšēąķ ļščķņåšśņ ?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -7258,17 +7540,21 @@ msgstr ""
"ņóź; ņåēč ļščķņåšč łå įśäąņ ēąńå÷åķč ąāņīģąņč÷ķī. Ģīė’,\n"
"čēįåšåņå \"Ļščķņåš ķą īņäąėå÷åķ CUPS ńśšāśš\" ā ņīēč ńėó÷ąé."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Ķąńņšīéźą"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Īņäąėå÷åķ CUPS ńśšāśš"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
#, fuzzy
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
@@ -7291,7 +7577,7 @@ msgstr ""
"åāåķņóėąķī ķīģåš ķą ļīšņ ķą CUPS ńśšāśšą, ēą äą āēåģåņå čķōīšģąöč’\n"
"ēą ļščķņåšą īņ ńśšāśšą, čķą÷å īńņąāåņå ļīėåņī ļšąēķī."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
#, fuzzy
msgid ""
"\n"
@@ -7309,33 +7595,33 @@ msgstr ""
"ēąįšąā’éņå äą šåńņąšņčšąņå CUPS ńėåä ņīāą (źīģąķäą: \"service\n"
"cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ąäšåńśņ ņš’įāą äą įśäå āśā ōīšģąņ 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Ķīģåšśņ ķą ļīšņą ņš’įāą äą å ö’ėī ÷čńėī !"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP ķą CUPS ńśšāśšą"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ļīšņ"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Ąāņīģąņč÷ķą ķąńņšīéźą ķą CUPS"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Äīįąāč ļščķņåš"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7348,37 +7634,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ėīźąėåķ ļščķņåš"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Īņäąėå÷åķ ļščķņåš"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Ėīźąėåķ ļščķņåš"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7392,53 +7709,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Čēļīėēāąé ąāņīģąņč÷ķī ēąńč÷ąķå"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Čģå ķą īņäąėå÷åķ ļščķņåš"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ņåńņāąķå ļīšņīāåņå"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Ļščķņåš ķą SMB/Windows 95/98/NT ńśšāśš"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "ēąńå÷åķą %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Ģšåęīā ļščķņåš (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Ļščķņåš ķą SMB/Windows 95/98/NT ńśšāśš"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7446,43 +7760,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Āśāåäåņå URI ķą ļå÷ąņąłī óńņšīéńņāī"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Ėīźąėåķ ļščķņåš"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Ėīźąėåķ ļščķņåš"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7490,7 +7795,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7498,82 +7803,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Ģīė’, čēįåšåņå ńåščåķ ļīšņ źśģ źīéņī ńāśšēąķ ģīäåģśņ āč."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Āśāåäåņå URI ķą ļå÷ąņąłī óńņšīéńņāī"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Ķąńņšīéźą ķą öāåņīāå"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "×åņåķå ķą įąēąņą äąķķč īņ ļščķņåšč ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "×åņåķå ķą įąēąņą äąķķč īņ ļščķņåšč ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Īļöčč ķą īņäąėå÷åķ lpd-ļščķņåš"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7583,27 +7844,47 @@ msgstr ""
"äą ļšåäīńņąāčņå čģåķąņą ķą õīńņą ķą ļščķņåšķč’ ńśšāśš č\n"
"čģåņī ķą ļščķņåšą ķą ņīēč ńśšāśš."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Čģå ķą īņäąėå÷åķ õīńņ"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Čģå ķą īņäąėå÷åķ ļščķņåš"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Ėčļńāą čģå ķą čģå ķą õīńņ !"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Ėčļńāą čģå ķą īņäąėå÷åķ ļščķņåš !"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "ēąńå÷åķą %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Ńņąšņčšąķå ģšåęąņą ...."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ļå÷ąņąķå ķą ļščķņåš \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Ķąńņšīéźč ķą SMB (Windows 9x/NT) ļščķņåš"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7617,35 +7898,46 @@ msgstr ""
"ļščķņåšą, äī źīéņī čńźąņå äīńņśļ č ļīäõīä’łī čģåķ, ļąšīėą č čķōīšģąöč’\n"
"ēą šąįīņķąņą ćšóļą."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Õīńņ ķą SMB ńśšāśš"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP ķą SMB ńśšāśš:"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Īįłī čģå"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Šąįīņķą ćšóļą"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Čēļīėēāąé ąāņīģąņč÷ķī ēąńč÷ąķå"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Ņš’įāą äą įśäąņ ēąäąäåķč č čģåņī č IP ąäšåńą ķą ńśšāśšą !"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Ėčļńāą čģå ķą SAMBA share !"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7669,7 +7961,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7678,7 +7970,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7686,11 +7978,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Īļöčč ēą NetWare ļščķņåš"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7701,34 +7993,50 @@ msgstr ""
"Ēą äą ļå÷ąņčņå ķą NetWare ļščķņåš ,ņš’įāą äą ēķąåņå čģåī ģó č āśēģīęķī\n"
"ąäšåńą ķą ńśšāśšą, źąźņī č čģåņī ķą īļąųźąņą,ļīņšåįčņåėńźīņī čģå,ļąšīėą."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Ńśšāśš ķą ļščķņåšą"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Čģå ķą ļå÷ąņķąņą īļąųźąņą"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Ėčļńāą čģå ķą NCP ńśšāśš !"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Ėčļńāą čģå ķą NCP īļąųźą !"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Īļöčč ķą Socket ļščķņåš"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ļščķņåš, ņš’įāą äą ļšåäīńņąāčņå\n"
"čģåņī ķą õīńņą ķą ļščķņåšą č, åāåķņóąėķī, ķīģåš ķą ļīšņ.\n"
@@ -7736,19 +8044,21 @@ msgstr ""
"ķą äšóćč ńśšāśšč ģīęå äą āąščšą. Āčęņå šśźīāīńņāīņī ķą\n"
"õąšäóåšą ńč."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Čģå ķą õīńņ ķą ļščķņåšą"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Ėčļńāą čģå ķą õīńņ ķą ļščķņåša !"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Čģå ķą õīńņ ķą ļščķņåšą"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Ļå÷ąņąłī óńņšīéńņāī URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7758,11 +8068,11 @@ msgstr ""
"čēļśėķč čėč CUPS čėč Foomatic ńļåöčōčźąöččņå. Īņįåėåęåņå, ÷å ķå āńč÷źč "
"ņčļīāå URI ńå ļīääšśšęąņ īņ spooler-čņå."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Ņš’įāą äą įśäå āśāåäåķ āąėčäåķ URI !"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7772,24 +8082,28 @@ msgstr ""
"Ļīėåņąņą Īļčńąķčå č Ģåńņīļīėīęå ķå ņš’įāą äą įśäąņ\n"
"ļīļśėāąķč. Čģą źīģåķņąšč ēą ļīņšåįčņåėčņå."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Čģå ķą ļščķņåš"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ģåńņīļīėīęåķčå"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "×åņåķå ķą įąēąņą äąķķč īņ ļščķņåšč ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Ļīäćīņā’ķå ķą įąēąņą äąķķč īņ ļščķņåšč ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Čģå ķą īņäąėå÷åķ ļščķņåš"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7804,26 +8118,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Āńč÷źī ļšąāčėķī ėč å ?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Čģå ķą īņäąėå÷åķ ļščķņåš"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Čēįīš ģīäåė ķą ļščķņåšą"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Źąźśā ģīäåė ļščķņåš čģąņå ?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7832,17 +8146,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Ķąńņšīéźč ķą OKI Winprinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7852,11 +8166,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Ķąńņšīéźą ķą Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7869,7 +8183,7 @@ msgstr ""
"ļščķņåšķč ģąųčķč. Ģīė’, ńāśšęåņå ļščķņåšą ńč ķą ėīźąėåķ ļīšņ\n"
"čėč ćī ķąńņšīéņå ķą ģąųčķąņą, źśģ źī’ņī å ńāśšēąķ."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7882,7 +8196,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7898,22 +8212,22 @@ msgstr ""
"Īņįåėåęåņå, ÷å ļšč ģķīćī āčńīźī źą÷åńņī ķą čēõīäą ķą\n"
"ļščķņåšą, ņīé ģīęå ēķą÷čņåėķī äą ńå ēąįąāč."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Ķąńņšīéźąņą %s ņš’įāą äą å ö’ėī ÷čńėī !"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Ķąńņšīéźąņą %s ņš’įāą äą å ÷čńėī !"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Īļöč’ņą %s å čēāśķ ćšąķčöčņå !"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7922,11 +8236,11 @@ msgstr ""
"Čńźąņå ėč äą ķąńņšīčņå ņīēč ļščķņåš (\"%s\")\n"
"źąņī ļščķņåš ļī ļīäšąēįčšąķå ?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Ņåńņīāč ńņšąķčöč"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7939,40 +8253,40 @@ msgstr ""
"āšåģå äą ńå čēļå÷ąņą č ķą ėąēåšķč ļščķņåšč ń ģąėźī ļąģåņ ģīęå āśīįłå\n"
"äą ķå čēėåēå. Ā ļīāå÷åņī ńėó÷ąč å äīńņąņś÷ķą ńņąķäąšņķą ņåńņīāą ńņšąķčöą."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Įåē ņåńņīāč ńņšąķčöč"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Ļå÷ąņ"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Ńņąķäąšņķą ņåńņīāą ńņšąķčöą"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Ąėņåšķąņčāķą ņåńņīāą ńņšąķčöą (Ļčńģī)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Ąėņåšķąņčāķą ņåńņīāą ńņšąķčöą (Ą4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Ņåńņīāą ńņšąķčöą ńśń ńķčģźą"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Īņļå÷ąņāąķå ķą ņåńņīāč ńņšąķčöč"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Īņļå÷ąņāąķå ķą ņåńņīā(ąņą/čņå) ńņšąķčö(ą/č) ..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7987,7 +8301,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7995,15 +8309,15 @@ msgstr ""
"Ņåńņīāčņå ńņšąķčöč ńą čēļšąņåķč źśģ ļščķņåšķą.\n"
"Ģīęå äą īņķåģå ģąėźī āšåģå ļšåäč ļščķņåšą äą ēąļī÷ķå.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Ļšīšąįīņč ėč źąźņī ņš’įāą ?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8016,7 +8330,7 @@ msgstr ""
"<file>\" čėč \"kprinter <file>\". Ćšąōč÷ķčņå čķńņšóģåķņč āč ļīēāīė’āąņ äą "
"čēįčšąņå ļščķņåšą č äą ļīļšąā’ņå ėåńķī ķąńņšīéźčņå ķą īļöččņå.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8026,8 +8340,8 @@ msgstr ""
"ļå÷ąņķčņå äčąėīēč ā ģķīƒī ļščėīęåķč’. Ķī ņ¢ź ķå ļīńņąā’éņå čģåņī ķą ōąéėą, "
"ēąłīņī ņī ńå ļīäąāą īņ ļščėīęåķčåņī.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8040,7 +8354,7 @@ msgstr ""
"ēą īļšåäåėåķą šąįīņą ķą ļščķņåšą. Ļšīńņī äīįąāåņå öåėąķčņå ķąńņšīéźč źśģ "
"źīģąķäķč’ šåä, ķąļš. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8050,13 +8364,13 @@ msgstr ""
"Ēą äą āčäčņå ńļčńśź ķą äīńņśļķčņå īļöčč ēą ņåźółč’ ļščķņåš, čėč ļšī÷åņåņå "
"ńļčńśźą ļīźąēąķ ļī-äīėó čėč öśźķåņå ķą įóņīķą \"Ńļčńśź ń īļöčč ēą ļå÷ąņ\".\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8065,8 +8379,8 @@ msgstr ""
"Ēą äą čēļå÷ąņąņå ōąéė īņ źīģąķäķč’ šåä (ņåšģčķąėåķ ļšīēīšåö) čēļīėēāąéņå "
"źīģąķäąņą \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8076,7 +8390,7 @@ msgstr ""
"ļå÷ąņķčņå äčąėīēč ā ģķīćī ļščėīęåķč’. Ķī ņóź ķå ļīńņąā’éņå čģåņī ķą ōąéėą, "
"ēąłīņī ņī ńå ļīäąāą īņ ļščėīęåķčåņī.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -8086,7 +8400,7 @@ msgstr ""
"\"Ńļčńśź ń īļöčč ēą ļå÷ąņ\".\n"
"\n"
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8095,7 +8409,7 @@ msgstr ""
"Ēą äą īņļå÷ąņąņå ōąéė īņ źīģąķäķč’ šåä (ņåšģčķąėåķ ļšīēīšåö), čēļīėēāąéņå "
"źīģąķäąņą \"%s <file>\" čėč \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8105,7 +8419,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8118,45 +8432,45 @@ msgstr ""
"ķąńņšīéźč ēą īļšåäåėåķą šąįīņą ķą ļščķņåšą. Ļšīńņī äīįąāåņå čńźąķčņå "
"ķąńņšīéźč źśģ źīģąķäķč’ šåä, ķąļš. \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ļå÷ąņąķå ķą ļščķņåš \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ļå÷ąņąķå ķą ļščķņåš \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ļå÷ąņąķå ķą ļščķņåš \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ļå÷ąņąķå ķą ļščķņåš \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Ēąņāīšč"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Ńļčńśź ń ļščķņåšķč īļöčč"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8165,9 +8479,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8178,17 +8492,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "×åņåķå ķą äąķķč īņ ļščķņåšą ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Ļšåķīń ķą ķąńņšīéźą ķą ļščķņåš"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8204,7 +8518,7 @@ msgstr ""
"ļšåõāśšė’ņ.\n"
"Ķå āńč÷źč īļąųźč ģīćąņ äą įśäąņ ļšåõāśšėåķč ļī ńėåäķčņå ļšč÷čķč:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8213,7 +8527,7 @@ msgstr ""
"CUPS ķå ļīääśšęą ļščķņåšč ķą Novell ńśšāśšč čėč ļščķņåšč\n"
"čēļšąłąłč äąķķč āśā ńāīįīäķī-čēćšąäåķą źīģąķäą.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8222,11 +8536,11 @@ msgstr ""
"PDQ ļīääśšęą ńąģī ėīźąėķč ļščķņåšč, īņäąėå÷åķč LPD ļščķņåšč\n"
"č Socket/TCP ļščķņåšč.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD č LPRng ķå ļīääśšęą IPP ļščķņåšč.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8235,7 +8549,7 @@ msgstr ""
"Źąņī äīļśėķåķčå, īļąųźčņå ķå ńśēäąäåķč ń ņąēč ļšīćšąģą\n"
"čėč \"foomatic-configure\" ķå ģīćąņ äą įśäąņ ļšåõāśšė’ķč."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
#, fuzzy
msgid ""
"\n"
@@ -8247,7 +8561,7 @@ msgstr ""
"īņ ļšīčēāīäčņåėčņå čģ čėč ń īščćčķąėķč CUPS äšąéāåšč ķå\n"
"ģīćąņ äą įśäąņ ļšåõāśšė’ķč."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8257,15 +8571,15 @@ msgstr ""
"Īņįåėåęåņå ļščķņåščņå, źīčņī čńźąņå äą ļšåõāśšėčņå č öśźķåņå\n"
"\"Ļšåõāśšėč\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Ķå ļšåõāśšė’é ļščķņåšč"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Ļšåõāśšėč"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8276,11 +8590,11 @@ msgstr ""
"Öśźķåņå \"Ļšåõāśšėč\", ēą äą ćī ļšåēąļčųåņå.\n"
"Ģīęåņå ńśłī ņąźą äą ķąļčųåņå ķīāī čģå čėč äą ļšīļóńķņå ļščķņåšą."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Čģåņī ķą ļščķņåšą ņš’įāą äą ńśäśšęą ńąģī įóźāč, ÷čńėą č ļīä÷åšņąāźą"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8289,16 +8603,16 @@ msgstr ""
"Ļščķņåšśņ \"%s\" āå÷å ńśłåńņāóāą,\n"
"ķąčńņčķą ėč čńźąņå äą ļšåēąļčųåņå ķąńņšīéźąņą ?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Ķīāī čģå ķą ļščķņåš"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Ļšåõāśšė’ķå ķą %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8308,29 +8622,29 @@ msgstr ""
"Čńźąņå ėč äą ćī īńņąāčņå ļī ļīäšąēįčšąķå ā ķīāąņą\n"
"ļščķņåšķą ńčńņåģą %s ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Īļšåńķ’āąķå ķą äąķķčņå īņ ļščķņåšą ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Ķąńņšīéźą ķą īņäąėå÷åķ ļščķņåš"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Ńņąšņčšąķå ģšåęąņą ...."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Ā ģīģåķņą ķąńņšīéāąģ ģšåęąņą"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Ōóķźöčīķąėķīńņņą ķą ģšåęąņą ķå å ķąńņšīåķą"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8338,11 +8652,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Ļšīäśėęč įåē ķąńņīéźą ķą ģšåęąņą"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8352,7 +8666,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8364,24 +8678,24 @@ msgstr ""
"ńč. Ņīćąāą īļčņąéņå äą ķąńņšīčņå īņäąėå÷åķč’ ļščķņåš\n"
"īņķīāī."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Šåńņąšņčšąķå ķą ļščķņåšķąņą ńčńņåģą"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "āčńīźī"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "ļąšąķīč÷ķī"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Čķńņąėčšąķå ķą ļščķņåšķąņą ńčńņåģą ā %s ķčāī ķą ńčćóšķīńņ"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8396,11 +8710,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Ńņąšņčšąķå ķą ļščķņåšķąņą ńčńņåģą ļšč ńņąšņčšąķå"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8414,66 +8728,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Ļšīāåšźą ķą čķńņąėčšąķč’ ńīōņóåš..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Čēņščāąķå ķą LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Čēņščāąķå ķą LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Čēįåšåņå ļščķņåšåķ spooler"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Źī’ ļščķņåšķą ńčńņåģą (spooler) čēźąņå äą čēļīėēāąņå ?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ķąńņšīéźą ķą ļščķņåšą \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Īļöčč ķą ļščķņåšą"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Ļīäćīņā’ķå ķą PinterDrake ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Ķąńņšīéźą ķą ļščķņåšą \"%s\" ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Čńźąņå ėč äą ķąńņšīčņå ļå÷ąņą ?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Ļå÷ąņķą ńčńņåģą: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Ļščķņåš"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8486,7 +8800,7 @@ msgstr ""
"čėč ēą äą ļīėó÷čņå čķōīšģąöč’ ēą ķåćī, čėč\n"
"āśšõó \"Äīįąāč Ļščķņåš\", ēą äą äīįąāčņå ķīā ļščķņåš."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8498,33 +8812,29 @@ msgstr ""
"čėč ēą äą ļīėó÷čņå čķōīšģąöč’ ēą ķåćī, čėč\n"
"āśšõó \"Äīįąāč Ļščķņåš\", ēą äą äīįąāčņå ķīā ļščķņåš."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Ķąńņīéźą ķą ģšåęąņą"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Ķīšģąėåķ šåęčģ"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Čēõīä"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Čńźąņå ėč äą ķąńņšīčņå äšóć ļščķņåš ?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Ļīļšąāč ķąńņšīéźčņå ķą ļščķņåš"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8533,101 +8843,101 @@ msgstr ""
"Ļščķņåš %s: %s %s\n"
"Źąźāī čńźąņå äą ļīļšąāčņå ļī ņīēč ļščķņåš ?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Äąāąé !"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Ņčļ ķą āšśēźąņą źśģ ļščķņåšą"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Čģå ķą ļščķņåšą, īļčńąķčå, ģåńņīļīėīęåķčå"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Ļšīčēāīäčņåė ķą ļščķņåšą, ģīäåė, äšąéāåš"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Ļšīčēāīäčņåė ķą ļščķņåšą, ģīäåė"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Īļšåäåėč ņīēč ļščķņåš ēą ļīėēāąķå ļī ļīäšąēįčšąķå"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Īņļå÷ąņāąķå ķą ņåńņīāč ńņšąķčöč"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Čńźąņå ėč äą ķąńņšīčņå äšóć ļščķņåš ?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Ļšåģąõāąķå ķą ļščķņåšą"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Čēņščāąķå ķą ńņąš ļščķņåš \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Ļščķņåš ļī ļīäšąēįčšąķå"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Ļščķņåšśņ \"%s\" āå÷å å īļšåäåėåķ ēą ļīėēāąķå ļī ļīäšąēįčšąķå."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ķąčńņčķą ėč čńźąņå äą ļšåģąõķåņå ļščķņåšą \"%s\" ?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Čēņščāąķå ķą ļščķņåšą \"%s\" ..."
@@ -8682,8 +8992,9 @@ msgstr ""
"Īńņąāåņå ļšąēķī, ąźī ķå čńźąņå FTP proxy."
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URL ņš’įāą äą ēąļī÷āą ń 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL ņš’įāą äą å ēąļī÷āą ń 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8732,43 +9043,6 @@ msgstr "mkraid ļšīļąäķą (ģīęå įč raidtools ėčļńāąņ ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ķ’ģą äīńņąņś÷ķī ä’ėīāå ēą RAID ķčāī %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ņīāą ķčāī ńå čēļīėēāą ń āķčģąķčå. Ņīāą źąšą ńčńņåģąņą āč ļī-ėåńķą ēą\n"
-"óļīņšåįą, ķī å ļī-÷óāńņāčņåėķī: ķå ņš’įāą äą įśäå čēļīėēāąķą ķą ģąųčķč\n"
-"ńāśšēąķč ń äšóćč čėč ļī Čķņåšķåņ. Ķ’ģą äīńņśļ ń ļąšīėč."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Ń ņīāą ķčāī ķą ńčćóšķīńņ, ļīėēāąķåņī ķą ńčńņåģąņą źąņī ńśšāśš ńņąāą "
-"āśēģīęķī.\n"
-"Ńčćóšķīńņņą ńåćą å äīńņąņś÷ķī ćīė’ģą äą ńå čēļīėēāą ńčńņåģąņą źąņī\n"
-"ńśšāśš ļščåģął āšśēźč īņ ģķīćī źėčåķņč. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ķąńņšīéźą ķą ėīźąėķą ģšåęą"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Īļöčč"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ļóńķč ALSA (Advanced Linux Sound Architecture) ēāóźīāąņą ńčńņåģą"
@@ -9075,7 +9349,7 @@ msgstr "Čķņåšķåņ"
msgid "File sharing"
msgstr "Ļīäåė’ķå ķą ōąéėīāå"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Ńčńņåģą"
@@ -9194,7 +9468,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Źīķņšīėåķ öåķņśš"
@@ -9294,20 +9568,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ģīė’ čēėåēņå īņ ńåńč’ņą č čēļīėēāąéņå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ģīė’ āėåēņå īņķīāī ā %s, ēą äą ąźņčāčšąņå ļšīģåķčņå"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9315,175 +9589,175 @@ msgstr ""
"Ķå ģīćą äą šąē÷åņą ņąįėčöąņą ķą ä’ėīāåņå, ļšåźąėåķī å ļīāšåäåķą :(\n"
"Łå ńå īļčņąģ äą ļšīäśėęą äą šąē÷čńņāąģ ėīųčņå ä’ėīāå"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Ļšåķīń ķą ķąńņšīéźą ķą ļščķņåš"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Ńśšāśš Įąēč-äąķķč"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Ńśšāśš Įąēč-äąķķč"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS ńśšāśš"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS ńśšāśš"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Äīįąāč ļīņšåįčņåė"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP źėčåķņ"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Ļīģīł"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Ķå ńāśšēąķ"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Čēņščé"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Čēįåšåņå ōąéė"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Äīįąāč ļīņšåįčņåė"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP źėčåķņ"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ķąńņšīéźą ..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "ļšåķąńņšīéźą"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ńėīęåņå ńņąšņčšąłąņą äčńźåņą ā óńņšīéńņāī %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ķ’ģą ōėīļč óńņšīéńņāī"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Ćšåųźą !"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ķå ģīćą äą ķąģåš’ ķóęķą źąšņčķźą `%s'."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Ķąńņšīé÷čź ķą ąāņīģąņč÷ķą čńķņąėąöč’"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9498,11 +9772,11 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Ķąńņšīéźą ķą ąāņīģąņč÷ķčņå ńņśļźč"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9510,12 +9784,12 @@ msgstr ""
"Ģīė’, čēįåšåņå ēą āń’źą ńņśļźą, äąėč łå ńå ļšåčćšąå źąņī ļšč čķńņąėąöč’ņą, "
"čėč łå įśäå šś÷ķą"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Ļīäćīņā’ģ äčńźåņą ń ąāņīģąņč÷ķą čķńņąėąöč’"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9523,12 +9797,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Ļīēäšąāėåķč’ !"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9536,29 +9810,42 @@ msgstr ""
"Äčńźåņąņą å óńļåųķī ńśēäąäåķą.\n"
"Ńåćą ģīęåņå äą ļšåčćšąåņå čķńņąėąöč’ņą."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Čķńņąėčšąé"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Äīįąā’ķå ķą ļīņšåįčņåė"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Äą ļšåģąõķą ėč loopback ōąéėą ?"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9566,7 +9853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9574,34 +9861,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Ņåńņīāč ńņšąķčöč"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Ėīų backup-ōąéė"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9609,738 +9960,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ćšåųźą ļšč ÷åņåķåņī ķą ōąéėą %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Čēįīš ķą ļąźåņč"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Čēņščāąķå ķą īļąųźąņą"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ļšåģąõķč Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Ļīņšåįčņåėńźī čģå"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Ļšåõāśšėč"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Ģīė’, īļčņąéņå īņķīāī"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Ģīė’, īļčņąéņå īņķīāī"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "īłå āåäķśę ļąšīėą"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Ģīė’, čēįåšåņå ļīäšåęäąķå ķą źėąāčąņóšąņą."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Ģīė’, öśźķåņå ķą ķīńčņåė’"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ģīė’, öśźķåņå ķą ķīńčņåė’"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Ģīė’, öśźķåņå ķą ķīńčņåė’"
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1868
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
+msgid " Erase Now "
+msgstr "Ļšåõāśšėč"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Ģīė’, öśźķåņå ķą ķīńčņåė’"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Ģīė’, öśźķåņå ķą ķīńčņåė’"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Čēįåšåņå ōąéė"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Ģšåęīā čķņåšōåéń"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Āčä"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Ļīņšåįčņåėńźī čģå"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ģīė’, čēįåšåņå čēļīėēāąķ åēčź."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Åäčķ ģīģåķņ"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Īļöčč ķą ģīäóėą:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ķąńņšīéźą ķą ģšåęąņą"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Ōąéėīāč ńčńņåģč"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Óńņšīéńņāī ķą ģčųźąņą: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Īļöčč"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ģīė’, čēįåšåņå ńåščåķ ļīšņ źśģ źīéņī ńāśšēąķ ģīäåģśņ āč."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Ķąńņšīéźą ķą ģšåęąņą"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ģīė’, čēįåšåņå ņčļ ķą ģčųźąņą."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN āšśēźą"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Čēįåšåņå āšśēźą źśģ ļščķņåšą"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Āśēńņąķīāč īņ äčńźåņą"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ģīė’, čēįåšåņå ņčļ ķą ģčųźąņą."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Äšóćą"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Čķńņąėčšąķå ķą ńčńņåģąņą"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Āśēńņąķīāč īņ ōąéė"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Āśēńņąķīāč īņ ōąéė"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Ģīė’, čēįåšåņå ņčļ ķą ģčųźąņą."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Źėčåķņńźą"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Ļšåäčųåķ"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńśńņī’ķčå"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Āśēńņąķīāč īņ ōąéė"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Ņåźńņ"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ńėåäķčņå ļąźåņč łå įśäąņ čķńņąėčšąķč"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ģīė’, čēįåšåņå čēļīėēāąķ åēčź."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ģīė’, čēįåšåņå čēļīėēāąķ åēčź."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ģīė’, čēįåšåņå čēļīėēāąķ åēčź."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Ėīų backup-ōąéė"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Ēąļąēč āśā ōąéė"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ķąńņšīéźą ķą ģšåęąņą"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ķąńņšīéźą ķą ģšåęąņą"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ķąńņšīéźą"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ķąńņšīéźą ķą ėīźąėķą ģšåęą"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Ōąéėīāč ńčńņåģč"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10351,7 +10767,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10372,7 +10788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10381,7 +10797,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10405,7 +10821,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10422,21 +10838,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10450,17 +10866,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10477,7 +10893,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10517,7 +10933,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10528,7 +10944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10541,7 +10957,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10580,95 +10996,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Čķńņąėąöč’ņą ķą %s ļšīāąėåķą. Ļī’āč ńå ńėåäķąņą ćšåųźą:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Źīķēīėķč čķńņšóģåķņč"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Źīķņšīėåķ öåķņśš"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "ēąäśėęčņåėåķ"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Ģčųźą"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Īņäąėå÷åķ ļščķņåš"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Īįłī čģå"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Ļščķņåš"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Ģąćüīńķčź ēą ķąńņšīéźą ķą ģšåęąņą"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Čäåķņčōčźąöč’"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Čēįīš ķą ļąźåņč"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Ģīė’ čē÷ąźąéņå"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10680,148 +11123,148 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Čēõīä īņ čķńņąėąöčīķķąņą ļšīćšąģą"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "ļīšņ"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Čēõīä īņ čķńņąėąöčīķķąņą ļšīćšąģą"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ģīęåņå äą čēįåšåņå äšóćč åēčöč, źīčņī łå įśäąņ ķąėčöå ńėåäčķńņąėąöč’ņą"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Ķąńņšīéźą ķą ģšåęąņą (%d ąäąļņåšą)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Ļšīōčė: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Čēņšīé ļšīōčė ..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Ļšīōčė ēą čēņščāąķå:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Ķīā ļšīōčė ..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Čģå ķą ńśēäąāąķč’ ļšīōčė (ķīāč’ņ ļšīōčė ńå ńśēäąāą źąņī źīļčå ķą ņåźółč’):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Čģå ķą õīńņ:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Čķņåšķåņ äīńņśļ"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Ņčļ: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Čķņåšōåéń:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Ńśńņī’ķčå:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Ķąńņšīéźą ķą Čķņåšķåņ äīńņśļą ..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Ķąńņšīéźą ķą LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Äšąéāåš"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Čķņåšōåéń"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Ļšīņīźīė"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Ńśńņī’ķčå"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Ķąńņīéźą ķą ėīźąėķą ģšåęą ..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Öśźķåņå ņóź, ēą äą ńņąšņčšąņå ģąćüīńķčźą ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Ģąćüīńķčź..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Ļščėīęč"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Ģīė’, ļī÷ąźąéņå ... Ļščėąćąķå ķą ķąńņšīéźčņå"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ńāśšēąķ"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Ķå ńāśšēąķ"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Ńāśšēāąķå ..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Īņāśšēāąķå ..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10829,42 +11272,42 @@ msgstr ""
"Ķ’ģąņå ķąńņšīåķ čķņåšōåéń.\n"
"Ķąńņšīéņå ćč ļšåäč ņīāą, źąņī öśźķåņå ķą 'Ķąńņšīéźą'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Ķąńņšīéźą ķą ėīźąėķą ģšåęą"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Ąäąļņåš %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Ńņąšņčšął ļšīņīźīė"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Ļóńķąņ ļšč ńņąšņčšąķå"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP źėčåķņ"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "ąźņčāčšąé ńåćą"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "äåąźņčāčšąé ńåćą"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10872,121 +11315,121 @@ msgstr ""
"Ķ’ģąņå Internet āšśēźą.\n"
"Ńśēäąéņå ņąźąāą, źąņī öśźķåņå ķą 'Ķąńņšīé'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Ķąńņšīéźą ķą Čķņåšķåņ āšśēźą"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Ķąńņšīéźą ķą Čķņåšķåņ āšśēźą"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Ņčļ ķą āšśēźąņą: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Ļąšąģåņšč"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet źąšņą"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP źėčåķņ"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "čēļīėēāąķå: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Čģå ķą ģīäóė"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ćīėåģčķą"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "ńśäąāąķå ķą ńņąšņčšąłą äčńźåņą"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "ļī ļīäšąįčšąķå"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Ćšåųźą DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "āåšńč’ ķą ’äšīņī"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Īńķīāķī"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Äīļśėķčņåėķč"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd äīļśėķčņåėķč ąšćóģåķņč"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Äīįąāč ģīäóėą"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "ļščķóäčņåėķī"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ąźī å ķóęķī"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "įåē scsi ģīäóėč"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "įåē raid ģīäóėč"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Ļšåģąõķč ģīäóėą"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Šåēóėņąņ"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Ńśēäąé äčńźśņ"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Ļšīāåšåņå čģąņå ėč äčńźåņą ā óńņšīéńņāīņī %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10995,12 +11438,12 @@ msgstr ""
"Ķ’ģą äčńźåņą ā óńņīéńņāīņī %s.\n"
"Ģīė’ ļīńņąāåņå äčńźåņą."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ķå ģīęå äą ńå šąįīņč ń: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11011,105 +11454,105 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s ķå å ķąģåšåķī"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Ćīņīāī"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Ōīšģąņčšąé äčńźåņąņą"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ļīäćīņā’ģ čķńņąėąöč’ņą"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "ńņąšņčšąé ćī"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "īćšąķč÷č"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11118,122 +11561,127 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Ōīšģąņčšąķå ķą ä’ėīāå"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Äåčķńņąėčšąģ ļąźåņą"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Ķąńņšīéźą ķą ėīźąėķą ģšåęą"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Ģ’ńņī ķą ģīķņčšąķå"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Čēįåšåņå ä’ėīāåņå, źīčņī čńźąņå äą ōīšģąņčšąņå"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Īōčń"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Īņźąē"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Ļščķņåš"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Čķńņąėčšąķå ķą ńčńņåģąņą"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Čēįåšåņå ōąéė"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Ļšåģąõāąķå ķą ļščķņåšą"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Ńņąšņīāī ńśīįłåķčå"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Ķ’ģąņå ģšåęīā ąäąļņåš!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Čķńņąėčšąé"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Ķ’ģąņå ģšåęīā ąäąļņåš!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Čēõīä īņ čķńņąėąöčīķķąņą ļšīćšąģą"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Ńļīäåė’ķå ķą āšśēźąņą ń Čķņåšķåņ"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńļīäåė’ķåņī ķą āšśēźąņą źśģ Čķņåšķåņ å āå÷å ąźņčāčšąķī"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11245,31 +11693,31 @@ msgstr ""
"\n"
"Źąźāī čńźąņå äą ķąļšąāčņå ?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "čēźėž÷č"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "īńņąāč"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "ļšåķąńņšīéźą"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Čēźėž÷āąķå ķą ńśšāśšč ..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Ńļīäåė’ķåņī ķą Čķņåšķåņ āšśēźąņą ā ģīģåķņą å čēźėž÷åķī."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńļīäåė’ķåņī ķą Čķņåšķåņ āšśēźąņą å čēźėž÷åķī."
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11281,19 +11729,19 @@ msgstr ""
"\n"
"Źąźāī čńźąņå äą ķąļšąāčņå ?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "āźėž÷č"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Āźėž÷āąķå ķą ńśšāśšč ..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Ńļīäåė’ķåņī ķą Čķņåšķåņ ā ģīģåķņą å āźėž÷åķī."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11309,21 +11757,21 @@ msgstr ""
"Īņįåėåęåņå: ņš’įāą āč īņäåėåķ ēą ņīāą ģšåęīā ąäąļņåš, ēą äą óńņąķīāčņå "
"āśņšåųķąņą ńč ģšåęą (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Čķņåšōåéń %s (čēļīėēāął ģīäóė %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Čķņåšōåéń %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Ķ’ģąņå ģšåęīā ąäąļņåš!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11331,11 +11779,11 @@ msgstr ""
"Ā ńčńņåģąņą ķå å īņźščņ ethernet ģšåęīā ąäąļņåš. Ģīė’, ńņąšņčšąéņå "
"čķńņšóģåķņą ēą ķąńņšīéźą ķą õąšäóåš."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Ģšåęīā čķņåšōåéń"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11350,19 +11798,19 @@ msgstr ""
"\n"
"Ńģ’ņąģ äą óńņąķīā’ ėīźąėķąņą āč ģšåęą ķą ņīēč ąäąļņåš."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ģīė’ čēįåšåņå źīé ģšåęīā ąäąļņåš äą įśäå āźėž÷åķ źśģ ėīźąėķąņą āč ģšåęą."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Ōóķźöčīķąėķīńņņą ķą ģšåęąņą ķå å ķąńņšīåķą"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11372,17 +11820,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Ąāņīģąņč÷ķą ķąńņšīéźą ķą CUPS"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ļīļšąāč ķąńņšīéźčņå ķą ļščķņåš"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11393,7 +11841,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11405,33 +11853,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ķą CUPS ńśšāśšą"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Āśēģīęåķ źīķōčźņ ń ąäšåńčņå ā LAN ń ķąńņšīéźąņą ķą %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Īņźščņą å ķąńņšīéźą ķą Ēąłčņķą Ńņåķą !"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11439,21 +11887,21 @@ msgstr ""
"Āķčģąķčå ! Īņźščņą å ķąńņšīéźą ķą Ēąłčņķą Ńņåķą. Ģīęå äą ńå ķąėīęč ķ’źąźāą "
"šś÷ķą ļīļšąāźą ńėåä čķńņąėąöč’ņą."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Ķąńņšīéźą ..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Ķąńņšīéāąłč ńźščļņīāå, čķńņąėčšąķå ķą ńīōņóåš, ńņąšņčšąķå ķą ńśšāśšč..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Ļšīįėåģč ń čķńņąėčšąķåņī ķą ļąźåņą %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11463,23 +11911,23 @@ msgstr ""
"Ńåćą ģīęåņå äą ńļīäåėčņå Čķņåšķåņ āšśēźąņą ńč ń äšóćč źīģļžņšč ā ėīźąėķąņą "
"āč ģšåęą čēļīėēāąéźč ąāņīģąņč÷ķą ģšåęīāą ķąńņšīéźą (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Óńņąķīāźąņą āå÷å å ķąļšąāåķą, ķī ā ģīģåķņą å čēźėž÷åķą."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Óńņąķīāźąņą āå÷å å ķąļšąāåķą č ā ģīģåķņą å āźėž÷åķą."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ķ’ģą ķąńņšīéāąķī ńļīäåė’ķå ķą Čķņåšķåņ āšśēźąņą."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Ķąńņšīéźą ķą ńļīäåė’ķåņī ķą Čķņåšķåņ āšśēźąņą"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11494,20 +11942,13 @@ msgstr ""
"\n"
"Öśźķåņå ``Ķąńņšīé'', ąźī čńźąņå äą ńņąšņčšąķå óńņąķīā’āąłč’ ģąćüīńķčź."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Źīķņšīėåķ öåķņśš"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Čēįåšåņå čķńņšóģåķņą, źīéņī čńźąņå äą čēļīėēāąņå"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11516,108 +11957,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Źąķąäńźą (Źāåįåź)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Åāšīļą"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Ōšąķöč’"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Čńėąķäńźą"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Åāšīļą"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "ńåščéķą"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ļī’āč ńå ćšåųźą ļšč čķńņąėčšąķå ķą ļąźåņčņå:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11641,11 +12086,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "óļīņšåįą: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Ģīė’, čēįåšåņå ļīäšåęäąķå ķą źėąāčąņóšąņą."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Čńźąņå ėč BackSpace äą ļīäąāą Delete ķą źīķēīėąņą ?"
@@ -11671,7 +12116,7 @@ msgstr "Ķå ģīćą äą ļóńķą īįķīā’āąķåņī !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "ėīćäšåéź"
@@ -11782,24 +12227,24 @@ msgstr "Źąėåķäąš"
msgid "Content of the file"
msgstr "Ńśäśšęąķčå ķą ōąéėą"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, fuzzy, c-format
msgid "please wait, parsing file: %s"
msgstr "ģīė’ čē÷ąźąéņå, ļšąā’ šąēįīš ķą ōąéė: %s"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Ķąńņšīéźą ķą LILO/Grub"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -11808,126 +12253,127 @@ msgstr ""
"Ņóź łå ģīęåņå äą óńņąķīāčņå āąųčņå HTTP č FTP proxy\n"
"ńśń čėč įåē ļīņšåįčņåėńźī čģå č ļąšīėą\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Čģå ķą äīģåéķą"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS ńśšāśš"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix ļīłåķńźč ńśšāśš, Inn ķīāčķąšńźč ńśšāśš"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS ńśšāśš"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS ńśšāśš"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Óńėóćč"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ńśšāśš ķą ļščķņåšą"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "čķņåšåńåķ"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Ōīšģąņčšąķå"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Ķąńņšīéźą ķą öāåņīāå"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Ģīė’, īļčņąéņå īņķīāī"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Ēąļąēč źąņī..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Ģīė’, čēįåšåņå ņčļ ķą ģčųźąņą."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "ķå å ķąģåšåķ serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Äą ńčģóėčšąģ ėč ņšåņč įóņīķ ?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "×åņåķå ķą äąķķč īņ ļščķņåšą ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Ēąńč÷ąķå ķą óńņšīéńņāą ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Ņåńņāąķå ļīšņīāåņå"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Čēįåšåņå ćšąōč÷ķą źąšņą"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Ńņąšņčšąłī óńņšīéńņāī"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11935,7 +12381,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11955,15 +12401,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Ķąńņšīéźą ķą Ēąłčņķą Ńņåķą"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Ķąńņšīéźą ķą Ēąłčņķą Ńņåķą"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11975,7 +12421,7 @@ msgstr ""
"Āå÷å ńņå ķąńņšīčėč ēąłčņķą ńņåķą.\n"
"Öśźķåņå Ķąńņšīé, ēą äą óńņąķīāčņå ńņąķäąšņķą ēąłčņķą ńņåķą"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12223,56 +12669,60 @@ msgstr "Ķå ģīćą äą īņāīš’ %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Ķå ģīćą äą īņāīš’ %s ēą ēąļčń: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Ķąńņšīéźą ķą Ēąłčņķą Ńņåķą"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Ģīė’, čē÷ąźąéņå, ļīäćīņā’ķå ķą čķńņąėąöč’ņą"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Ńśšāśš, Web/FTP"
@@ -12322,6 +12772,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Čķńņšóģåķņč ēą ąóäčī: MP3 čėč MIDI ļėåéśšč, ģčźńåšč, č ņ.ķ. "
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Źķčćč č HOTWO-ņą ēą Linux č ńāīįīäķč’ ńīōņóåš"
@@ -12410,10 +12864,6 @@ msgid "Office Workstation"
msgstr "Īōčńķą šąįīņķą ńņąķöč’"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Ńśšāśš"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, č ņ.ķ."
@@ -12477,6 +12927,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Źėčåķņč ēą šąēėč÷ķč ļšīņīźīėč āźėž÷čņåėķī SSH"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Čķņåšķåņ gateway"
@@ -12508,6 +12962,105 @@ msgstr "Ģóėņčģåäč’ - īļč÷ąķå ķą CD"
msgid "Scientific Workstation"
msgstr "Ķąó÷ķą šąįīņķą ńņąķöč’"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Ņīāą ķčāī ńå čēļīėēāą ń āķčģąķčå. Ņīāą źąšą ńčńņåģąņą āč ļī-ėåńķą ēą\n"
+#~ "óļīņšåįą, ķī å ļī-÷óāńņāčņåėķī: ķå ņš’įāą äą įśäå čēļīėēāąķą ķą ģąųčķč\n"
+#~ "ńāśšēąķč ń äšóćč čėč ļī Čķņåšķåņ. Ķ’ģą äīńņśļ ń ļąšīėč."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Ń ņīāą ķčāī ķą ńčćóšķīńņ, ļīėēāąķåņī ķą ńčńņåģąņą źąņī ńśšāśš ńņąāą "
+#~ "āśēģīęķī.\n"
+#~ "Ńčćóšķīńņņą ńåćą å äīńņąņś÷ķī ćīė’ģą äą ńå čēļīėēāą ńčńņåģąņą źąņī\n"
+#~ "ńśšāśš ļščåģął āšśēźč īņ ģķīćī źėčåķņč. "
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Īļöčč"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Ńčćóšķīńņ"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Ģīė’, čēįåšåņå ļīäšåęäąķå ķą źėąāčąņóšąņą."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Ģīė’, ļšīįāąéņå ģčųźąņą ńč"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "URL ņš’įāą äą ēąļī÷āą ń 'ftp:'"
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Ģīė’, čēįåšåņå ļąźåņčņå, źīčņī čńźąņå äą čķńņąėčšąņå."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Ļšåģąõķč Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Ņąįėčöą"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP ńśšāśš"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Čģå ķą īņäąėå÷åķ ļščķņåš"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Čķńņąėčšąķå ķą ļąźåņč ..."
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "×åņåķå ķą įąēąņą äąķķč īņ ļščķņåšč ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Źīķņšīėåķ öåķņśš"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Čēįåšåņå čķńņšóģåķņą, źīéņī čńźąņå äą čēļīėēāąņå"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "ķå å ķąģåšåķ serial_usb\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck čēėåēå ń čēõīäåķ źīä %d čėč ńčćķąė %d"
@@ -12578,9 +13131,6 @@ msgstr "Ķąó÷ķą šąįīņķą ńņąķöč’"
#~ msgid "Setting security level"
#~ msgstr "Čēįåšåņå ķčāī ķą ńčćóšķīńņ"
-#~ msgid "Graphics card"
-#~ msgstr "Ćšąōč÷ķą źąšņą"
-
#~ msgid "Select a graphics card"
#~ msgstr "Čēįåšåņå ćšąōč÷ķą źąšņą"
@@ -12663,9 +13213,6 @@ msgstr "Ķąó÷ķą šąįīņķą ńņąķöč’"
#~ msgid "Percentage of packages to install"
#~ msgstr "Ļšīöåķņ ļąźåņč ēą čķńņąėčšąķå"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Čēįåšåņå ķčāī ķą ńčćóšķīńņ"
-
#~ msgid "hide expert mode"
#~ msgstr "įåē šąēųčšåķč ōóķźčöčč"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 6933b8a25..f29adc1c2 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-08-05 15:42+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -58,73 +58,73 @@ msgstr "Dibabit ur servijer X"
msgid "X server"
msgstr "servijer X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "o lenn ar c'hefluniadur"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Staliadur XFree86"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Pe seurt enmont a vennit ouzhpennaƱ"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:376
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Implijit Xinemara"
-#: ../../Xconfig/card.pm_.c:380
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:394 ../../Xconfig/card.pm_.c:395
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:405 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s gant 3D"
-#: ../../Xconfig/card.pm_.c:408
+#: ../../Xconfig/card.pm_.c:412
#, 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:410 ../../Xconfig/card.pm_.c:433
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:418 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:421
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -132,52 +132,65 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:441
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, 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:447
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:91 ../../any.pm_.c:977
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
msgid "Custom"
msgstr "PersonelaƱ"
-#: ../../Xconfig/main.pm_.c:97
+#: ../../Xconfig/main.pm_.c:104
#, fuzzy
msgid "Graphic Card"
msgstr "Kartenn c'hrafek"
-#: ../../Xconfig/main.pm_.c:100 ../../Xconfig/monitor.pm_.c:88
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfig/main.pm_.c:103 ../../Xconfig/resolution_and_depth.pm_.c:209
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfig/main.pm_.c:110
+#: ../../Xconfig/main.pm_.c:114
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:114 ../../diskdrake/interactive.pm_.c:376
-#: ../../diskdrake/removable.pm_.c:25 ../../diskdrake/removable_gtk.pm_.c:16
-#: ../../diskdrake/smbnfs_gtk.pm_.c:86
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Parzhadur"
-#: ../../Xconfig/main.pm_.c:117 ../../printerdrake.pm_.c:2925
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Mat eo"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Kuitaat"
-#: ../../Xconfig/main.pm_.c:140
+#: ../../Xconfig/main.pm_.c:144
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -186,24 +199,28 @@ msgid ""
"%s"
msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfig/monitor.pm_.c:88
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfig/monitor.pm_.c:92
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:93 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Rummel"
-#: ../../Xconfig/monitor.pm_.c:94 ../../harddrake/ui.pm_.c:36
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Dizober"
-#: ../../Xconfig/monitor.pm_.c:104
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -226,11 +243,11 @@ msgstr ""
"a zo en tu-hont da varregezh ho skrammĀ : gallout a rafe gwastaƱ ho skramm\n"
" M'hoc'h eus douetaƱs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfig/monitor.pm_.c:111
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfig/monitor.pm_.c:112
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
@@ -258,28 +275,29 @@ msgstr "4 miliard a livioĆ¹ (32 bit)"
msgid "Resolutions"
msgstr "SpisterioĆ¹"
-#: ../../Xconfig/resolution_and_depth.pm_.c:247
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioĆ¹"
-#: ../../Xconfig/resolution_and_depth.pm_.c:248
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafekĀ : %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:261 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:328 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:155
-#: ../../my_gtk.pm_.c:158 ../../my_gtk.pm_.c:280
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1983
-#: ../../standalone/drakautoinst_.c:202 ../../standalone/drakbackup_.c:2630
-#: ../../standalone/drakbackup_.c:2663 ../../standalone/drakbackup_.c:2684
-#: ../../standalone/drakbackup_.c:2705 ../../standalone/drakbackup_.c:2732
-#: ../../standalone/drakbackup_.c:2792 ../../standalone/drakbackup_.c:2819
-#: ../../standalone/drakbackup_.c:2845 ../../standalone/drakconnect_.c:115
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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
@@ -289,18 +307,6 @@ msgstr "Kartenn c'hrafekĀ : %s"
msgid "Cancel"
msgstr "NullaƱ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:261 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:154
-#: ../../my_gtk.pm_.c:280 ../../my_gtk.pm_.c:303
-#: ../../standalone/drakbackup_.c:2672 ../../standalone/drakbackup_.c:2760
-#: ../../standalone/drakbackup_.c:2779
-msgid "Ok"
-msgstr "Mat eo"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
@@ -394,170 +400,170 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:80
+#: ../../Xconfig/various.pm_.c:84
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-#: ../../any.pm_.c:118 ../../any.pm_.c:143
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Rann gentaƱ ar parzhadur loc'haƱ"
-#: ../../any.pm_.c:118 ../../any.pm_.c:143 ../../any.pm_.c:220
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Rann gentaƱ ar bladenn (MBR)"
-#: ../../any.pm_.c:122
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Staliadur SILO"
-#: ../../any.pm_.c:123 ../../any.pm_.c:136
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliaƱ ar c'harger loc'haƱ ?"
-#: ../../any.pm_.c:135
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:147 ../../any.pm_.c:161
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:149
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: ../../any.pm_.c:150 ../../any.pm_.c:161
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"
-#: ../../any.pm_.c:153
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:157
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Loc'haƱ abaoe DOS/Windows (loadlin)"
-#: ../../any.pm_.c:159 ../../any.pm_.c:161
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "DibarzhoĆ¹ pennaƱ ar c'harger loc'haƱ"
-#: ../../any.pm_.c:169 ../../any.pm_.c:201
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "C'harger loc'haƱ da implijout"
-#: ../../any.pm_.c:171
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Staliadur c'harger loc'haƱ"
-#: ../../any.pm_.c:173 ../../any.pm_.c:203
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Trobarzhell loc'haƱ"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoĆ¹ kozh)"
-#: ../../any.pm_.c:175
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:175
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:176 ../../any.pm_.c:300
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:178
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'haƱ ar skeudenn dre ziouer"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1109 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:181 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoĆ¹ al linenn urzhiaƱ"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "SkaraƱ /tmp bep ma loc'her"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../any.pm_.c:187
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../any.pm_.c:193
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoĆ¹ al linenn urzhiaƱ'' hep tremenger"
-#: ../../any.pm_.c:194 ../../any.pm_.c:771
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:194 ../../any.pm_.c:771
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "An tremegerioĆ¹ ne glot ket"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:208
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "RK dre ziouer"
-#: ../../any.pm_.c:242
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -566,7 +572,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -574,155 +580,156 @@ msgstr ""
"Setu da heul an enmontoĆ¹ liesseurt.\n"
"Gallout a rit ouzhpennaƱ lod pe gemmaƱ a re a zo."
-#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1034
-#: ../../standalone/drakbackup_.c:1148 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "OuzhpennaƱ"
-#: ../../any.pm_.c:267 ../../any.pm_.c:783 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "KemmaƱ"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennaƱ"
-#: ../../any.pm_.c:276 ../../standalone/drakbackup_.c:1182
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "ReizhiadoĆ¹ (SunOS...)"
-#: ../../any.pm_.c:277
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "ReizhiadoĆ¹ (MacOS...)"
-#: ../../any.pm_.c:277
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "ReizhiadoĆ¹ (windows...)"
-#: ../../any.pm_.c:296
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:297 ../../any.pm_.c:308
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:298 ../../any.pm_.c:326
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "OuzhpennaƱ"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:303
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lenn-skrivaƱ "
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:311
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:318 ../../any.pm_.c:323 ../../any.pm_.c:325
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:320 ../../any.pm_.c:330 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Dre ziouer"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Ment an Initrd"
-#: ../../any.pm_.c:329
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "N'ev ket video"
-#: ../../any.pm_.c:337
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Dilemel an enmont"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoĆ¹ goullo"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur disloaƱ"
-#: ../../any.pm_.c:342
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:669
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:671 ../../any.pm_.c:830 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:279
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:671 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:279
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:672
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Gwelet titouroĆ¹ periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliaƱ ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
-#: ../../any.pm_.c:698
+#: ../../any.pm_.c:689
#, 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:704
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -733,17 +740,17 @@ msgstr ""
"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboĆ¹.\n"
"Da skouer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:706
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "DibarzhoĆ¹ ar molladĀ :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiƱ ?"
-#: ../../any.pm_.c:727
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -762,15 +769,15 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:731
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "EmbrouiƱ"
-#: ../../any.pm_.c:731
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Spisait dibarzhoĆ¹"
-#: ../../any.pm_.c:743
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -779,56 +786,56 @@ msgstr ""
"KargaƱ ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoĆ¹ all ?"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezaƱ ennaƱ lizherennoĆ¹ munut, sifroĆ¹, `-' ha `_' "
"hepken"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "OuzhpennaƱ un arveriad"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -837,32 +844,32 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../any.pm_.c:793
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../any.pm_.c:794 ../../printerdrake.pm_.c:742
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Anv arveriad"
-#: ../../any.pm_.c:797
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:799
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Arlun"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:827
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -871,57 +878,57 @@ msgstr ""
"KefluniaƱ ho urzhiataer evit laƱsaƱ X ent emgefreek pa loc'ho a c'hellaƱ.\n"
"Mennout a rit laƱsaƱ X pa adloc'hit ?"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../any.pm_.c:832
+#: ../../any.pm_.c:823
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Dibabit ar benveg a vennit staliaƱ"
-#: ../../any.pm_.c:847
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:840
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 "Gallout a rit dibab yezhoĆ¹ all hag a vo hegerz goude staliaƱ"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:708
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "An holl"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "AotreiƱ an holl dud"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "N'ev ket lodaƱ"
-#: ../../any.pm_.c:987 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bremanaet e tle bezaƱ ar pabak-maƱ\n"
"Ha sur oc'h e mennit e ziuzaƱ ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:998 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1001
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 "
@@ -930,42 +937,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1017
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:1070 ../../security/msec.pm_.c:181
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:182
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Paour"
-#: ../../any.pm_.c:1072 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:183
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Skouer"
-#: ../../any.pm_.c:1073 ../../security/msec.pm_.c:184
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Uhel"
-#: ../../any.pm_.c:1074 ../../security/msec.pm_.c:185
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Uhel"
-#: ../../any.pm_.c:1075 ../../security/msec.pm_.c:186
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../any.pm_.c:1078
+#: ../../any.pm_.c:1076
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"
@@ -975,7 +982,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-treĀ : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziƱ dre dremenger."
-#: ../../any.pm_.c:1081 ../../security/msec.pm_.c:193
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -983,7 +990,7 @@ msgstr ""
"Gweredekaet eo bremaƱ an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../any.pm_.c:1082 ../../security/msec.pm_.c:194
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -994,13 +1001,13 @@ msgstr ""
"evit kevreaƱ evel arval ouzh ar Genrouedad. BremaƱ ez eus gwiriadennoĆ¹ "
"surentez."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:195
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1016,7 +1023,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoĆ¹ a-berzh arvaloĆ¹ niverus."
-#: ../../any.pm_.c:1087 ../../security/msec.pm_.c:199
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1025,24 +1032,34 @@ msgstr ""
"Kemer a reomp arc'hweloĆ¹ al live 4, hogen bremaƱ eo peurserret ar reizhiad.\n"
"Arc'hweloĆ¹ surentez a zo en o muiaƱ"
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:210
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Parzhadur"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Dibabit al live surentez"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Live surentez"
-#: ../../any.pm_.c:1099 ../../security/msec.pm_.c:212
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Implijit libsafe gant ar servijer"
-#: ../../any.pm_.c:1100 ../../security/msec.pm_.c:213
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1101 ../../security/msec.pm_.c:214
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1191
+#: ../../any.pm_.c:1189
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1055,7 +1072,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:363
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1080,218 +1097,234 @@ 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:918
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberiaĀ¤ !"
#. -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:921
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloĆ¹ %c ha %c evit diuz pe enmont zo war wel"
#. -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:924
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'haĀ¤ ar RK diuzet, 'e' evit aozaĀ¤ an"
#. -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:927
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiadoĀ— kent loc'haĀ¤, pe 'c' evit ul linenn-urzhiaĀ¤."
#. -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:930
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:951
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:1034
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Gorretaol"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1036
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Meuziad LaƱsaƱ"
-#: ../../bootloader.pm_.c:1055
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Pelec'h e mennit staliaƱ ar c'harger loc'haƱ ?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "N'ev ket skoazell.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
#, fuzzy
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliaƱ"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:59
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:60
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Skramm"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "KemmaƱ ar skramm"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Anv domani"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Trobarzhell loc'haƱ"
-#: ../../bootlook.pm_.c:144
+#: ../../bootlook.pm_.c:143
#, fuzzy
msgid "Install themes"
msgstr "StaliaƱ ar reizhiad"
-#: ../../bootlook.pm_.c:145
+#: ../../bootlook.pm_.c:144
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:167
+#: ../../bootlook.pm_.c:166
msgid "Can't create Bootsplash preview"
msgstr ""
-#: ../../bootlook.pm_.c:167 ../../bootlook.pm_.c:183 ../../bootlook.pm_.c:184
-#: ../../bootlook.pm_.c:187 ../../bootlook.pm_.c:217 ../../bootlook.pm_.c:219
-#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:237 ../../bootlook.pm_.c:242
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:81
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
msgid "Error"
msgstr "Fazi"
#: ../../bootlook.pm_.c:183
-msgid "unable to backup lilo message"
+#, c-format
+msgid "Backup %s to %s.old"
msgstr ""
#: ../../bootlook.pm_.c:184
-msgid "can't change lilo message"
+msgid "unable to backup lilo message"
msgstr ""
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "AdskrivaƱ %s"
+
#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:217
+#: ../../bootlook.pm_.c:220
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:219
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:230
-msgid ""
-".img $_.\n"
-"Type \"mkinitrd -f /boot/initrd-"
-msgstr ""
-
-#: ../../bootlook.pm_.c:230
-msgid "Can't launch mkinitrd -f /boot/initrd-"
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:231
-msgid ".img $_\" in command line as root."
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:238
+#: ../../bootlook.pm_.c:242
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:242
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
#, fuzzy
msgid "Notice"
msgstr "frondenn"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:249
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:249
#, fuzzy
msgid "Theme installation failed!"
msgstr "Diuzit renkad ar staliadur"
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:258
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../bootlook.pm_.c:254 ../../standalone/drakbackup_.c:1803
-#: ../../standalone/drakbackup_.c:1814 ../../standalone/drakgw_.c:592
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "KefluniaƱ"
-#: ../../bootlook.pm_.c:261
+#: ../../bootlook.pm_.c:267
#, fuzzy
msgid "Splash selection"
msgstr "Diuz pakadoĆ¹ unan hag unan"
-#: ../../bootlook.pm_.c:264
+#: ../../bootlook.pm_.c:270
#, fuzzy
msgid "Themes"
msgstr "Gwezenn"
-#: ../../bootlook.pm_.c:266
+#: ../../bootlook.pm_.c:272
msgid ""
"\n"
"Select a theme for\n"
@@ -1300,34 +1333,34 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:269
+#: ../../bootlook.pm_.c:275
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:273
+#: ../../bootlook.pm_.c:279
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:308
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:310
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:315
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:317
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:327 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:402 ../../standalone/drakbackup_.c:2850
-#: ../../standalone/drakbackup_.c:3773 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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
@@ -1337,7 +1370,7 @@ msgstr ""
msgid "OK"
msgstr "YA"
-#: ../../bootlook.pm_.c:397
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1382,67 +1415,111 @@ msgstr "N'hellan ouzpennaƱ parzhadur ebet ken"
msgid "Screenshots will be available after install in %s"
msgstr "Gallout a rit dibab yezhoĆ¹ all hag a vo hegerz goude staliaƱ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Gall"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Beljik"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Tchek"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Alaman"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Gres"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norvegek"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Suis"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italian"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "a-steud"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Amerika"
-#: ../../detect_devices.pm_.c:596 ../../detect_devices.pm_.c:638
-#: ../../detect_devices.pm_.c:802
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
msgid "Unknown Model"
msgstr ""
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Nevez"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Servijer"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Poent marc'haƱ"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Servijer"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Poent marc'haƱĀ : "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, fuzzy, c-format
+msgid "Options: %s"
+msgstr "Parzhadur"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoĆ¹ da gentaƱ mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -1482,7 +1559,7 @@ msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "MunudoĆ¹"
@@ -1511,13 +1588,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "DisloaƱ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1231
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "All"
@@ -1525,12 +1602,12 @@ msgstr "All"
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoĆ¹ restroĆ¹Ā :"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "KrouiƱ"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Seurt"
@@ -1540,7 +1617,7 @@ msgstr "Seurt"
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Dilemel"
@@ -1548,82 +1625,82 @@ msgstr "Dilemel"
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'haƱ'' da gentaƱ"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmaƱ seurt ar parzhadur %s, holl roadoĆ¹ ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Dibabit un parzhadur"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Dibabit un parzhadur all"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Kuitaat"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Kuitaat hep enrollaƱ"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivaƱ an daolenn barzhaƱ ?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Ac'hubiƱ ent emgefreek"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "SkaraƱ an holl"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Dilec'hiaƱ"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "DinoiƱ ar bladenn galet"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioĆ¹ kentaƱ renk"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennaƱ parzhadur ebet ken"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1631,35 +1708,35 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioĆ¹, lamit unan evit ma c'hellot krouiƱ ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "SkrivaƱ an daolenn barzhaƱ"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Taolenn barzhaƱ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Taolenn barzhaƱ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Taolenn barzhaƱ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Emvarc'haƱ ar skoroĆ¹ lem/laka"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1667,11 +1744,11 @@ msgstr ""
"N'eo ket heƱvel ment an daolenn barzhaƱ gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1679,127 +1756,115 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoĆ¹ ar bladennig-se"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhaƱ"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Diskouez titouroĆ¹"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Poent marc'haƱ"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "AdventaƱ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Dilec'hiaƱ"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "FurmadiƱ"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Marc'haƱ"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "OuzhpennaƱ da RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "OuzhpennaƱ da LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Divarc'haƱ"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "KemmaƱ RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Implij da saveteiƱ"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "KrouiƱ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Rann kregiƱĀ : "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ment e MoĀ : "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroĆ¹Ā : "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Poent marc'haƱĀ : "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "DibarzhĀ : "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "O furmadiƱ ar restr saveteiƱ %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "KemmaƱ seurt ar parzhadur"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'haƱ ar restr saveteiƱ %s ?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'haƱ an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1807,135 +1872,140 @@ msgstr ""
"N'hellan ket dizober ar poent marc'haƱ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiƱ. Lamit ar saveteiƱ da gentaƱ"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Pelec'h e mennit marc'haƱ an drobarzhell %s ?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "O jediƱ bevennoĆ¹ ar reizhiad restroĆ¹ FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Oc'h adventaƱ"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziƱ holl roadoĆ¹ ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventaƱ ar parzhadur %s e vo kollet holl roadoĆ¹ ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ment nevez e MoĀ : "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiaƱ ?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiaƱ ?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "O tilec'hiaƱ"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "O tilec'hiaƱ ur parzhadur..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennaƱ"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nevez"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennaƱ"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Anv LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-maƱ evit saveteiƱ"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "SaveteiƱ"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiƱĀ : "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Anv gwirion"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiƱ all endeo, dibabit unan all"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "DibarzhoĆ¹ marc'haƱ"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "A bep sort"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:103
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "live"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezhĀ : arvarus eo an obererezh-maƱ."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
#, fuzzy
msgid "What type of partitioning?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Bremanaet e tle bezaƱ ar pabak-maƱ\n"
"Ha sur oc'h e mennit e ziuzaƱ ?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1947,7 +2017,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1961,145 +2031,145 @@ msgstr ""
"Ma vennit implijout ar merour loc'haƱ LILO, taolit pled da ouzhpennaƱ ur "
"parzhadur /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezaƱ skrivet war bladenn eo taolenn barzhaƱ an ardivink %s !"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'haƱ a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiƱ ar parzhadur %s, holl roadoĆ¹ ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "O furmadiƱ"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiƱ ar restr saveteiƱ %s"
-#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../diskdrake/interactive.pm_.c:1018
#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiƱ ar parzhadur %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "KrouiƱ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "KrouiƱ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "AdskrivaƱ %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "SpisterioĆ¹"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "TrobarzhellĀ : "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOSĀ : %s (diwar varteze hepken)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "SeurtĀ : "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Anv: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiƱĀ : rann %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Ment: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Restr(oĆ¹) saveteiƱĀ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2107,27 +2177,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'haƱ MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "PladennoĆ¹ RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiƱĀ : %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2135,7 +2205,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2143,64 +2213,59 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Ment: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "MentoniezhĀ : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "TitouroĆ¹: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "PladennoĆ¹ LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhaƱĀ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Parzhadur"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Seurt ar reizhiad restroĆ¹Ā : "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaƱ)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "An tremegerioĆ¹ ne glot ket"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2255,23 +2320,23 @@ msgstr "Domani NIS"
msgid "Search servers"
msgstr "Servijer DNS"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiƱ er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiƱ %s er seurt %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'haƱ %sĀ : %s"
@@ -2288,57 +2353,57 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "PoentoĆ¹ marc'haƱ a rank kregiƱ gant /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'haƱ %s endeo\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriƱ %s evit skrivaƱĀ : %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2347,67 +2412,10 @@ msgstr ""
"krouiƱ reizhiadoĆ¹ restroĆ¹ nevez warni. Gwiriit abeg ar gudenn-maƱ en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Dilesadur"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Rummel"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memor kartenn (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "O furmadiƱ"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "KemmaƱ seurt ar parzhadur"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "Model"
@@ -2453,7 +2461,7 @@ msgstr ""
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1397
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
#, fuzzy
msgid "Description"
msgstr "Spisait dibarzhoĆ¹"
@@ -2561,75 +2569,108 @@ msgstr "EmbrouiƱ"
msgid "Harddrake2 version "
msgstr "DinoiƱ ar bladenn galet"
-#: ../../harddrake/ui.pm_.c:96
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Gwelet titouroĆ¹ periantel"
-#: ../../harddrake/ui.pm_.c:97
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Configure module"
msgstr "KefluniaƱ al logodenn"
-#: ../../harddrake/ui.pm_.c:97
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Diskouez titouroĆ¹"
-#: ../../harddrake/ui.pm_.c:97
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:102
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Poent marc'haƱ doubl %s"
-#: ../../harddrake/ui.pm_.c:102 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: ../../harddrake/ui.pm_.c:144
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:144
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d eilenn"
-#: ../../harddrake/ui.pm_.c:182 ../../modparm.pm_.c:61
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
+
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
#, fuzzy
-msgid "a number"
-msgstr "Niverenn bellgomz"
+msgid "Auto-detect"
+msgstr "Dilesadur"
-#: ../../harddrake/ui.pm_.c:184 ../../modparm.pm_.c:63
-#, c-format
-msgid "%d comma separated numbers"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:184 ../../modparm.pm_.c:63
-#, c-format
-msgid "%d comma separated strings"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:186 ../../modparm.pm_.c:65
-msgid "comma separated numbers"
+#: ../../harddrake/v4l.pm_.c:210
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:186 ../../modparm.pm_.c:65
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "comma separated strings"
-msgstr "FurmadiƱ parzhadurioĆ¹"
+msgid "Card model :"
+msgstr "Memor kartenn (DMA)"
-#: ../../harddrake/ui.pm_.c:204
-msgid "You can configure each parameter of the module here."
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "KemmaƱ seurt ar parzhadur"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:226
-#, fuzzy, c-format
-msgid "Running \"%s\" ..."
-msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "O furmadiƱ"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr ""
#: ../../help.pm_.c:13
msgid ""
@@ -3635,7 +3676,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3643,7 +3684,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3663,26 +3704,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellaƱ ket implijout ar skignaƱ hep domani NIS"
-#: ../../install_any.pm_.c:840
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:844
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:856
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:878 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
@@ -3909,7 +3950,7 @@ msgstr ""
msgid "Duplicate mount point %s"
msgstr "Poent marc'haƱ doubl %s"
-#: ../../install_steps.pm_.c:396
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3917,12 +3958,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:468
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:522 ../../install_steps.pm_.c:764
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -3932,7 +3973,7 @@ msgstr "Lenner pladennig hegerz ebet"
msgid "Entering step `%s'\n"
msgstr "O kregiƱ gant al lankad `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3940,81 +3981,81 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:231
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Renkad staliaƱ"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoĆ¹ staliaƱ a-heul mar plijĀ :"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:694
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoĆ¹"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:709
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Diuz pakadoĆ¹ unan hag unan"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:633
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollekĀ : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "AnvĀ : %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "StummĀ : %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "MentĀ : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "TalvoudegezhĀ : %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-maƱ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoĆ¹ a-heul a zo war-nes bezaƱ distaliet"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoĆ¹ a-heul a zo war-nes bezaƱ staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-maƱ"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "HemaƱ a zo ur pakad ret, n'hell ket bezaƱ andiuzet"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-maƱ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4022,78 +4063,78 @@ msgstr ""
"Bremanaet e tle bezaƱ ar pabak-maƱ\n"
"Ha sur oc'h e mennit e ziuzaƱ ?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-maƱ. Ret eo dezhaƱ bezaƱ bremanaet"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:2934
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "StaliaƱ"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "EnrollaƱ war bladennig"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Diuz pakadoĆ¹ unan hag unan"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "DistaliaƱ"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "O staliaƱ"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "O vrasjediƱ"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiƱ ar staliadur"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "O staliaƱ ar pakad %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:800
-#: ../../standalone/drakautoinst_.c:201
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aotren"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
#, fuzzy
msgid "Refuse"
msgstr "AdventaƱ"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4108,17 +4149,17 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emaƱ ket ganeoc'h gwaskit NullaƱ evit chom hep staliaƱ ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:813
-#: ../../install_steps_interactive.pm_.c:817
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:813
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummaƱ pakadoĆ¹Ā :"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:817
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliaƱ ar pakadoĆ¹Ā :"
@@ -4293,7 +4334,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1038
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Stokellaoueg"
@@ -4472,15 +4513,15 @@ msgstr "O klask ar pakadoĆ¹ hegerz"
msgid "Looking for available packages..."
msgstr "O klask ar pakadoĆ¹ hegerz"
-#: ../../install_steps_interactive.pm_.c:494
-msgid "Finding packages to upgrade..."
-msgstr "O kavout pakadoĆ¹ da vremanaat"
-
-#: ../../install_steps_interactive.pm_.c:497
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "N'hellit ket andiuz ar pakad-maƱ. Staliet eo endo"
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "O kavout pakadoĆ¹ da vremanaat"
+
#: ../../install_steps_interactive.pm_.c:515
#, fuzzy, c-format
msgid ""
@@ -4542,7 +4583,7 @@ msgstr ""
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:751
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4552,16 +4593,16 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoĆ¹-se, gwaskit NullaƱ.\n"
"Ma fazi deoc'h lod eus ar CDoĆ¹, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:756
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "O prientiƱ ar staliadur"
-#: ../../install_steps_interactive.pm_.c:785
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4570,21 +4611,21 @@ msgstr ""
"O staliaƱ ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:831
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliaƱ"
-#: ../../install_steps_interactive.pm_.c:837
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:843
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:863
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4656,7 +4697,7 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:902
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4668,160 +4709,161 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "O taremprediƱ ar melezour evit kaout roll ar pakadoĆ¹ hegerz"
-#: ../../install_steps_interactive.pm_.c:922
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoĆ¹ diwarnaƱ"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediƱ ar melezour evit kaout roll ar pakadoĆ¹ hegerz"
-#: ../../install_steps_interactive.pm_.c:958
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:963
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:971
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:1005
-#: ../../install_steps_interactive.pm_.c:1013
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1023
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1025
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriƱ"
-#: ../../install_steps_interactive.pm_.c:1035
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1037
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1038 ../../printerdrake.pm_.c:2720
-#: ../../printerdrake.pm_.c:2806
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1040
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1043
#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1047
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1087
-#: ../../install_steps_interactive.pm_.c:1112
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1112
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1112
-#: ../../install_steps_interactive.pm_.c:1133
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "TitouroĆ¹"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "RestroĆ¹ lec'hel"
-#: ../../install_steps_interactive.pm_.c:1099
-#: ../../install_steps_interactive.pm_.c:1100 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "TermeniƱ tremenger root"
-#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutaƱ)"
-#: ../../install_steps_interactive.pm_.c:1112 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1138
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 /"
@@ -4830,33 +4872,28 @@ msgid ""
"machine to the Windows(TM) domain.\n"
"If networking is not yet enabled, Drakx will attempt to join the domain "
"after the network setup step.\n"
-"Should this setup fail for some reason and PDC authentication is not "
+"Should this setup fail for some reason and domain authentication is not "
"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
"Domain, and Admin Username/Password, after system boot.\n"
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1138
+#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "Authentication Windows PDC"
+msgid "Authentication Windows Domain"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "TitouroĆ¹"
-
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1142
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Anv ar domani"
-#: ../../install_steps_interactive.pm_.c:1141
+#: ../../install_steps_interactive.pm_.c:1143
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4886,19 +4923,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Lenner pladennig kentaƱ"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:2269
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4926,7 +4963,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4935,29 +4972,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'haƱ"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "O krouiƱ ar bladenn loc'haƱ"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "O prientiƱ ar c'harger loc'haƱ"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4965,11 +5002,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4977,16 +5014,16 @@ msgstr ""
"Fazi en ur staliaƱ aboot,\n"
"klask rediaƱ ar staliadur zoken ma tistruj ar parzhadur kentaƱ ?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "StaliaƱ ar c'harger loc'haƱ"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heulĀ :"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4997,17 +5034,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
+#: ../../install_steps_interactive.pm_.c:1308
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "O krouiƱ ur bladennig staliaƱ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5017,7 +5054,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremaƱ ?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5049,16 +5086,16 @@ msgstr ""
"TitouroĆ¹ war gefluniaƱ ho reizhiad a zo hegerz e rannbennad Goude\n"
"StaliaƱ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiƱ ur bladennig staliaƱ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5067,16 +5104,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
#, fuzzy
msgid "Replay"
msgstr "AdkargaƱ"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoĆ¹ unan hag unan"
@@ -5104,407 +5141,470 @@ msgstr ""
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Barek"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
#, fuzzy
msgid "Basic"
msgstr "Diazez"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Diaraog"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "A heul"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Taolenn"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estoniek"
+
+#: ../../keyboard.pm_.c:205
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "Reizhadur Stokellaoueg RU"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "TitouroĆ¹"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĆ¹\""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "TitouroĆ¹"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Yougoslaviek (reizhadur latin)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
#, fuzzy
-msgid "Tamil"
-msgstr "Taolenn"
+msgid "Tamil (Unicode)"
+msgstr "i18n (brav)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroĆ¹\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5513,13 +5613,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Marc'haƱ kelc'hiek %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:283
+#: ../../modparm.pm_.c:50
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
+
+#: ../../modparm.pm_.c:52
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:52
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:54
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:54
+#, fuzzy
+msgid "comma separated strings"
+msgstr "FurmadiƱ parzhadurioĆ¹"
+
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5622,49 +5746,45 @@ msgstr "ebet"
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:446
+#: ../../mouse.pm_.c:445
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:446
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "FIƑV HO RODELL !"
-#: ../../my_gtk.pm_.c:154
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:154 ../../printerdrake.pm_.c:1985
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "A heul ->"
-#: ../../my_gtk.pm_.c:155 ../../printerdrake.pm_.c:1983
-msgid "<- Previous"
-msgstr "<- Diaraog"
-
-#: ../../my_gtk.pm_.c:280
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../my_gtk.pm_.c:352 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "TitouroĆ¹"
-#: ../../my_gtk.pm_.c:373
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../my_gtk.pm_.c:374
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "PlegaƱ ar wezenn"
-#: ../../my_gtk.pm_.c:375
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "GwintaƱ etre kompez ha rummet dre strollad"
@@ -5728,7 +5848,7 @@ msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outaƱ, mar plij."
msgid "no network card found"
msgstr "kartenn rouedad kavet ebet"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "KefluniaƱ ar rouedad"
@@ -5745,7 +5865,7 @@ msgstr ""
"evel ``mabenveg.mastal.makomp.com''.\n"
"Gallout a rit ivez reiƱ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Anv an ostiz"
@@ -5776,7 +5896,7 @@ msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6027,7 +6147,7 @@ msgstr "Dibabit ar ment nevez"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2922
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
@@ -6145,7 +6265,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:289
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6153,7 +6273,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6163,43 +6283,43 @@ msgstr ""
"Pep mellad a zlefe bezaƱ skrivet evel ur chomlec'h IP e stumm\n"
"sifroĆ¹ dekvel pikoĆ¹ etrezo (da skouer 1.2.3.4)."
-#: ../../network/network.pm_.c:304 ../../network/network.pm_.c:305
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "O kefluniaƱ an drobarzhell rouedad %s"
-#: ../../network/network.pm_.c:305
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Servijer XFree86Ā : %s\n"
-#: ../../network/network.pm_.c:307 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Chomlec'h IP"
-#: ../../network/network.pm_.c:308 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Maskl rouedad"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP emgefreek"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "KrouiƱ ur bladennig loc'haƱ"
-#: ../../network/network.pm_.c:331 ../../printerdrake.pm_.c:753
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezaƱ ar chomlec'h IP"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6211,41 +6331,41 @@ msgstr ""
"evel ``mabenveg.mastal.makomp.com''.\n"
"Gallout a rit ivez reiƱ chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Servijer DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Trobarzhell an dreuzell"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:386
#, fuzzy
msgid "Proxies configuration"
msgstr "Kefluniadur goude staliaƱ"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Proksi HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Proksi FTP"
-#: ../../network/network.pm_.c:384
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "http://... a zlefe bezaƱ ar proksi"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "ftp://... a zlefe bezaƱ ar proksi"
@@ -6361,7 +6481,7 @@ msgstr "Poent marc'haƱ"
msgid "Account Password"
msgstr "Tremenger"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6397,7 +6517,7 @@ msgstr "Restr gwareziƱ siek"
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivaƱ er restr %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6440,7 +6560,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6499,98 +6619,98 @@ msgstr "Trobarzhell ar voullerez"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:2063 ../../printerdrake.pm_.c:3181
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "MoullerezioĆ¹ lec'hel"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Moullerezio* a-bell"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:301
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:303
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", Mouluriez USB \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fazi en ur skrivaƱ er restr %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1533
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mollad %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2843
-#: ../../printerdrake.pm_.c:2854 ../../printerdrake.pm_.c:3070
-#: ../../printerdrake.pm_.c:3122 ../../printerdrake.pm_.c:3148
-#: ../../printerdrake.pm_.c:3318 ../../printerdrake.pm_.c:3320
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6613,12 +6733,12 @@ msgstr ""
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2906
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6669,7 +6789,7 @@ msgid "Automatic CUPS configuration"
msgstr "Kefluniadur goude staliaƱ"
#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
-#: ../../printerdrake.pm_.c:2889 ../../printerdrake.pm_.c:3009
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
@@ -7122,35 +7242,35 @@ msgstr ""
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1395
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1396
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Anv ar moullerez"
-#: ../../printerdrake.pm_.c:1398
+#: ../../printerdrake.pm_.c:1405
#, fuzzy
msgid "Location"
msgstr "TitouroĆ¹"
-#: ../../printerdrake.pm_.c:1409 ../../printerdrake.pm_.c:1529
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1412
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1509
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1510
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7165,28 +7285,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1515 ../../printerdrake.pm_.c:1518
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Ha reizh eo ?"
-#: ../../printerdrake.pm_.c:1516 ../../printerdrake.pm_.c:1517
-#: ../../printerdrake.pm_.c:1520
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1536
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:1537
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:1538
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7195,18 +7315,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "KefluniaƱ ar modem"
-#: ../../printerdrake.pm_.c:1618
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7216,12 +7336,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1661 ../../printerdrake.pm_.c:1688
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "KefluniaƱ ar proksioĆ¹"
-#: ../../printerdrake.pm_.c:1662
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7229,7 +7349,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1689
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7242,7 +7362,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1905
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7252,34 +7372,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1914
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1918
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1923
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1962
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiƱ moullaƱ skrid ?"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "AmprouiƱ ar porzhioĆ¹"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7287,45 +7407,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:1985
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:1987
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:1990
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1993
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullaƱ pajenn(oĆ¹) skrid..."
-#: ../../printerdrake.pm_.c:1995
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "O voullaƱ pajenn(oĆ¹) skrid..."
-#: ../../printerdrake.pm_.c:1999
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullaƱ pajenn(oĆ¹) skrid..."
-#: ../../printerdrake.pm_.c:2007 ../../printerdrake.pm_.c:2159
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "O voullaƱ pajenn(oĆ¹) skrid..."
-#: ../../printerdrake.pm_.c:2032
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7341,7 +7461,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2036
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7351,16 +7471,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:2043
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:2065 ../../printerdrake.pm_.c:3183
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2091
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7369,15 +7489,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2093
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2096 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2123
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7386,7 +7506,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:2099 ../../printerdrake.pm_.c:2139
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7394,41 +7514,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2103
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2108 ../../printerdrake.pm_.c:2118
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2110 ../../printerdrake.pm_.c:2120
-#: ../../printerdrake.pm_.c:2130
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:2128
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2132
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7438,7 +7558,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2136
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7447,47 +7567,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2146
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "O tizenaouiƱ ar rouedad"
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiƱ ar rouedad"
-#: ../../printerdrake.pm_.c:2149
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "O tizenaouiƱ ar rouedad"
-#: ../../printerdrake.pm_.c:2150
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiƱ ar rouedad"
-#: ../../printerdrake.pm_.c:2153 ../../printerdrake.pm_.c:2156
-#: ../../printerdrake.pm_.c:2157 ../../printerdrake.pm_.c:2158
-#: ../../printerdrake.pm_.c:3167 ../../standalone/drakTermServ_.c:248
-#: ../../standalone/drakbackup_.c:1036 ../../standalone/drakbackup_.c:2867
-#: ../../standalone/drakbug_.c:126 ../../standalone/drakfont_.c:705
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Logodenn USB"
-#: ../../printerdrake.pm_.c:2156
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "DibarzhoĆ¹ ar voullerez"
-#: ../../printerdrake.pm_.c:2175
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7496,9 +7616,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:2194
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7509,18 +7629,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:2215 ../../printerdrake.pm_.c:2665
-#: ../../printerdrake.pm_.c:2937
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2235 ../../printerdrake.pm_.c:2263
-#: ../../printerdrake.pm_.c:2298
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "KefluniaƱ ar proksioĆ¹"
-#: ../../printerdrake.pm_.c:2236
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7530,51 +7650,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2241
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2243
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:2245
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2246
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:2247
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:2250
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:2251 ../../printerdrake.pm_.c:2268
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:2264
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7582,61 +7702,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:2272
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:2285
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2288
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:2299
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:2308
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:2316 ../../printerdrake.pm_.c:2387
-#: ../../printerdrake.pm_.c:2399
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "KefluniaƱ ar voullerez"
-#: ../../printerdrake.pm_.c:2317
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "KefluniaƱ ur rouedad"
-#: ../../printerdrake.pm_.c:2351 ../../printerdrake.pm_.c:2355
-#: ../../printerdrake.pm_.c:2357
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "KefluniaƱ ur rouedad"
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:2353
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7644,12 +7764,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:2356
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "KefluniaƱ ar rouedad"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7659,34 +7779,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2390
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2400
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2439
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2440
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7701,11 +7821,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2472
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2473
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7719,69 +7839,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2496 ../../printerdrake.pm_.c:2536
-#: ../../printerdrake.pm_.c:2573 ../../printerdrake.pm_.c:2613
-#: ../../printerdrake.pm_.c:2725
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2540
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2577
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2649
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2650
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2683
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "KefluniaƱ ar voullerez"
-#: ../../printerdrake.pm_.c:2696
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliaƱ ar pakad %s"
-#: ../../printerdrake.pm_.c:2761 ../../printerdrake.pm_.c:2800
-#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3254
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "DibarzhoĆ¹ ar voullerez"
-#: ../../printerdrake.pm_.c:2770
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2787 ../../printerdrake.pm_.c:3341
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "KefluniaƱ ar voullerez"
-#: ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniaƱ ur voullerez ?"
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2871
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7792,7 +7912,7 @@ msgstr ""
"Setu da heul ar steudadoĆ¹ moullaƱ.\n"
"Gallout a rit ouzhpennaƱ lod pe gemmaƱ a re a zo."
-#: ../../printerdrake.pm_.c:2872
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7802,138 +7922,138 @@ msgstr ""
"Setu da heul ar steudadoĆ¹ moullaƱ.\n"
"Gallout a rit ouzhpennaƱ lod pe gemmaƱ a re a zo."
-#: ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2916
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "KefluniaƱ ur rouedad"
-#: ../../printerdrake.pm_.c:2921 ../../standalone/drakconnect_.c:277
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:3077 ../../printerdrake.pm_.c:3127
-#: ../../printerdrake.pm_.c:3335
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3162
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "KefluniaƱ ar modem"
-#: ../../printerdrake.pm_.c:3164
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3168
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:3173 ../../printerdrake.pm_.c:3228
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3174 ../../printerdrake.pm_.c:3232
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:3176 ../../printerdrake.pm_.c:3247
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:3177 ../../printerdrake.pm_.c:3248
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:3186 ../../printerdrake.pm_.c:3258
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:3188 ../../printerdrake.pm_.c:3263
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:3189 ../../printerdrake.pm_.c:3272
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:3190 ../../printerdrake.pm_.c:3281
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "O voullaƱ pajenn(oĆ¹) skrid..."
-#: ../../printerdrake.pm_.c:3191 ../../printerdrake.pm_.c:3283
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3193 ../../printerdrake.pm_.c:3285
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3237
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:3261
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:3262
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:3266 ../../printerdrake.pm_.c:3269
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:3267
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:3270
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:3275 ../../printerdrake.pm_.c:3278
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:3276
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:3279
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:3287
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiƱ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:3289
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
@@ -7984,8 +8104,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "ftp://... a zlefe bezaƱ ar proksi"
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "http://... a zlefe bezaƱ ar proksi"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8036,50 +8156,6 @@ msgstr "mkraid sac'het (raidtools a vank emichaƱs ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioĆ¹ evit RAID live %d\n"
-#: ../../security/msec.pm_.c:190
-#, fuzzy
-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 ""
-"Ret eo implijout al live-maƱ gant evezh. Ober a ra d'ho reizhiad bezaƱ\n"
-"aesoc'h da implijout, hogen kizidig-treĀ : arabat e implj evit un ardivink\n"
-"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziƱ dre dremenger."
-
-#: ../../security/msec.pm_.c:196
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Gant al live surentez-maƱ e teu posupl implijout ar reizhiad-maƱ evel ur "
-"servijer.\n"
-"Uhel a-walc'h eo bremaƱ ar surentez evit implijout ar reizhiad evel ur "
-"servijer\n"
-"o tigemer kevreadennoĆ¹ a-berzh arvaloĆ¹ niverus."
-
-#: ../../security/msec.pm_.c:215 ../../security/msec.pm_.c:276
-#: ../../standalone/drakfont_.c:679
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../security/msec.pm_.c:246 ../../security/msec.pm_.c:275
-#, fuzzy
-msgid "Basic Options"
-msgstr "Parzhadur"
-
-#: ../../security/msec.pm_.c:247
-#, fuzzy
-msgid "Security Checks"
-msgstr "rodellek"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8380,7 +8456,7 @@ msgstr "dedennus"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1221
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Reizhiad/Diazez"
@@ -8504,7 +8580,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:66
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
@@ -8602,7 +8678,7 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:37
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "O staliaƱ pakadoĆ¹..."
@@ -8615,7 +8691,7 @@ msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
msgid "Please relog into %s to activate the changes"
msgstr "Adereit ouzh %s evit bevaat ar c'hemmoĆ¹ mar plij"
-#: ../../standalone/diskdrake_.c:82
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8666,113 +8742,113 @@ msgstr "OuzhpennaƱ un arveriad"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:2634
-#: ../../standalone/drakbackup_.c:2665 ../../standalone/drakbackup_.c:2686
-#: ../../standalone/drakbackup_.c:2709 ../../standalone/drakbackup_.c:2736
-#: ../../standalone/drakbackup_.c:2775 ../../standalone/drakbackup_.c:2796
-#: ../../standalone/drakbackup_.c:2823 ../../standalone/drakbackup_.c:2847
-#: ../../standalone/drakbackup_.c:2869 ../../standalone/drakfont_.c:700
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Skoazell"
-#: ../../standalone/drakTermServ_.c:433
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:435
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:504
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:506 ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:518
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:521
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:532
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakTermServ_.c:535
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:549
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Dilemel"
-#: ../../standalone/drakTermServ_.c:556
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Diuzit ar restr"
-#: ../../standalone/drakTermServ_.c:618
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "OuzhpennaƱ un arveriad"
-#: ../../standalone/drakTermServ_.c:626
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:700
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:732
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:738
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "KefluniaƱ IDE"
-#: ../../standalone/drakTermServ_.c:885
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "KefluniaƱ X"
-#: ../../standalone/drakTermServ_.c:943
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../standalone/drakTermServ_.c:947
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:949
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:952
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Lenner pladennig hegerz ebet"
-#: ../../standalone/drakTermServ_.c:961
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:963
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:982
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8816,12 +8892,12 @@ msgid ""
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:81
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "O krouiƱ ur bladennig staliaƱ emgefreek"
-#: ../../standalone/drakautoinst_.c:143
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8829,40 +8905,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:238 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Gourc'hemennoĆ¹!"
-#: ../../standalone/drakautoinst_.c:239
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:277
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "StaliaƱ"
-#: ../../standalone/drakautoinst_.c:347
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "OuzhpennaƱ un arveriad"
-#: ../../standalone/drakautoinst_.c:354
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "O furmadiƱ ar restr saveteiƱ %s"
-#: ../../standalone/drakbackup_.c:598
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8870,7 +8959,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:603
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8878,34 +8967,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:625 ../../standalone/drakbackup_.c:641
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "AmprouiƱ ar porzhioĆ¹"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:795 ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:807
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:856
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:870 ../../standalone/drakbackup_.c:894
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Restr gwareziƱ siek"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8913,732 +9066,801 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:879
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:882
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:899
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:904
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:913
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup_.c:1010 ../../standalone/drakbackup_.c:1021
-#: ../../standalone/drakbackup_.c:1032 ../../standalone/drakfont_.c:1004
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoĆ¹"
-#: ../../standalone/drakbackup_.c:1037
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1077
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:1080
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1099
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-#: ../../standalone/drakbackup_.c:1126
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1127 ../../standalone/drakbackup_.c:1151
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Lemel ar steudad"
-#: ../../standalone/drakbackup_.c:1187
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1226
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1256
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:1263
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1268
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1273
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:1278
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:1284
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Tremenger ebet"
-#: ../../standalone/drakbackup_.c:1359 ../../standalone/drakbackup_.c:3294
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1362 ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
#
-#: ../../standalone/drakbackup_.c:1368 ../../standalone/drakbackup_.c:3310
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Klikit war ur parzhadur mar plij"
+
+#
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1374 ../../standalone/drakbackup_.c:3316
-msgid "Please check if you want to erase your CDRW before"
+#
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Klikit war ur parzhadur mar plij"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1381
+#
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Klikit war ur parzhadur mar plij"
+
+#
+#: ../../standalone/drakbackup_.c:1880
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1387
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1436
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Diuzit ar restr"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:1439
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1445
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-#: ../../standalone/drakbackup_.c:1451 ../../standalone/drakbackup_.c:1504
-#: ../../standalone/drakbackup_.c:2380
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1496
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1510 ../../standalone/drakbackup_.c:2386
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:1579
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Taolenn"
-#: ../../standalone/drakbackup_.c:1584
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1589
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1594
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Seurt"
-#: ../../standalone/drakbackup_.c:1608 ../../standalone/drakbackup_.c:1612
-#: ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1629
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2214
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:1705
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Petra"
-#: ../../standalone/drakbackup_.c:1752
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Pelec'h"
-#: ../../standalone/drakbackup_.c:1757
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Pa"
-#: ../../standalone/drakbackup_.c:1762
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "DibarzhoĆ¹ ar molladĀ :"
-#: ../../standalone/drakbackup_.c:1781 ../../standalone/drakbackup_.c:3206
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1799
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1812
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1876
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Trobarzhell ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "KefluniaƱ reizhiadoĆ¹ restroĆ¹"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1881
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1963
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1966
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1968
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1970
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1975
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Trobarzhell al logodennĀ : %s\n"
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1982
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Parzhadur"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1988
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1990
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1993
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2008
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2112
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2114
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakbackup_.c:2124
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2145
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2253
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:2271
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2289
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2339
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:2341
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2415
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../standalone/drakbackup_.c:2450
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:2452
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2511
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2513
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "All"
-#: ../../standalone/drakbackup_.c:2519
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "StaliaƱ ar reizhiad"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "AdaozaƱ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "AdaozaƱ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2523
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2527
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2593
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:2639 ../../standalone/drakbackup_.c:2670
-#: ../../standalone/drakbackup_.c:2689 ../../standalone/drakbackup_.c:2714
-#: ../../standalone/drakbackup_.c:2741 ../../standalone/drakbackup_.c:2801
-#: ../../standalone/drakbackup_.c:2828 ../../standalone/drakbackup_.c:2850
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:2643 ../../standalone/drakbackup_.c:2718
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "EnrollaƱ"
-#: ../../standalone/drakbackup_.c:2691
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:3457
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "AdaozaƱ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2805 ../../standalone/drakbackup_.c:2832
-#: ../../standalone/drakbackup_.c:2854
-msgid "Next"
-msgstr "A heul"
-
-#: ../../standalone/drakbackup_.c:2887
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2908
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2932
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ar pakadoĆ¹ a-heul a zo war-nes bezaƱ distaliet"
-#: ../../standalone/drakbackup_.c:2955
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2978
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:3021
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:3043
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3144
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:3146
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:3148
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziƱ siek"
-#: ../../standalone/drakbackup_.c:3150 ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3172
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3176
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "EnrollaƱ er restr"
-#: ../../standalone/drakbackup_.c:3246
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3304
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Dibabit seurt ho logodenn, mar plij."
-
-#: ../../standalone/drakbackup_.c:3322
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3328
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
-
-#: ../../standalone/drakbackup_.c:3408
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3418
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3439
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3444
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3449
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "KefluniaƱ reizhiadoĆ¹ restroĆ¹"
-#: ../../standalone/drakbackup_.c:3479
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3528
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9649,7 +9871,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9670,7 +9892,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9679,7 +9901,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3566
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9703,7 +9925,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9720,21 +9942,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3605
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9748,18 +9970,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3631 ../../standalone/drakbackup_.c:3708
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3633 ../../standalone/drakbackup_.c:3710
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3635 ../../standalone/drakbackup_.c:3712
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9776,7 +9998,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3649
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9816,7 +10038,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3687
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9827,7 +10049,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3696
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9840,7 +10062,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3726
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9884,7 +10106,7 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heulĀ :"
-#: ../../standalone/drakbug_.c:39
+#: ../../standalone/drakbug_.c:40
#, c-format
msgid ""
"drakbug version %s\n"
@@ -9897,100 +10119,104 @@ msgid ""
"OPTIONS:\n"
msgstr ""
-#: ../../standalone/drakbug_.c:46
+#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
msgstr ""
-#: ../../standalone/drakbug_.c:47
+#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:67
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:68
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:69 ../../standalone/drakbug_.c:82
-#: ../../standalone/drakbug_.c:144 ../../standalone/drakbug_.c:146
-#: ../../standalone/drakbug_.c:150
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr ""
-#: ../../standalone/drakbug_.c:70
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakeConsulting"
-#: ../../standalone/drakbug_.c:72
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:73
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Logodenn"
-#: ../../standalone/drakbug_.c:74
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "DibarzhoĆ¹ ar voullerez lpd a-bell"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Anv rannet"
-#: ../../standalone/drakbug_.c:76
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:77
+#: ../../standalone/drakbug_.c:80
#, fuzzy
msgid "Windows Migration tool"
msgstr "TitouroĆ¹"
-#: ../../standalone/drakbug_.c:78
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Moullerez"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbug_.c:93
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "X11/ArloadoĆ¹"
-#: ../../standalone/drakbug_.c:94
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakad"
-#: ../../standalone/drakbug_.c:95
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:96
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Gortozit mar plij"
-#: ../../standalone/drakbug_.c:111
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10002,21 +10228,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Paour"
-#: ../../standalone/drakbug_.c:159
+#: ../../standalone/drakbug_.c:165
#, fuzzy
msgid "Not installed"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakbug_.c:172
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:179
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Gallout a rit dibab yezhoĆ¹ all hag a vo hegerz goude staliaƱ"
@@ -10474,6 +10700,11 @@ msgstr ""
msgid "Uninstall Fonts"
msgstr "O tistaliaƱ ar RPMoĆ¹"
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
+
#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
@@ -10810,12 +11041,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10824,106 +11056,110 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadian (Kebek)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Gall"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Islandek"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "a-steud"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ur fazi a zo bet en ur staliaƱ ar pakadoĆ¹Ā :"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11529,7 +11765,7 @@ msgid ""
" Try to install them manually."
msgstr ""
-#: ../../ugtk.pm_.c:602
+#: ../../ugtk.pm_.c:619
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -11583,6 +11819,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
@@ -11677,10 +11917,6 @@ msgid "Office Workstation"
msgstr "TitouroĆ¹"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servijer"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
@@ -11730,10 +11966,6 @@ msgid ""
msgstr ""
#: ../../share/compssUsers:999
-msgid "Linux Standard Base compliant packages"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr ""
@@ -11786,6 +12018,76 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "TitouroĆ¹"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Ret eo implijout al live-maƱ gant evezh. Ober a ra d'ho reizhiad bezaƱ\n"
+#~ "aesoc'h da implijout, hogen kizidig-treĀ : arabat e implj evit un "
+#~ "ardivink\n"
+#~ "kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziƱ dre "
+#~ "dremenger."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Gant al live surentez-maƱ e teu posupl implijout ar reizhiad-maƱ evel ur "
+#~ "servijer.\n"
+#~ "Uhel a-walc'h eo bremaƱ ar surentez evit implijout ar reizhiad evel ur "
+#~ "servijer\n"
+#~ "o tigemer kevreadennoĆ¹ a-berzh arvaloĆ¹ niverus."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Parzhadur"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "rodellek"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "ftp://... a zlefe bezaƱ ar proksi"
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Dibabit ar pakadoĆ¹ a vennit staliaƱ, mar plij."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Taolenn"
+
#, fuzzy
#~ msgid "PDC Server Name"
#~ msgstr "Servijer NTP"
@@ -11978,9 +12280,6 @@ msgstr "TitouroĆ¹"
#~ msgid "Percentage of packages to install"
#~ msgstr "Dregantad a bakadoĆ¹ da staliaƱ"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Dibabit al live surentez"
-
#~ msgid "Complete (%dMB)"
#~ msgstr "Boas (%dMo)"
@@ -12031,9 +12330,6 @@ msgstr "TitouroĆ¹"
#~ msgid "Local Printer Device"
#~ msgstr "Trobarzhell voullerez lec'hel"
-#~ msgid "Printer Device"
-#~ msgstr "Trobarzhell ar voullerez"
-
#~ msgid "Choose the size you want to install"
#~ msgstr "Dibabit ar ment a vennit staliaƱ"
@@ -12056,9 +12352,6 @@ msgstr "TitouroĆ¹"
#~ "Ouzh pe drobarzhell eo luget ho moullerez \n"
#~ "(taolit evezh /dev/lp0 a zo kevatal da LPT1:) ?\n"
-#~ msgid "New"
-#~ msgstr "Nevez"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Amsklaer (%s), bezit spisoc'h\n"
@@ -12466,9 +12759,6 @@ msgstr "TitouroĆ¹"
#~ msgid "i18n (very nice)"
#~ msgstr "i18n (brav-tre)"
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (brav)"
-
#~ msgid "Which serial port is your mouse connected to?"
#~ msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 4ee25be49..0816c3643 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -57,11 +57,11 @@ msgstr "Izaberite X server"
msgid "X server"
msgstr "X server"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +69,44 @@ msgstr ""
"VaŔ sistem podržava konfiguraciju viŔe glava.\n"
"Šta želite učiniti?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Izaberite veličinu memorije vaŔe grafičke karte"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree konfiguracija"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Koju konfiguraciju XFree želite imati?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "KonfiguriŔi sve glave odvojeno"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "KonfiguriŔi samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,11 +145,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Ručno izaberi"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Grafička karta"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Rezolucija"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Izlaz"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -162,32 +208,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "OpŔti"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "PoniŔti"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -208,11 +250,11 @@ msgstr ""
"raspon izvan mogućnosti vaÅ”eg monitora: time možete oÅ”tetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvježavanja"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvježavanja"
@@ -236,57 +278,42 @@ msgstr "16 miliona boja (24 bita)"
msgid "4 billion colors (32 bits)"
msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Rezolucije"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Rezolucija"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Odustani"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Želite li testirati konfiguraciju?"
@@ -295,71 +322,71 @@ msgstr "Želite li testirati konfiguraciju?"
msgid "Test of the configuration"
msgstr "Testiranje konfiguracije"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tastature: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miŔa: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miÅ”a: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafička karta: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boja: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -368,165 +395,182 @@ msgstr ""
"Mogu podesiti vaŔ računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Koje je vrste vaŔa ISDN konekcija?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Å ifra"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Å ifra (ponovo)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Čisti /tmp prilikom svakog boota"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Omogući viÅ”e profila"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Navedite veličinu rama u MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
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:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Molimo pokuŔajte ponovo"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Å ifre se ne poklapaju"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Init Poruka"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Otvori čekanje firmware-a"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Kernel Boot Timeout"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -535,7 +579,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -543,147 +587,148 @@ msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke želite dodati?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Čitaj-piÅ”i"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-veličina"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ukloni stavku"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Prazna labela nije dozvoljena"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -692,7 +737,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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -703,17 +748,17 @@ msgstr ""
"ime2=vrijednost2 ...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Opcije modula"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokuÅ”ati?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -730,15 +775,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu Ŕtetu."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -747,54 +792,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ova Ŕifra je previŔe jednostavna"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -803,32 +848,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -836,54 +881,54 @@ msgstr ""
"Mogu podesiti vaŔ računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -892,11 +937,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -904,31 +949,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "DobrodoŔli u Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "LoÅ”"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "ViŔi"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -938,7 +983,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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -946,7 +991,7 @@ msgstr ""
"Šifra je sada aktivirana, ali koriŔtenje za mrežni računar joŔ nije "
"preporučeno."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -954,7 +999,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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -962,7 +1007,7 @@ msgstr ""
"Već postoje određena ograničenja, a viÅ”e automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -978,7 +1023,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:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -986,26 +1031,43 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcije"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Izaberite nivo sigurnosti"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1022,109 +1084,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "pomoć joÅ” nije implementirana.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle Categorizing Monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle Monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tradicionalni Monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Tradicionalni Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Pokreni Aurora-u prilikom boota"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub mod"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Sistem instalacije"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "GreŔka"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Kopiram %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NoVideo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Izaberite klasu instalacije"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1133,42 +1291,69 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na KonfiguriŔi kako bi se pokrenuo čarobnjak za podeŔavanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "KonfiguriŔi"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Spasi izbor paketa"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ne, ne želim da se autologiram"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1212,61 +1397,112 @@ msgstr "Ne mogu napraviti screenshot prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti dostupni nakon Å”to instalirate u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "ČeÅ”ka"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Njemačka"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grčka"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "NorveŔka"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Å vedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italija"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "SAD"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznat model"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "novi"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Molim unesite brzinu cd pisača"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Tačka montiranja: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opcije: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaŔih podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1280,15 +1516,6 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "GreŔka"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Čarobnjak"
@@ -1314,7 +1541,7 @@ msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detalji"
@@ -1342,13 +1569,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Ostalo"
@@ -1356,12 +1583,12 @@ msgstr "Ostalo"
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
@@ -1371,7 +1598,7 @@ msgstr "Tip"
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "ObriŔi"
@@ -1379,7 +1606,7 @@ msgstr "ObriŔi"
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1387,72 +1614,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "PoniŔti"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Izlaz bez spaŔavanja"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "ObriŔi sve"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "JoÅ”"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ne mogu dodati viŔe particija"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1460,31 +1687,31 @@ msgstr ""
"Da biste imali joŔ particija, molimo pobriŔite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1492,11 +1719,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1504,129 +1731,112 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "PokuŔavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opcije"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "PremjeŔtanje"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Tačka montiranja: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1635,131 +1845,136 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Gdje želite montirati uređaj %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "PremjeŔtam"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "PremjeŔtam particiju..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1771,7 +1986,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1783,7 +1998,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1793,47 +2008,47 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego Å”to izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1842,83 +2057,83 @@ msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "PremjeŔtam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1927,7 +2142,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1935,27 +2150,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1967,7 +2182,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1979,63 +2194,58 @@ msgstr ""
"particija je za\n"
"dvojni boot vaŔeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opcije: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaŔ ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova Ŕifra je previŔe jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Å ifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Å ifra"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Å ifra (joÅ” jednom)"
@@ -2086,23 +2296,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "Traži servere"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greŔka u demontiranju %s: %s"
@@ -2119,33 +2329,33 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2153,25 +2363,25 @@ msgid ""
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Nemam Ŕta da radim"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "GreŔka u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2180,259 +2390,263 @@ msgstr ""
"kreirati novi file sistemi. Molimo provjerite vaÅ” hardware i pronađite uzrok "
"greŔke"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Nemate nijednu particiju!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Koristi auto prepoznavanje"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "OpŔti"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memorija kartice (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "postavka opterećenja"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Promjeni tip"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Izlaz"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Pomoć"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Pomoć/_O programu..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "MiÅ”"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Odustani"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "MiÅ”"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Opis"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autentikacija"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Izaberite datoteku"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway uređaj"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 dugmeta"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "PodeŔavanje miŔa"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Prikaži informacije"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "PodeŔavanje miŔa"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Molimo sačekajte"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam Ŕtampač \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "OpŔti"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Ispitivanje"
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promjeni tip"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "postavka opterećenja"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4254,7 +4468,7 @@ msgstr ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4262,7 +4476,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
@@ -4292,20 +4506,20 @@ msgstr ""
"\n"
"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4313,7 +4527,7 @@ msgstr ""
"Da koristite ovaj izbor spaŔenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "GreŔka u čitanju datoteke %s"
@@ -4352,7 +4566,7 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
@@ -4533,12 +4747,12 @@ msgstr ""
"DoŔlo je do greŔke, ali ne znam kako da je rijeŔim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4550,12 +4764,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Dobro doŔli u %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4565,7 +4779,7 @@ msgstr "Nema pogodne disketne jedinice"
msgid "Entering step `%s'\n"
msgstr "Prelazim na korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4577,77 +4791,77 @@ msgstr ""
"ovo,\n"
"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Klasa instalacije"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Ne možete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne može biti isključen"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4655,74 +4869,74 @@ msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga želite isključiti?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Automatski prikaži izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Osvježavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4738,17 +4952,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "DoŔlo je do greŔke pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "DoŔlo je do greŔke kod instaliranja paketa:"
@@ -5066,104 +5280,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Molimo izaberite izgled vaŔe tastature."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Koju klasu instalacije želite?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instaliraj/Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili update?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Unaprijedi samo pakete"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaŔeg miŔa."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Port miŔa"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaÅ” miÅ”."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulacija tipki"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulacija 2 dugmeta"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulacija 3 dugmeta"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PodeŔavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "PodeŔavam IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Pretražujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5180,7 +5394,7 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5188,7 +5402,7 @@ msgstr ""
"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
"Nastavljate na vlastiti rizik!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5197,70 +5411,70 @@ msgstr ""
"nastaviti, ali da biste bootali vaÅ” sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Šta je root particija (/) vaŔeg sistema?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje želite formatirati"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Provjeri loŔe blokove?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovrŔim instalaciju, molimo dodajte joŔ"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Pronalazim pakete za unaprjeđenje"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Pronalazim pakete za unaprjeđenje"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5269,7 +5483,7 @@ msgstr ""
"VaÅ” sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5277,35 +5491,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiŔe auto_install"
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrži izbor paketa"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5314,15 +5528,15 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
@@ -5341,11 +5555,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5354,21 +5568,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Post-instalacijsko podeŔavanje"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5442,7 +5656,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5462,181 +5676,190 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Koja je vaŔa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podeŔen na GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Nema Ŕtampača"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
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:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "MiÅ”"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root Ŕifru"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Bez Ŕifre"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS server"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Autentikacijski LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Preuzmi fontove iz Windowsa"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP server"
+msgid "Authentication Windows Domain"
+msgstr "Autentikacijski LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Ime domena"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5668,19 +5891,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5706,7 +5929,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5720,29 +5943,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:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5754,11 +5977,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vaŔeg računara"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5766,15 +5989,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:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5792,17 +6015,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5812,7 +6035,7 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5845,16 +6068,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:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5868,15 +6091,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -5903,24 +6126,35 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Prethodni"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Sljedeći"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "PogreŔan izbor, pokuŔajte ponovo\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "VaÅ” izbor? (podrazumjevano %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5929,35 +6163,35 @@ msgstr ""
"Stavke koje morate popuniti:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "VaÅ” izbor? (0/1, podrazumjevano %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Dugme '%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Da li želite kliknuti na ovo dugme?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "VaÅ” izbor? (podrazumjevano '%s' %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari od kojih možete izabrati (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5967,7 +6201,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"VaÅ” izbor?"
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5976,327 +6210,379 @@ msgstr ""
"=> Primjetite, label je promjenjena:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Ponovo poŔalji"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "ČeÅ”ka (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Å panska"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "NorveŔka"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Å vedska"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća maÅ”ina)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdžanska (latinica)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "uključi"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonska"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Å vicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "ČeÅ”ka (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (NorveŔka)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Å vedska)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvijska"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Srpska (ćirilica)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamilska"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamilska (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamilska (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tadžička tastatura"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6305,37 +6591,37 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Broj telefona"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formatiranje particija"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"PCMCIA podrŔka za 2.2 kernele viŔe ne postoji. Molim koristite 2.4 kernel."
@@ -6439,51 +6725,43 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miŔa"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Molimo testirajte miÅ”"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miŔa,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:688
-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-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Prethodni"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "ProŔiri stablo"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Smanji stablo"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Prekidač između ravnog i grupnog sortiranja"
@@ -6506,6 +6784,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "koristi dhcp"
@@ -6533,7 +6815,7 @@ msgstr ""
"Nije pronađen ethernet mrežni adapter na vaÅ”em sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Izaberite mrežni interface"
@@ -6547,7 +6829,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "PodeŔavam mrežu"
@@ -6563,7 +6845,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Host name"
@@ -6591,7 +6873,7 @@ msgstr "Koje je vrste vaŔa ISDN konekcija?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6719,43 +7001,43 @@ msgstr "Molimo izaberite na koji serijski port je nakačen vaŔ modem."
msgid "Dialup options"
msgstr "Opcije dialupa"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Naziv konekcije"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Broj telefona"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Ime domena"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
@@ -6867,13 +7149,13 @@ msgstr "Izaberite profil za podeŔavanje"
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
@@ -6989,7 +7271,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:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7000,7 +7282,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podeÅ”en.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7010,43 +7292,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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "PodeÅ”avam mrežni uređaj %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7058,40 +7340,40 @@ 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:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
@@ -7103,7 +7385,7 @@ msgstr "Internet konfiguracija"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li se želite pokuŔati spojiti na Internet sada?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Probavam vaŔu konekciju..."
@@ -7131,43 +7413,43 @@ msgstr "PodeŔavanje konekcije"
msgid "Please fill or check the field below"
msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "VaŔ lični broj telefona"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Broj telefona provajdera"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (opcionalno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (opcionalno)"
@@ -7175,28 +7457,28 @@ msgstr "Provider dns 2 (opcionalno)"
msgid "Choose your country"
msgstr "Izaberite vaŔu državu"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Način biranja broja"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Brzina konekcije"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Timeout konekcije (u sek.)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Login naloga (korisničko ime)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Å ifra naloga"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7232,7 +7514,7 @@ msgstr "LoŔa backup datoteka"
msgid "Error writing to file %s"
msgstr "GreŔka u pisanju datoteke: %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7278,7 +7560,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7306,7 +7588,7 @@ msgstr "Udaljeni Ŕtampač"
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
@@ -7322,7 +7604,7 @@ msgstr "Štampač na SMB/Windows 95/98/NT serveru"
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja Å”tampača"
@@ -7330,110 +7612,110 @@ msgstr "Unesite URI uređaja Å”tampača"
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Lokalni Ŕtampači"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Udaljeni Ŕtampači"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB Ŕtampač \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", viÅ”enamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", viÅ”enamjenski uređaj na USBu"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", viÅ”enamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", viÅ”enamjenski uređaj"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", Ŕtampa u %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", Ŕtampač \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", Ŕtampač \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Sirovo Ŕtampanje (Bez drajvera)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Default)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Izaberi konekciju Ŕtampača"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Kako je Ŕtampač povezan na računar?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7443,15 +7725,19 @@ msgstr ""
"Ovdje ne morate podeŔavati Ŕtampače na udaljenim CUPS serverima;\n"
"ovi Å”tampači će biti automatski prepoznati."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "PodeŔavanje CUPSa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7469,7 +7755,7 @@ msgstr ""
"unijeti IP adresu CUPS servera i eventualno broj porta kako biste dobili "
"informacije o Ŕtampačima sa servera, inače ostavite ova polja praznim."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7485,32 +7771,32 @@ msgstr ""
"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
"forget to restart CUPS afterwards (command: \"service cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Dodaj novi Ŕtampač"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7533,50 +7819,67 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije Ŕtampača."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Lokalni Ŕtampač"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Dobro doÅ”li u Čarobnjak za podeÅ”avanje Å”tampača\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Ovaj čarobnjak će vam pomoći da instalirate vaÅ”(e) Å”tampač(e) koji su "
-"povezani na ovaj računar.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-"Molim uključite Ŕtampač(e) na ovom računaru i uključite ih. Kliknite na "
-"dugme \"Dalje\" kada budete spremni, a na \"Odustani\" ako ne želite da "
-"podesite vaŔe Ŕtampače sada.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Obratite pažnju da neki računari mogu krahirati tokom automatskog "
-"prepoznavanja Ŕtampača. Isključite opciju \"Automatski prepoznaj Ŕtampače\" "
-"ako je ovo slučaj kod vas. Koristite \"Ekspertni mod\" printerdrake-a ako "
-"želite da podesite Ŕtampanje na udaljenom Ŕtampaču a printerdrake ga ne "
-"izlista automatski."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Automatski prepoznaj Ŕtampače"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Lokalni Ŕtampač"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7600,57 +7903,50 @@ msgstr ""
"Ŕtampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Automatsko prepoznavanje Ŕtampača"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake može automatski prepoznati Ŕtampače koji su spojeni lokalno "
-"putem paralelne ili USB veze, ali zapamtite da na nekim sistemima automatsko "
-"prepoznavanje MOŽE ZALEDITI VAŠ SISTEM, ŠTO MOŽE VODITI DO OŠTEČENJA "
-"DATOTEČNIH SISTEMA! Zato ovo radite NA VAŠU ODGOVORNOST!\n"
-"\n"
-"Da li zaista želite da vaŔi Ŕtampači budu prepoznati automatski?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Ručno podesite Ŕtampač"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB Ŕtampač \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Mrežni Ŕtampač (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Štampač na SMB/Windows 95/98/NT serveru"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7662,35 +7958,23 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB Ŕtampač: /dev/"
"usb/lp0, drugi USB Ŕtampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Nije pronađen nijedan lokalni Å”tampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Mrežni Ŕtampači mogu biti instalirani samo nakon zavrŔetka instalacije. "
-"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Da instalirate mrežne Ŕtampače, kliknite na \"Odustani\", prebacite na "
-"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi Ŕtampač\"."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Lokalni Ŕtampač"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7698,7 +7982,7 @@ msgstr ""
"Sljedeći Å”tampač je prepoznat automatski: ako to nije onaj koji želite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7707,7 +7991,7 @@ msgstr ""
"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7718,7 +8002,7 @@ msgstr ""
"potpuno automatski. Ako vaŔ Ŕtampač nije ispravno prepoznat ili ako želite "
"sami podesiti Ŕtampač, uključite \"Ručno podeŔavanje\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7730,7 +8014,7 @@ msgstr ""
"vaŔ Ŕtampač nije ispravno prepoznat ili ako želite sami podesiti Ŕtampač, "
"uključite \"Ručno podeŔavanje\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7738,11 +8022,11 @@ msgstr ""
"Molimo izaberite port na koji je vaŔ Ŕtampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaŔ Ŕtampač."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7751,65 +8035,19 @@ msgstr ""
"LPT2:, ..., prvi USB Ŕtampač: /dev/usb/lp0, drugi USB Ŕtampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti Å”tampač / uređaj!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Ručno podeŔavanje"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Da li je vaÅ” Å”tampač viÅ”enamjenski uređaj od HPa (OfficeJet, PSC, "
-"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Instaliram HPOJ paket..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Provjeravam uređaj i podeÅ”avam HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Instaliram SANE paket..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Instaliram pakete..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Skeniram na vaÅ”em HP viÅ”enamjenskom uređaju"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Skeniram na vaÅ”em HP viÅ”enamjenskom uređaju"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Omogućujem CUPSu port Å”tampača ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Čitam bazu podataka o Å”tampačima ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd Ŕtampača"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7817,27 +8055,47 @@ msgstr ""
"Da biste koristili udaljeni lpd Ŕtampač, morate dati ime računara za printer "
"server i ime Ŕtampača na tom serveru."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Ime udaljenog Ŕtampača"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Ime udaljenog Ŕtampača nedostaje!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Detektovan %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Pokrećem mrežu..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "na Windows serveru \"%s\", share \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Štampam na Ŕtampač \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) Ŕtampača"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7849,35 +8107,46 @@ msgstr ""
"kao i share naziv Ŕtampača kojem želite pristupiti i korisničko ime, Ŕifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7901,7 +8170,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7910,7 +8179,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7918,11 +8187,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Opcije NetWare Ŕtampača"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7934,50 +8203,69 @@ msgstr ""
"naziv reda za Ŕtampu na Ŕtampaču kojem želite pristupiti i eventualno "
"korisničko ime i Ŕifru."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Naziv reda za Ŕtampu"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije Ŕtampača"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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 ""
"Da biste Ŕtampali na TCP ili socket Ŕtampač, morate dati hostname Ŕtampača i "
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on može varirati. Pogledajte priručnik vaŔeg hardware-a."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Hostname Ŕtampača"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Hostname Ŕtampača nedostaje!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Hostname Ŕtampača"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI uređaja Å”tampača"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7987,11 +8275,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
"podržani od svih spoolera."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7999,23 +8287,27 @@ msgstr ""
"Svakom Ŕtampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Naziv Ŕtampača"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Čitam bazu podataka o Å”tampačima ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o Ŕtampačima..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Model vaŔeg Ŕtampača"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8041,24 +8333,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Izbor modela Ŕtampača"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Koji model Ŕtampača imate?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8072,7 +8364,7 @@ msgstr ""
"prepoznavanje modela vaŔeg Ŕtampača. Potražite ispravan model na listi ako "
"kursor stoji na pogreŔnom modelu ili na \"Raw Ŕtampač\"."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8080,11 +8372,11 @@ msgstr ""
"Ako Ŕtampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"Ŕtampač) ili sličan."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "PodeŔavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8100,11 +8392,11 @@ msgstr ""
"nego Å”to odÅ”tampate testnu stranicu. Inače Å”tampač neće raditi. Drajver će "
"ignorisati vaŔe podeŔenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "PodeŔavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8116,7 +8408,7 @@ msgstr ""
"Molimo spojite vaŔ Ŕtampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8138,7 +8430,7 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8153,22 +8445,22 @@ msgstr ""
"ispravno podeŔeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
"Ŕtampa može postati znatno sporija."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8177,11 +8469,11 @@ msgstr ""
"Da li želite da podesite ovaj Ŕtampač (\"%s\")\n"
"kao podrazumjevani Ŕtampač?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8193,39 +8485,39 @@ msgstr ""
"laserskim Å”tampačima sa malo memorije možda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odŔtampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Å tampaj"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Nemoj Ŕtampati testnu stranicu"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Å tampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8240,7 +8532,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8248,15 +8540,15 @@ msgstr ""
"Testna stranica je poslana Ŕtampaču.\n"
"Može potrajati određeno vrijeme dok Å”tampač krene.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Sirovi Ŕtampač"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8269,7 +8561,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete Ŕtampač i izmjenite podeŔenja opcija.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8279,8 +8571,8 @@ msgstr ""
"dijalozima za Ŕtampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8293,7 +8585,7 @@ msgstr ""
"Ŕtampe. Jednostavno dodajte željena podeŔenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8304,7 +8596,7 @@ msgstr ""
"koja je data ispod ili kliknite na dugme \"Lista opcija za Ŕtampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8312,7 +8604,7 @@ msgstr ""
"Ovo je lista mogućih opcija za Å”tampu za trenutni Å”tampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8321,8 +8613,8 @@ msgstr ""
"Za Ŕtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8332,7 +8624,7 @@ msgstr ""
"dijalozima za Ŕtampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8340,7 +8632,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni Ŕtampač kliknite na dugme "
"\"Lista opcija za Ŕtampu\"."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8349,7 +8641,7 @@ msgstr ""
"Za Ŕtampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8365,7 +8657,7 @@ msgstr ""
"zaustavlja sve zadatke Ŕtampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8378,45 +8670,45 @@ msgstr ""
"zadatak Ŕtampe. Jednostavno dodajte željena podeŔenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Å tampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na Ŕtampač \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Lista opcija za Ŕtampu"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8434,9 +8726,9 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8447,17 +8739,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Čitam podatke o Å”tampaču..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "PremjeŔtanje konfiguracije Ŕtamapča"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8472,7 +8764,7 @@ msgstr ""
"zadaci Å”tampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8480,7 +8772,7 @@ msgstr ""
"CUPS ne podržava Ŕtampače na Novell serverima ili Ŕtampačekoji Ŕalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8488,11 +8780,11 @@ msgstr ""
"PDQ podržava samo lokalne Ŕtampače, udaljene LPD Ŕtampačei Socket/TCP "
"Ŕtampače.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podržavaju IPP Ŕtampače.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8500,7 +8792,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premjeŔteni."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8510,7 +8802,7 @@ msgstr ""
"Također Å”tampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8520,15 +8812,15 @@ msgstr ""
"Označite Å”tampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati Ŕtampače"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8539,11 +8831,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepiŔete.\n"
"Možete također unijeti novo ime ili preskočiti ovaj Å”tampač."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv Ŕtampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8552,16 +8844,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno želite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Novo ime Ŕtampača"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8570,29 +8862,29 @@ msgstr ""
"Prebacili ste vaÅ” bivÅ”i podrazumjevani Å”tampač (\"%s\"),Da li će to također "
"biti podrazumjevani Ŕtampač podnovim sistemom Ŕtampe %s?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Osvježavam podatke o Ŕtampaču..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "PodeŔavanje udaljenog Ŕtampača"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Pokrećem mrežu..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Sada podesite mrežu"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Mrežna funkcionalnost nije podeŔena"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8604,11 +8896,11 @@ msgstr ""
"mreže, nećete moći koristiti Å”tampač koji sada podeÅ”avate. Kako želite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Nastavi bez podeŔavanja mreže"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8623,7 +8915,7 @@ msgstr ""
"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite Ŕtampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8633,24 +8925,24 @@ msgstr ""
"vaŔu konfiguraciju i vaŔ hardware. Onda ponovo pokuŔajte podesiti udaljeni "
"Ŕtampač."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Restartujem sistem za Ŕtampu ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za Ŕtampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8674,11 +8966,11 @@ msgstr ""
"\n"
"Da li zaista želite podesiti Ŕtampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za Å”tampu tokom boota"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8698,63 +8990,63 @@ msgstr ""
"\n"
"Da li želite da ponovo uključite automatsko pokretanje sistema za Ŕtampu?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Izaberite spooler Ŕtampača"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem Ŕtampanja (spooler) želite koristiti?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "PodeŔavam Ŕtampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Opcije Ŕtampača"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "PodeŔavam aplikacije..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Da li želite podesiti Ŕtampanje?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Sistem Ŕtampe: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8766,7 +9058,7 @@ msgstr ""
"njemu; ili da učinite Ŕtampač na udaljenom CUPS serveru upotrebljivim iz "
"Star Office/OpenOffice.org-a."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8776,33 +9068,29 @@ msgstr ""
"postavki; ako ga želite učiniti podrazumjevanim Ŕtampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvježi listu Ŕtampača (kako bi bili prikazani svi dostupni CUPS Ŕtampači)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Promjenite sistem Ŕtampe"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Želite li podesiti joŔ jedan Ŕtampač?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju Ŕtampača"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8811,100 +9099,100 @@ msgstr ""
"Štampač %s\n"
"Šta želite da izmjenite na ovom Ŕtampaču?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Tip konekcije Ŕtampača"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Naziv Ŕtampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač Å”tampača, model, drajver"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Proizvođač Å”tampača, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Podesi Ŕtampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj Ŕtampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj Ŕtampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Å tampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj Ŕtampač"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Ukloni Ŕtampač"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari Ŕtampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Podrazumjevani Ŕtampač"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podeŔen kao podrazumjevani Ŕtampač."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodajem Ŕtampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspjeŔno dodan u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati Ŕtampač \"%s\" u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam Ŕtampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspjeŔno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti Ŕtampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li želite da uklonite Ŕtampač \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Uklanjam Ŕtampač \"%s\" ..."
@@ -8958,8 +9246,9 @@ msgstr ""
"Ostavite polja praznim ako ne želite ftp proxy"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url treba počinjati sa 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba počinjati sa 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9008,44 +9297,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ovaj nivo treba koristiti pažljivo. On čini vaŔ sistem lakŔim za upotrebu,\n"
-"ali vrlo osjetljivim: ne smije biti koriŔten za računar koji je spojen na\n"
-"druge ili na Internet. Nema pristupa Ŕifrom."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
-"server.\n"
-"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
-"prima\n"
-"konekcije sa mnogo klijenata. Napomena: ako je vaŔ računar samo klijent na "
-"Internetu, možda je bolje da izaberete niži nivo."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opcije"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -9349,7 +9600,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Sistem"
@@ -9479,7 +9730,7 @@ msgstr ""
"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
@@ -9596,20 +9847,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvrŔite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9617,174 +9868,174 @@ msgstr ""
"Ne mogu čitati vaÅ”u tabelu particija, previÅ”e je oÅ”tećena za mene :(\n"
"PokuÅ”aću izbrisati loÅ”e particije"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "PremjeŔtanje konfiguracije Ŕtamapča"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Server baze podataka"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Server baze podataka"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS server"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS server"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Dodaj korisnika"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pomoć"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nije konektovan"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "ObriŔi"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Sve izabrano"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Dodaj korisnika"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "PodeŔavam..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguriŔi"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "GreŔka!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ne mogu pronaći potrebnu image datoteku '%s'"
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "PodeŔavanje auto instalacije"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9811,11 +10062,11 @@ msgstr ""
"\n"
"Da li želite nastaviti?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Automatska konfiguracija koraka"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9823,12 +10074,12 @@ msgstr ""
"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vaÅ”oj "
"instalaciji ili će se obaviti ručno"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Pravim auto instalacijsku disketu"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9840,12 +10091,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Čestitamo!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9853,19 +10104,32 @@ msgstr ""
"Disketa je uspjeŔno napravljena.\n"
"Sada možete ponoviti vaŔu instalaciju."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Auto instalacija"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9875,7 +10139,7 @@ msgstr ""
" DrakBackup IzvjeŔtaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9887,7 +10151,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9899,31 +10163,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Koristi traku za backup"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9931,7 +10259,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -9940,7 +10268,7 @@ msgstr ""
"lista datoteka poslana putem FTPa : %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -9951,35 +10279,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaÅ”e backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) GreŔka tokom slanja poŔte. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9987,25 +10319,26 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10013,40 +10346,61 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vaŔeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Prebaci"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10055,43 +10409,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smjeŔtaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Molimo unesite vaÅ” login"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Molimo unesite vaŔu Ŕifru"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Zapamti ovu Ŕifru"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Molimo izaberite vaÅ” CD prostor"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Molim uključite ako koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Molim izaberite ako želite uključiti\n"
-" instalacijski boot na CDu."
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Molim uključite ako koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Molim uključite ako koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10099,21 +10478,36 @@ msgstr ""
"Molim unesite naziv uređaja vaÅ”eg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Izaberite datoteku"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10121,57 +10515,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10179,7 +10573,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10187,7 +10581,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10195,59 +10589,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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "PoŔalji mail izvjeŔtaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Å ta"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "ViŔe opcija"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "PodeŔavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Molim izaberite Ŕta želite backupovati"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10255,7 +10661,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10263,7 +10669,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10271,7 +10677,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10279,7 +10685,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10288,22 +10694,32 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Uređaj miÅ”a: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10312,12 +10728,12 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10326,7 +10742,7 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10335,7 +10751,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10343,19 +10759,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10364,41 +10780,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podeÅ”avanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10406,7 +10822,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10414,134 +10830,131 @@ msgstr ""
"Lista oÅ”tećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobriÅ”ite ga idući put."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oÅ”tećene"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Svi vaŔi izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspjeŔno spaŔeni na %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smjeŔteni backupi"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
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:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "PobriÅ”i korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Sljedeći"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10549,9 +10962,9 @@ msgstr ""
"Molimo pokrenite Izgradi backup prije vraćanja...\n"
" ili provjerite da li je put za spaŔavanje ispravan."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10559,14 +10972,14 @@ msgstr ""
" vaŔ mail izvjeŔtaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10575,19 +10988,19 @@ msgstr ""
"GreŔka tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vaŔu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10595,75 +11008,60 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Å aljem datoteke..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Lista podataka koji će biti smjeÅ”teni na CDROM."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Molim unesite brzinu cd pisača"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Molim unesite naziv uređaja vaÅ”eg CD pisača (ex: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Molim uključite ako želite imati instalacioni boot na vaŔem CDu."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Čarobnjak za podeÅ”avanje"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Napredno podeŔavanje"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10674,7 +11072,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10723,7 +11121,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10737,7 +11135,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10761,7 +11159,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10799,7 +11197,7 @@ msgstr ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10815,21 +11213,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10847,14 +11245,14 @@ msgstr ""
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10867,18 +11265,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10908,7 +11306,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:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10984,7 +11382,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11002,7 +11400,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11024,7 +11422,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11098,96 +11496,123 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greÅ”ka:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "na hard disk"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakeConsulting"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "MiÅ”"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Udaljeni Ŕtampač"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Share naziv"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Čarobnjak za podeÅ”avanje mreže"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Autentikacija"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Izbor paketa"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Molimo sačekajte"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11199,47 +11624,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Post Uninstall"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon Å”to instalirate u %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "PodeŔavanje mreže (%d adaptera)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "BriŔi profil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profil za brisanje:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Novi profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11247,102 +11672,102 @@ msgstr ""
"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
"postojećeg) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Hostname: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Pristup Internetu"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tip:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interfejs:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Molim sačekajte"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Podesi Internet pristup..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "PodeŔavanje LANa"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Drajver"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfejs"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Status"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Podesi Lokalnu mrežu..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Čarobnjak..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektovan"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nije konektovan"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Konektuj se..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Prekini konekciju..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaŔe mreže"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11350,36 +11775,36 @@ msgstr ""
"Nemate nijedan podeŔen interfejs.\n"
"Podesite ih prvo klikajući na 'Podesi'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "PodeŔavanje LANa"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapter %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Boot protokol"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Pokrenut na bootu"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP klijent"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "pokreni sada"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "zaustavi sada"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11387,7 +11812,7 @@ msgstr ""
"Interfejs joŔ nije podeŔen.\n"
"Pokrenite čarobnjak za podeŔavanje u glavnom prozoru"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11395,121 +11820,121 @@ msgstr ""
"Nemate nijednu Internet konekciju.\n"
"Napravite jednu klikajući na 'Podesi'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "PodeŔavanje Internet konekcije"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "PodeŔavanje Internet konekcije"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tip konekcije: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametri"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet kartica"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "koristi: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Naziv modula"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Veličina"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "Kreiranje boot diskete"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "Podrazumijevano"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy greŔka: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Kernel verzija"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Općenito"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ekspert područje"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opcionalni argumenti"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Dodaj modul"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "prisili"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ako je potrebno"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "izostavi scsi module"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "izostavi raid module"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Ukloni modul"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ispis"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11518,12 +11943,12 @@ msgstr ""
"Nema medija za ovaj uredjaj %s.\n"
"Molim ubacite ga."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu izvrsiti fork: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11534,99 +11959,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Pretraži instalirane fontove"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Isključi instalirane fontove"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "obradi sve fontove"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "nije pronađen nijedan font"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "gotovo"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ponovo izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Pretraži fontove na listi instaliranih"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "molimo sačekajte tokom ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "ZavrŔena True Type instalacija"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Konverzija fontova"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "type1inst kreiranje"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript referenciranje"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf fonts konverzija"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm fonts konverzija"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Onemogući privremene datoteke"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Restartuj XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Onemogući datoteke fontova"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "restart xfs-a"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11640,107 +12065,111 @@ msgstr ""
"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
"slučajevima, neispravni fontovi mogu zaglaviti vaŔ X Server."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Lista fontova"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Razni Ŕtampači"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Lista instalacije"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "ovdje ako ne."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "NiŔta izabrano"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Sve izabrano"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "PobriŔi listu"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Probni inicijali"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Instaliraj i konvertuj fontove"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Post Install"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "PobriŔi fontove sa mog sistema"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11752,31 +12181,31 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "otkaži"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "rekonfiguriŔi"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11788,19 +12217,19 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11816,21 +12245,21 @@ msgstr ""
"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
"mrežu (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nema mrežnog adaptera na vaŔem sistemu!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11838,11 +12267,11 @@ msgstr ""
"Na vaÅ”em sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
"pokrenite alat za podeŔavanje hardware-a."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Mrežni interface"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11857,18 +12286,18 @@ msgstr ""
"\n"
"Sada ću podesiti vaÅ”u Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mrežni adapter će biti spojen na vaÅ”u Lokalnu mrežu."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Mrežni interfejs je već podeÅ”en"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11883,15 +12312,15 @@ msgstr ""
"\n"
"To možete obaviti ručno, ali morate znati Ŕta radite."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podeŔavanje"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Prikaži postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11908,7 +12337,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11927,33 +12356,33 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaÅ” interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Lokalna mreža C klase"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreža se ne zavrŔava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11961,20 +12390,20 @@ msgstr ""
"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
"potrebno neko ručno podeŔavanje nakon instalacije."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "PodeŔavam..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "PodeÅ”avam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11984,23 +12413,23 @@ msgstr ""
"Sada možete dijeliti Internet konekciju sa ostalim računarima na vaŔoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "PodeÅ”avanje je već zavrÅ”eno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "PodeÅ”avanje je već zavrÅ”eno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podeŔeno."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "PodeŔavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12015,20 +12444,13 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolni centar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Izaberite alat koji želite koristiti"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12037,71 +12459,75 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kablovska)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (kablovska)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "Japan (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japan (kablovska)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Istočna Evropa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Francuska"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Zapadna Evropa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Južna Afrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -12109,36 +12535,36 @@ msgstr ""
"Molim,\n"
"unesite vaŔ tv standard i državu"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Pretraga TV kanala je u toku ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Tražim TV kanale"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "DoŔlo je do greŔke kod instaliranja paketa:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -12162,11 +12588,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Molimo izaberite izgled vaŔe tastature."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Želite li da BackSpace vrati Delete u konzoli?"
@@ -12191,7 +12617,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
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:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12299,22 +12725,25 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "Sadržaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Mail/SMS obavijest"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "molim sačekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "PodeŔavanje Mail/SMS obavijesti"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12322,124 +12751,125 @@ msgstr ""
"\n"
"Ovdje možete podesiti sistem obavjeŔtavanja.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Ime domena"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS server"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix mail server, Inn news server"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS server"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS server"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Servisi"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Printer Server"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "postavke servisa"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Možete primiti obavjeŔtenje ako neki od izabranih servisa prestane raditi"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "postavka opterećenja"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "postavka upozorenja"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Podesite način na koji će vas sistem obavijestiti"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Molimo unesite vaŔu Ŕifru"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vaŔeg miŔa."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "nije pronađen serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Čitam podatke o Å”tampaču..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Prepoznajem uređaje ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Testiraj portove"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s je pronađen na %s, podesi ga ?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Izaberite skener"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ovaj %s skener nije podržan"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Boot uređaj"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12450,7 +12880,7 @@ msgstr ""
"Možete pokrenuti printerdrake iz Mandrake Kontrolnog centra u odjeljku "
"Hardware."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12470,15 +12900,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "PodeŔavanje firewalla"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "PodeŔavanje firewalla"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12490,7 +12920,7 @@ msgstr ""
"Već ste podesili firewall.\n"
"Kliknite na Podesi kako bi se izmjenio ili uklonio firewall"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12739,48 +13169,48 @@ msgstr "Ne mogu otvoriti %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Ne, ne treba mi DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Da, treba mi DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Ne, ne treba mi NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Da, treba mi NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Nemoj snimiti"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Snimi i izađi"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Čarobnjak za podeÅ”avanje firewalla"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Ne (isključi pristup sa interneta)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Da (dozovoli pristup sa interneta)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Molim sačekajte... Provjeravam instalirane pakete"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12789,6 +13219,10 @@ msgstr ""
"GreŔka prilikom instaliranja paketa : %s i Bastille.\n"
" PokuŔajte ih instalirati ručno."
+#: ../../ugtk.pm_.c:619
+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-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -12838,6 +13272,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Alati vezani za zvuk: mp3 ili midi playeri, mixeri itd."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knjige i Howto-i na temu Linuxa i Slobodnog Software-a"
@@ -12925,10 +13363,6 @@ msgid "Office Workstation"
msgstr "Uredska radna stanica"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, itd."
@@ -12993,6 +13427,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Klijenti za razne protokole uključujući ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet gateway"
@@ -13024,6 +13462,196 @@ msgstr "Multimedija - Prženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Ovaj nivo treba koristiti pažljivo. On čini vaŔ sistem lakŔim za "
+#~ "upotrebu,\n"
+#~ "ali vrlo osjetljivim: ne smije biti koriŔten za računar koji je spojen "
+#~ "na\n"
+#~ "druge ili na Internet. Nema pristupa Ŕifrom."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+#~ "server.\n"
+#~ "Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+#~ "prima\n"
+#~ "konekcije sa mnogo klijenata. Napomena: ako je vaŔ računar samo klijent "
+#~ "na Internetu, možda je bolje da izaberete niži nivo."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opcije"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sigurnost"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Lista podataka koji će biti smjeÅ”teni na CDROM."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Molimo izaberite vaÅ” CD prostor"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Molim unesite brzinu cd pisača"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Molim uključite ako želite obrisati vaŔ CDRW prije"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Molim unesite naziv uređaja vaÅ”eg CD pisača (ex: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Molim uključite ako želite imati instalacioni boot na vaŔem CDu."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Url treba počinjati sa 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Molim izaberite ako želite uključiti\n"
+#~ " instalacijski boot na CDu."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP server"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Dobro doÅ”li u Čarobnjak za podeÅ”avanje Å”tampača\n"
+#~ "\n"
+#~ "Ovaj čarobnjak će vam pomoći da instalirate vaÅ”(e) Å”tampač(e) koji su "
+#~ "povezani na ovaj računar.\n"
+#~ "\n"
+#~ "Molim uključite Ŕtampač(e) na ovom računaru i uključite ih. Kliknite na "
+#~ "dugme \"Dalje\" kada budete spremni, a na \"Odustani\" ako ne želite da "
+#~ "podesite vaŔe Ŕtampače sada.\n"
+#~ "\n"
+#~ "Obratite pažnju da neki računari mogu krahirati tokom automatskog "
+#~ "prepoznavanja Ŕtampača. Isključite opciju \"Automatski prepoznaj Ŕtampače"
+#~ "\" ako je ovo slučaj kod vas. Koristite \"Ekspertni mod\" printerdrake-a "
+#~ "ako želite da podesite Ŕtampanje na udaljenom Ŕtampaču a printerdrake ga "
+#~ "ne izlista automatski."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Automatsko prepoznavanje Ŕtampača"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake može automatski prepoznati Ŕtampače koji su spojeni lokalno "
+#~ "putem paralelne ili USB veze, ali zapamtite da na nekim sistemima "
+#~ "automatsko prepoznavanje MOŽE ZALEDITI VAŠ SISTEM, ŠTO MOŽE VODITI DO "
+#~ "OŠTEČENJA DATOTEČNIH SISTEMA! Zato ovo radite NA VAŠU ODGOVORNOST!\n"
+#~ "\n"
+#~ "Da li zaista želite da vaŔi Ŕtampači budu prepoznati automatski?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Ručno podesite Ŕtampač"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Mrežni Ŕtampači mogu biti instalirani samo nakon zavrŔetka instalacije. "
+#~ "Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Da instalirate mrežne Ŕtampače, kliknite na \"Odustani\", prebacite na "
+#~ "\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi Ŕtampač\"."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Da li je vaÅ” Å”tampač viÅ”enamjenski uređaj od HPa (OfficeJet, PSC, "
+#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Instaliram HPOJ paket..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Provjeravam uređaj i podeÅ”avam HPOJ ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Instaliram SANE paket..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Instaliram pakete..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Skeniram na vaÅ”em HP viÅ”enamjenskom uređaju"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Skeniram na vaÅ”em HP viÅ”enamjenskom uređaju"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Omogućujem CUPSu port Å”tampača ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Kontrolni centar"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Izaberite alat koji želite koristiti"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Podesite način na koji će vas sistem obavijestiti"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "nije pronađen serial_usb\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
@@ -13136,9 +13764,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Setting security level"
#~ msgstr "PodeŔavanje nivoa sigurnosti"
-#~ msgid "Graphics card"
-#~ msgstr "Grafička karta"
-
#~ msgid "Select a graphics card"
#~ msgstr "Izaberite grafičku kartu"
@@ -13225,6 +13850,3 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Procenat paketa za instalaciju"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Izaberite nivo sigurnosti"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index a28b6db58..e1de1d381 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,14 +1,15 @@
# drakbootdisk translation to Catalan.
# Copyright (C) 2000 Free Software Foundation, Inc.
-# Softcatala, linux@softcatala.org, 2000-2001
+# Softcatala, softcatala.org, 2000-2002
+#
#
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatalą <traddrake@softcatala.org>\n"
-"Language-Team: Catalan <info@softcatala.org>\n"
+"Language-Team: Catalan <traddrake@softcatala.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -37,14 +38,17 @@ msgstr "4 MB"
msgid "8 MB"
msgstr "8 MB"
+#
#: ../../Xconfig/card.pm_.c:22
msgid "16 MB"
msgstr "16 MB"
+#
#: ../../Xconfig/card.pm_.c:23
msgid "32 MB"
msgstr "32 MB"
+#
#: ../../Xconfig/card.pm_.c:24
msgid "64 MB or more"
msgstr "64 MB o més"
@@ -57,11 +61,11 @@ msgstr "Escolliu un servidor X"
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Configuració Multi-head"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +73,44 @@ msgstr ""
"El vostre sistema permet l'śs d'una configuració de mśltiples capēals.\n"
"Quč voleu fer?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
-msgstr "Seleccioneu la mida de memņria de la vostra targeta grąfica"
+msgstr "Seleccioneu la mida de la memņria de la vostra targeta grąfica"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Configuració de l'XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Configura tots els capēals independentment"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfig/card.pm_.c:379
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:384
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Configura només la targeta \"%s\" (%s)"
+msgstr "Configura només la targeta \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -116,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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -140,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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +154,56 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (instal·lació del controlador de pantalla"
+
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Targeta grąfica"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resolució"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "D'acord"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Surt"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -162,36 +211,33 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Voleu conservar els canvis?La configuració actual és:\n"
+"Voleu conservar els canvis?\n"
+"La configuració actual és:\n"
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "General"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Desfés"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -209,16 +255,16 @@ msgstr ""
"velocitat de sincronització horitzontal, que és la velocitat a quč es\n"
"visualitzen les lķnies d'exploració.\n"
"\n"
-"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un abast\n"
+"És MOLT IMPORTANT que no especifiqueu un tipus de monitor amb un rang\n"
"de sincronització superior a les possibilitats del vostre monitor, perquč\n"
"el podrķeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest parąmetre."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
@@ -242,57 +288,42 @@ msgstr "16 milions de colors (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resolucions"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resolució"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resolució i la profunditat de color"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Targeta grąfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Cancel·la"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "D'acord"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Voleu comprovar la configuració?"
@@ -301,241 +332,258 @@ msgstr "Voleu comprovar la configuració?"
msgid "Test of the configuration"
msgstr "Comprova la configuració"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposició del teclat: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratolķ: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratolķ: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronització horitzontal del monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Targeta grąfica: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memņria grąfica: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolució: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
-msgstr "X a l'inici"
+msgstr "Interficie grąfica a l'inici"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
"Would you like XFree to start when you reboot?"
msgstr ""
-"Puc configurar el vostre ordinador de manera que executi X automąticament "
-"durant l'arrencada.\n"
-"Voleu que X s'iniciļ quan torneu a arrencar l'ordinador?"
+"Puc configurar el vostre ordinador de manera que executi automąticament "
+"l'interficie grąfica durant l'arrencada.\n"
+"Voleu que XFree s'iniciļ quan torneu a arrencar l'ordinador?"
+
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Quin tipus de connexió XDSI teniu?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Primer sector de la partició d'arrencada"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Instal·lació del SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el carregador d'arrencada?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Instal·lació del LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO amb menś de text"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO amb menś grąfic"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Instal·lació del carregador d'arrencada"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Mode de vķdeo"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Limita les opcions de la lķnia d'ordres"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Habilita perfils mśltiples"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Introduļu la mida de la RAM en Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opció ``Limita les opcions de la lķnia d'ordres'' no té cap śs sense una "
"contrasenya"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Demora de firmware obert"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Temps mąxim d'arrencada del nucli"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
-msgstr "OS per defecte?"
+msgstr "SO per defecte?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -543,188 +591,197 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"Heu decidit d'instal·lar el gestor d'arrencada en una partició.\n"
+"Aixņ implica que ja teniu un gestor d'arrencada en el disc des del arrenque"
+"(ex: System Commander).\n"
+"\n"
+"En quina unitat arrenqueu?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Aquestes són les diferents entrades.\n"
+"Aquestes són les diferents entrades en el menś d'arrencada.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:266
-#, fuzzy
+#
+#: ../../any.pm_.c:257
msgid "Modify"
-msgstr "Modifica el RAID"
+msgstr "Modifica"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
-msgstr ""
+msgstr "Heu d'especificar una imatge del nucli"
-#: ../../any.pm_.c:340
-#, fuzzy
+#
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
-msgstr "Heu de tenir una partició d'intercanvi"
+msgstr "Heu d'especificar una partició arrel"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Aquesta etiqueta ja estą en śs"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfķcies %2$s %1$s"
-#: ../../any.pm_.c:666
-#, fuzzy, c-format
+#: ../../any.pm_.c:656
+#, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfķcies %2$s %1$s"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfķcie %s?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Sķ"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "S'estą instal·lant el programa de control per a la targeta %s %s"
+msgstr "S'estą instal·lant el programa de control per a la targeta de %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(mņdul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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 ""
+"Ara pot subministrar les opcions per al mņdul %s.\n"
+"Tingueu en compte que qualsevol adreēa hauria de ser entrada amb el prefix "
+"0x com '0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
-"Ara podeu proporcionar les seves opcions per al mņdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Ara podeu proporcionar les opcions per al mņdul %s.\n"
+"Les opcions estan en el format ``nom=valor nom2=valor2 ...''.\n"
"Per exemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Opcions del mņdul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -741,15 +798,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:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Exploració automątica"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -758,55 +815,55 @@ msgstr ""
"Ha fallat la cąrrega del mņdul %s.\n"
"Voleu tornar-ho a intentar amb altres parąmetres?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
-msgstr ""
+msgstr "accés a programes X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
-msgstr ""
+msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
-msgstr ""
+msgstr "permet \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
-msgstr ""
+msgstr "accés a fitxers administratius"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Si us plau, introduļu un nom d'usuari"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari només pot contenir lletres en minśscula, nśmeros, `-' i `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -815,94 +872,96 @@ msgstr ""
"Introduļu un usuari\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Entrada automątica"
-#: ../../any.pm_.c:826
-#, fuzzy
+#
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automąticament amb un "
"nom d'usuari.\n"
-"Si no voleu utilitzar aquesta caracterķstica, feu clic al botó Cancel·la."
+"Voleu activar aquesta caracterķstica?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
-msgstr "Escolliu l'usuari per omissió:"
+msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../any.pm_.c:846
-#, fuzzy
+#
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 ""
-"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
-"instal·lació"
+"Mandrake Linux pot utilitzar mśltiples idiomes. Seleccioneu\n"
+"els llenguatges que volgueu instal·lar. Estaran disponibles\n"
+"quan reinicieu el sistema després de que la instal·lació s'hagi completat."
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
-#: ../../any.pm_.c:973
-#, fuzzy
+#
+#: ../../any.pm_.c:974
msgid "Allow all users"
-msgstr "Afegeix un usuari"
+msgstr "Permet tots els usuaris"
-#: ../../any.pm_.c:973
-#, fuzzy
+#
+#: ../../any.pm_.c:974
msgid "No sharing"
-msgstr "S'estą iniciant el CUPS"
+msgstr "No es comparteix"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
-#, fuzzy, c-format
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
+#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr "Quins paquets voleu instal·lar"
+msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
-msgstr ""
+msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -910,43 +969,50 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"Li agradaria permetre als usuaris compartir alguns dels seus directories?\n"
+"Fer aixņ permetrą al usuaris fer un simple click a \"Compartir\" en el "
+"konqueror i el nautilus.\n"
+"\n"
+"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
-msgstr ""
+msgstr "Executa userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
+"La compartició per usuari utilitza el grup \"ComparticióFitxers\".\n"
+"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estąndard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Alt"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
-#, fuzzy
+#
+#: ../../any.pm_.c:1072
msgid "Higher"
-msgstr "Alt"
+msgstr "Més Alt"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -957,7 +1023,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 mitjanēant contrasenya."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -965,8 +1031,8 @@ msgstr ""
"Ara, la contrasenya estą habilitada, perņ l'śs com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
-#, fuzzy
+#
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -975,14 +1041,16 @@ msgstr ""
"s'utilitzarą per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
+"Hi ha encara algunes restriccions, i cada nit funcionaran més comprovacions "
+"automątiques"
-#: ../../any.pm_.c:1080
-#, fuzzy
+#
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -994,35 +1062,54 @@ msgstr ""
"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
"servidor esdevé possible.\n"
"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
-"que accepti connexions de molts clients. "
+"que accepti connexions de molts clients. Nota: si la seva mąquina és només "
+"un client d'internet, seria millor escollir un nivell menor"
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
-#, fuzzy
+#
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-"Assumim les caracterķstiques del nivell 4, perņ ara el sistema estą\n"
-"totalment tancat.\n"
-"Les caracterķstiques de seguretat estan al mąxim."
+"Aixņ és similar al nivell anterior, perņ el sistema estą completament tancat "
+"i les caracterķstiques de seguretat estan al mąxim."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Especifica les opcions"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "Escolliu el nivell de seguretat"
+
+#
+#: ../../any.pm_.c:1095
msgid "Security level"
-msgstr "S'estą establint el nivell de seguretat"
+msgstr "El nivell de seguretat"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
-#, fuzzy
+#
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
-msgstr "Escolliu les opcions per al servidor"
+msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
+#, fuzzy
msgid "Security Administrator (login or email)"
+msgstr "Seguretat d'usuari (login o email)"
+
+#: ../../any.pm_.c:1189
+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 ""
# NOTE: this message will be displayed at boot time; that is
@@ -1031,7 +1118,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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1056,13 +1143,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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1070,143 +1157,263 @@ 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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
+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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prčvies a l'arrencada, o 'c' per obtenir una lķnia 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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarą automąticament dintre de %d segons."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Menś Inici"
-#: ../../bootloader.pm_.c:1049
-#, fuzzy, c-format
+#: ../../bootloader.pm_.c:1072
+#, c-format
msgid "You can't install the bootloader on a %s partition\n"
-msgstr "On voleu instal·lar el carregador d'arrencada?"
+msgstr "No podeu instal·lar el carregador d'arrencada a la partició %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Monitor de categorització NewStyle"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Monitor NewStyle"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Monitor tradicional"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor Gtk+ tradicional"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Executa l'Aurora durant l'arrencada"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Mode LILO/Grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Mode Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Instal·la el sistema"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Error"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Copiant %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NoVideo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Tipus d'instal·lació"
+
+#: ../../bootlook.pm_.c:258
+#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
-"\n"
-"%s\n"
-"\n"
-"Feu clic a Configura per executar l'auxiliar de configuració."
+"Actualment utilitzeu %s com a carregador d'arrencada\n"
+"Feu click en Configura per a executar l'auxiliar de configuració."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Desa la selecció de paquets"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automątica"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sķ, vull l'entrada automątica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1234,86 +1441,133 @@ msgstr "%d minuts"
#: ../../common.pm_.c:112
msgid "1 minute"
-msgstr "1 minute"
+msgstr "1 minut"
#: ../../common.pm_.c:114
#, c-format
msgid "%d seconds"
msgstr "%d segons"
+#
#: ../../common.pm_.c:159
-#, fuzzy
msgid "Can't make screenshots before partitioning"
-msgstr "No puc afegir cap més partició"
+msgstr "No es poden fer instantąnies abans de la partició"
#: ../../common.pm_.c:166
-#, fuzzy, c-format
+#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr ""
-"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
-"instal·lació"
+msgstr "Les instąncies estaran disponibles després d'instal·lar a %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Franēa"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
-msgstr ""
+msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
-#, fuzzy
+#
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
-msgstr "Belga"
+msgstr "Bčlgica"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
-msgstr ""
+msgstr "Repśblica Txeca"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
-msgstr "Alemany"
+msgstr "Alemanya"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
-#, fuzzy
+#
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
-msgstr "Grec"
+msgstr "Grecia"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
-#, fuzzy
+#
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
-msgstr "Noruec"
+msgstr "Noruega"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
-#, fuzzy
+#
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Consulteu"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
-msgstr "Italią"
+msgstr "Itąlia"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
-#, fuzzy
+#
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
-msgstr "sčrie"
+msgstr "Ąustria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
+msgstr "Estats Units"
+
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Model desconegut"
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Nou"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Servidor"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Punt de muntatge"
+
+#
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Si us plau entreu la velocitat d'escriptura del cd"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
msgstr ""
+#: ../../diskdrake/dav.pm_.c:92
+msgid "Server: "
+msgstr "Servidor: "
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Punt de muntatge: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opcions: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cņpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1326,18 +1580,9 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al comenēament del disc"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Error"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
-msgstr "Assistent"
+msgstr "Auxiliar"
#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
@@ -1360,7 +1605,7 @@ msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detalls"
@@ -1376,10 +1621,10 @@ msgstr "FAT"
msgid "HFS"
msgstr "HFS"
+#
#: ../../diskdrake/hd_gtk.pm_.c:323
-#, fuzzy
msgid "Journalised FS"
-msgstr "ha fallat el muntatge"
+msgstr "Journalised FS"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
@@ -1387,15 +1632,15 @@ msgstr "SunOS"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
-msgstr "Intercanvia"
+msgstr "Intercanvi"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Altres"
@@ -1403,12 +1648,12 @@ msgstr "Altres"
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
@@ -1418,7 +1663,7 @@ msgstr "Tipus"
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Suprimeix"
@@ -1426,84 +1671,84 @@ msgstr "Suprimeix"
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:172
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
-msgstr "Trieu una acció"
+msgstr "Trieu una partició"
-#: ../../diskdrake/interactive.pm_.c:172
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
-msgstr "Crea una nova partició"
+msgstr "Escolliu una altra partició"
-#: ../../diskdrake/interactive.pm_.c:197
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
-msgstr "Ext2"
+msgstr "Sortir"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake/interactive.pm_.c:248
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Voleu comprovar la configuració?"
+msgstr "Voleu grabar els modificacions a /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Assigna automąticament"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Més"
-#: ../../diskdrake/interactive.pm_.c:263
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
-msgstr "Informació del correu"
+msgstr "Informació del disc dur"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primąries"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1511,35 +1756,35 @@ msgstr ""
"Per tenir més particions, suprimiu-ne una per poder crear una partició "
"ampliada"
-#: ../../diskdrake/interactive.pm_.c:305
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:306
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
-msgstr "Rescata la taula de particions"
+msgstr "Restaura la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:309
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
-msgstr "Rescata la taula de particions"
+msgstr "Recarrega la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:314
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
-msgstr "Muntatge automątic del suport extraļble"
+msgstr "Desmuntant el medi del suport extraļble"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1547,11 +1792,11 @@ msgstr ""
"La cņpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Advertčncia"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1559,131 +1804,114 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "S'estą intentant rescatar la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:362
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
-msgstr "Informació del correu"
+msgstr "Informació detallada"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Punt de muntatge"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opcions"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Punt de muntatge: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Preferčncia: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
-msgstr "S'estą formatant el fitxer de loopback %s"
+msgstr "Esborrar el fitxer de loopback?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
-msgstr ""
+msgstr "Canviant de ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1691,134 +1919,139 @@ msgstr ""
"No es pot anul·lar el punt de muntatge, perquč aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "On voleu muntar el dispositiu %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els lķmits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "S'estą canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cņpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake/interactive.pm_.c:652
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
-msgstr "Mida en MB: "
+msgstr "Nova Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaēar?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
-msgstr "A quin sector us voleu desplaēar?"
+msgstr "A quin sector ho voleu moure?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "S'estą desplaēant"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "S'estą desplaēant la partició..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
-msgstr "Nom real"
+msgstr "Proporcioneu un nom de fitxer"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja estą utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm_.c:834
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
-msgstr "Opcions del mņdul:"
+msgstr "Opcions de montatge:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
-msgstr ""
+msgstr "Diversos"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Quins paquets voleu instal·lar"
+msgstr "El paquet %s s'ha d'instal·lar. El voleu instal·lar?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1830,7 +2063,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarą, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1843,7 +2076,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1854,166 +2087,170 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurą al disc!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrą tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "S'estą formatant"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'estą formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "S'estą formatant la partició %s"
-#: ../../diskdrake/interactive.pm_.c:1027
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
-msgstr "l'mkraid ha fallit"
+msgstr "Fitxers ocults"
-#: ../../diskdrake/interactive.pm_.c:1027
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
+msgstr "Moveu els fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
+"El directori %s encara conté dades\n"
+"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
-msgstr "No hi ha prou espai lliure per assignar noves particions"
+msgstr "Movent fitxers a la nova partició"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
-msgstr ""
+msgstr "Copiant %s"
-#: ../../diskdrake/interactive.pm_.c:1047
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1049
+#, c-format
msgid "Removing %s"
-msgstr "Resolució: %s\n"
+msgstr "Esborrant %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
-msgstr ""
+msgstr "la partició %s ara és %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1102
+#, c-format
msgid "Cylinder %d to %d\n"
-msgstr "Cilindre %d a cilindre %d\n"
+msgstr "Cilindre %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:1108
+#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "Fitxer(s) de loopback: %s\n"
+msgstr ""
+"Fitxer(s) de loopback:\n"
+" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-"La partició s'ha arrencat per defecte\n"
+"Partició arrencada per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2022,10 +2259,10 @@ msgid ""
msgstr ""
"\n"
"És possible que aquesta partició sigui\n"
-"una partició de programa de control;\n"
+"una partició de Controladors;\n"
"és millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2037,77 +2274,74 @@ msgstr ""
"especial és per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capēals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Informació: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opcions: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
-msgstr "Tipus de sistema de fitxers: "
+msgstr "Clau d'encriptació del sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
-msgstr ""
+msgstr "Escolliu la clau d'encriptació del sistema de fitxers"
-#: ../../diskdrake/interactive.pm_.c:1177
-#, fuzzy, c-format
+# c-format
+#: ../../diskdrake/interactive.pm_.c:1179
+#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-"Aquesta contrasenya és massa senzilla (ha de tenir com a mķnim %d carącters)"
+"Aquesta clau d'encriptació és massa senzilla (ha de tenir com a mķnim %d "
+"carącters)"
-#: ../../diskdrake/interactive.pm_.c:1178
-#, fuzzy
+#
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
-msgstr "Les contrasenyes no coincideixen"
+msgstr "Les claus d'encriptació no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
-msgstr ""
+msgstr "Clau d'encriptació"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
-msgstr ""
+msgstr "Clau d'encriptació (altra cop)"
+#
#: ../../diskdrake/removable.pm_.c:47
-#, fuzzy
msgid "Change type"
-msgstr "Canvia el tipus de partició"
+msgstr "Canvia el tipus"
+#
#: ../../diskdrake/removable_gtk.pm_.c:28
-#, fuzzy
msgid "Please click on a medium"
-msgstr "Si us plau, feu clic a una partició "
+msgstr "Si us plau, feu clic a un medi"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
@@ -2135,40 +2369,38 @@ msgid ""
msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
msgid "Username"
msgstr "Nom d'usuari"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "Domini del NIS"
+msgstr "Domini"
+#
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
-#, fuzzy
msgid "Search servers"
-msgstr "servidor DNS"
+msgstr "Cerca servidors"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "no sé com formatar %s amb el tipus %s"
+msgstr "No sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
-msgstr ""
+msgstr "La partició a muntar %s en el directori %s ha fallat"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
-msgstr "s'ha produļt un error en muntar %s: %s"
+msgstr "s'ha produļt un error en desmuntar %s: %s"
#: ../../fsedit.pm_.c:21
msgid "simple"
@@ -2176,67 +2408,68 @@ msgstr "senzill"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "amb /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de comenēar amb una /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lņgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:500
-#, fuzzy
+#
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
-"muntatge\n"
+"Necessiteu un sistema de fitxers real (ext2/ext3, reiserfs, xfs o jfs) per a "
+"aquest punt de muntatge\n"
-#: ../../fsedit.pm_.c:502
-#, fuzzy, c-format
+#: ../../fsedit.pm_.c:503
+#, c-format
msgid "You can't use an encrypted file system for mount point %s"
-msgstr "No podeu utilitzar un volum lņgic LVM per al punt de muntatge %s"
+msgstr ""
+"No podeu utilitzar un sistema d'arxius encriptat per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:560
-#, fuzzy
+#
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignació automątica"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
-msgstr ""
+msgstr "Res a fer"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produļt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2245,258 +2478,260 @@ msgstr ""
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "No teniu cap partició!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Utilitza la detecció automątica"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "General"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Targeta de memņria (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "s'estą formatant"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Canvia el tipus de partició"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Surt"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Ajuda"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Ajuda/_Quant a.."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Mņdul"
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
-msgstr "Targeta de memņria (DMA)"
+msgstr ""
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Cancel·la"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Mņdul"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Descripció"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autenticació"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Seleccioneu el fitxer"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Dispositiu de la passarel·la"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 botons"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Surt"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Ajuda..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "_Quant a..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Exploració automątica"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecció del disc dur"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informació del maquinari"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura el ratolķ"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Mostra la informació"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Configura el ratolķ"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Si us plau, espereu"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d segons"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą esborrant la impressora \"%s\"..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Detecció automątica"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "General"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Exploració automątica"
+msgid "Card model :"
+msgstr "Targeta de memņria (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Canvia el tipus"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "carrega parąmetres"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -2528,6 +2763,43 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"GNU/Linux és un sistema multiusuari, i aixņ vol dir que cada usuari pot "
+"tenir les seves\n"
+"preferencies, els seus fitxers, etc... Podeu llegir la guia de l'usuari "
+"``User Guide''\n"
+"per aprendre més coses. Perņ a diferčncia del \"root\", que és "
+"l'administrador, els usuaris\n"
+"que afegiu aquķ no se'ls permetrą de modificar res excepte els seus fitxers\n"
+"i la seva configuració. He de crear un usuari com a mķnim\n"
+"per a vós. Aquest compte és en el que haurķeu d'entrar per un śs\n"
+"habitual. Tot i que es molt prąctic entrar en el sistema com a \"root\" cada "
+"dia,\n"
+"pot ser molt perillós! La més petita errada podrķa significar que el "
+"sistema\n"
+"ja no funcionés més. Si comet una gran errada com un usuari normal,\n"
+"pot perdre alguna informació, perņ no tot el sistema.\n"
+"\n"
+"Primer, heu d'entrar el vostre nom real. Aixņ no és necessari, tot i que\n"
+"podeu teclejar el quč volgueu. DrakX agafarą la primera paraula\n"
+"que heu entrat en la casella i la copiarą en el \"User\n"
+"name\". Aquest és el nom que utilitzarą aquest usuari per entrar en el "
+"sistema.\n"
+"El podeu canviar si voleu. Després heu d'entrar una contrasenya. Una\n"
+"contrasenya d'un usuari no privilegiat (habitual) no és tant important com "
+"la del \"root\"\n"
+"des del punt de vista de la seguretat, perņ no hi ha cap raó per menystenir-"
+"ho: al cap i a\n"
+"la fi, els vostres fitxers estan en risc.\n"
+"\n"
+"Si cliqueu en \"Acceptar usuari\", després en podreu afegir tants com "
+"volgueu. Afegiu\n"
+"un usuari per tots el vostres amics: el vostre pare o la vostra germana, per "
+"exemple.\n"
+"Quan acabeu d'afegir tants usuaris com volgueu, seleccioneu \"D'acord\".\n"
+"\n"
+"Clicar el butó \"Avanēat\" us permet de canviar el \"shell\" per defecte "
+"d'aquest\n"
+"usuari (bash per defecte)."
#: ../../help.pm_.c:41
msgid ""
@@ -2563,7 +2835,7 @@ msgid ""
msgstr ""
"Aquestes són les particions de Linux existents que s'han detectat a la\n"
"vostra unitat de disc dur. Podeu conservar les eleccions fetes per "
-"l'assistent,\n"
+"l'auxiliar,\n"
"són adequades per a un śs normal. Si les canvieu, heu de definir una "
"partició\n"
"root (\"/\"); no escolliu una partició massa petita, o no podreu instal·lar\n"
@@ -2613,6 +2885,11 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
+"La instal·lació del Mandrake Linux estą repartida en diversos CD-ROMs. "
+"DrakX\n"
+"sap si un paquet seleccionat és d'un altre CD-ROM i expulsarą el CD actual i "
+"li\n"
+"demanarą que n'inserti un altre a mesura que ho necessiti."
#: ../../help.pm_.c:77
msgid ""
@@ -2666,6 +2943,73 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
+"Ara ha arribat el moment d'especificar quins programes voleu instal·lar en "
+"el\n"
+"sistema. Hi ha milers de paquets en el Mandrake Linux, i\n"
+"se suposa que vós no els coneixeu certerament.\n"
+"\n"
+"Si esteu fent una instal·lació estąndar des del CD-ROM, primer se us "
+"preguntarą\n"
+"que especifiqueu els CDs que teniu (només en mode Expert). Comproveu\n"
+"les etiquetes dels CDs i resalteu el quadre corresponent als CDs que teniu "
+"per a fer\n"
+"la instal·lació. Cliqueu \"D'acord\" quan volgueu continuar.\n"
+"\n"
+"Els paquets estan ordenats en grups que corresponen a un śs particular de "
+"la\n"
+"mąquina. Els grups també estan ordenats en quatre seccions:\n"
+"\n"
+" * \"Workstation\": si voleu utilitzar l'ordinador com una estació de "
+"treball, selecciona\n"
+"un grup o més dels corresponents;\n"
+"\n"
+" * \"Desenvolupament\": si la vostra mąquina s'ha d'utilitzar per a "
+"programar, escolliu\n"
+"el(s) grup(s) desitjat(s);\n"
+"\n"
+" * \"Servidor\": si l'ordinador s'ha d'utilitzar com a servidor, serą "
+"possible de\n"
+"seleccionar quins serveis més habituals voleu instal·lar en el vostre\n"
+"ordinador;\n"
+"\n"
+" * \"Entorn Grąfic\": finalment, aquķ és un escollireu quin és el vostre\n"
+"entorn grąfic preferit. Heu de seleccionar com a mķnim un entorn grąfic si "
+"voleu tenir\n"
+"una estació de treball grąfica!\n"
+"\n"
+"Moure el cursor per sobre un nom de grup farą que s'ensenyi un breu "
+"explicació\n"
+"d'aquest grup. Si deseleecioneu tots els grups quan estigueu fen una "
+"instal·lació\n"
+"des de zero (en contraposició a una millora-upgrade-), se us presentarą un "
+"diąleg proposant-vos\n"
+"diferents opcions per a una instal·lació mķnima:\n"
+"\n"
+" * \"Amb X\": instal·lar els mķnims paquets possibles per a tenir un entorn "
+"grąfic\n"
+"funcional;\n"
+"\n"
+" * \"Amb Documentació Bąsica\": instal·lar el sistema base més utilitats "
+"basiques\n"
+"i la seva documentació. Aquesta instal·lació és apropiada per \n"
+"definir un sistema servidor;\n"
+"\n"
+" * \"Instal·lació Realment Mķnima\": aixņ instal·larą el mķnim necessari per "
+"a\n"
+"tenir un sistema Linux funcionat, en lķnia de comandes només. Aquesta "
+"instal·lació és\n"
+"de 65Mb.\n"
+"\n"
+"Podeu comprovar la casella de \"Selecció individual de paquets\", que és "
+"forēa śtil si\n"
+"teniu per la mą els diversos paquets que s'ofereixen per instal·lar o si "
+"voleu tenir control total\n"
+"sobre el quč s'instal·larą.\n"
+"\n"
+"Si heu comenēat la instal·lació en el mode \"Upgrade\", podeu deseleccionar "
+"tots els grups\n"
+"si voleu evitar que s'instal·li cap nou paquet. Aixņ és śtil per a reparą o\n"
+"actualitzar un sistema existent."
#: ../../help.pm_.c:128
msgid ""
@@ -2704,6 +3048,55 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
+"Finalment, depenent de si heu seleccionat paquets individuals o no, se us\n"
+"presentarą un arbre amb tots els paquets calssificats per grups i\n"
+"subgrups. Mentre navegueu per l'arbre, podeu seleccionar grups complets,\n"
+"subgrups, o paquets individuals.\n"
+"\n"
+"Cada cop que seleccioneu un paquet de l'arbre, apareix una descripció a la\n"
+"dreta. Quan heu acabat la selecció de paquets, cliqueu en el butó de "
+"\"Instal·lar\",\n"
+"que iniciarą el procés d'instal·lació. Depenent de la velocitat del vostre "
+"maquinari\n"
+"i del nśmero de paquets que necessitin ser instal·lats, pot tardar una bona "
+"estona\n"
+"que el procés acabi. Una estimació dels temps que durarą la instal·lació de "
+"tots els\n"
+"paquets s'ensenya en la pantalla, per ajudar-lo a estimar si té prou temps\n"
+"per gaurdir d'un tassa de té o d'un cafč.\n"
+"\n"
+"!! Si heu seleccionat un paquet del servidor, intencionadament o perquč\n"
+"forma part d'un gran grup, se us preguntarą per confirmar que realment "
+"voleu\n"
+"aquets paquets servidors que siguin instal·lats. Sota Mandrake Linux, "
+"qualsevol paquet\n"
+"de servidor instalat s'arranca per defecte quan el sistema s'inicia. Tot i "
+"que siguin segurs i\n"
+"no tinguin cap problema quan la distribució va ser creada, podria succeir "
+"que\n"
+"forats de seguretat fossin descoberts després que aquesta veresió de "
+"Mandrake Linux fos\n"
+"finalitzada. Si no sabeu que se suposa que fa un servei en particular\n"
+"o perquč s'estą instal·lant, aleshores cliqueu en \"No\". Clicar \"Sķ\" "
+"instal·larą\n"
+"els serveis llistats i farą que els serveis llistats siguin arrancats "
+"automąticament\n"
+"per defecte. !!\n"
+"\n"
+"La opció de \"Dependčncies Automątiques\" simplement no permet que s'ensenyi "
+"el diąleg\n"
+"que apareix quan l'instal·lador selecciona automąticament un paquet. Aixņ\n"
+"passa perquč s'ha determinat que es necessita safisfer una dependčncia d'un\n"
+"altre paquet perquč la instal·lació es completi correctament.\n"
+"\n"
+"La icona petita d'un disquet a baix de la llista permet de carregar una "
+"llista\n"
+"de paquets escollist en una prčvia instal·lació. Clicant en aquesta icona\n"
+"el sistema us demanarą que inserteu un disquet creat prčviament al final "
+"d'una altra\n"
+"instal·lació. Mireu la segona suggerčncia de l'śltim pas per saber com crear "
+"aquest tipus\n"
+"de disquet."
#: ../../help.pm_.c:164
msgid ""
@@ -2728,6 +3121,33 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
+"Ara us proposem de configurar la vostra connexió de xarxa/Internet. Si "
+"voleu\n"
+"connectar l'ordinador a Internet o a una xarxa local, cliqueu\n"
+"\"D'acord\". La autodetecció de dispositius de xarxa i modems serą "
+"arrencada. Si\n"
+"la detecció fallés, desseccioneu la casella \"Usar auto detecció\" la "
+"prņxima vegada. Vós\n"
+"podeu escollir de no configurą la xarxa, o fer-ho més tard; en aquest cas, \n"
+"simplement cliqueu el butó \"Cancel·la\".\n"
+"\n"
+"Les connexions disponibles són: modem tradicional, modem ISDN-XDSI, connexió "
+"ADSL,\n"
+"modem de cable, i finalment una simple connexió de xarxa local (Ethernet).\n"
+"\n"
+"Aquķ, no detallarem cada connexió. Simplement assegureu-vos que teniu\n"
+"tots els parąmetres del vostre proveidor d'acces a Internet o de "
+"l'administrador del\n"
+"sistema.\n"
+"\n"
+"Podeu consultar la ``Guia de l'Usuari'' en el capķtol que versa sobre les "
+"connexions a Internet\n"
+"per a obtenir detalls sobre la configuració, o simplement esperar fins que "
+"el vostre sistema estigui\n"
+"instalat i usar el programa descrit per a configurar la vostra connexió.\n"
+"\n"
+"Si voleu configurar la xarxa més tard després de la instal·lació, o si ja \n"
+"heu acabat de configurar la connexió de xarxa, cliqueu \"Cancel·la\"."
#: ../../help.pm_.c:186
msgid ""
@@ -2777,6 +3197,24 @@ msgid ""
"actually install on your machine a time server which can be optionally used\n"
"by other machines on your local network."
msgstr ""
+"GNU/Linux maneja el temps en GMT (Greenwich Mean Time) i el tradueix en el "
+"temps local\n"
+"d'acord a la zona hora seleccionada. De tota manera és possible de "
+"desactivar-ho\n"
+"deseleccionant \"Rellotge del Programari en GMT \" de manera que el\n"
+"rellotge del programari és el mateix que el rellotge del sistema. Aixņ és "
+"convenient quan\n"
+"la mąquina també te instal·lat un altre sistema operatiu com Windows.\n"
+"\n"
+"La opció de \"Sincronització automątica de la hora\" regularą "
+"automąticament\n"
+"la hora connectant-se a un servidor d'hora remot a Internet. En la llista\n"
+"presentada, escolliu un servidor a prop vostre. Per tant, heu de tenir \n"
+"una connexió a Internet que funcioni per a que aquesta caracterķstica "
+"funcioni. També\n"
+"instal·larą en la seva mąquina un servidor d'hora que pot ser usat "
+"opcionalment per altres\n"
+"ordinadors en la xarxa local."
#: ../../help.pm_.c:217
msgid ""
@@ -2799,6 +3237,27 @@ msgid ""
"means that the configuration was wrong and the test will automatically end\n"
"after 10 seconds, restoring the screen."
msgstr ""
+"X (per X Window System) és el cor de la interfķcie grąfica del GNU/Linux\n"
+"i és on tots els entorns grąfics (KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) enpaquetats en el Mandrake Linux van a parar. En aquesta "
+"secció, DrakX\n"
+"mirarą de configurar X automąticament.\n"
+"\n"
+"És molt extrany que falli, a no ser que el programari sigui molt vell (o\n"
+"molt nou). Si se'n surt, iniciarą X automąticament amb la millor\n"
+"resolució possible, depenent de la mida del monitor. Aleshores apareixerą "
+"una finestra\n"
+"i us preguntarą si la podeu veure.\n"
+"\n"
+"Si esteu fent una instal·lació \"Experta\", entrareu en l'auxiliar\n"
+"de la configuration de X. Mireu la corresponent secció del manual per a més\n"
+"informació sobre l'auxiliar.\n"
+"\n"
+"Si podeu veure el missatge durant el test, i responeu \"Sķ\", aleshores "
+"DrakX\n"
+"seguirą amb el següent pas. Si no podeu veure el missatge, aixņ significa\n"
+"que la configuració és errņnia i que el test finalitzarą automąticament en\n"
+"10 segons, restaurant la pantalla."
#: ../../help.pm_.c:237
msgid ""
@@ -2813,6 +3272,22 @@ msgid ""
"server, choose \"FBDev\". This is a failsafe option which works with any\n"
"modern graphics card. Then choose \"Test again\" to be sure."
msgstr ""
+"la primera vegada que heu provat la configuració de X, podeu no estar gaire "
+"satisfet\n"
+"amb la presentació (pantalla massa petita, correguda amb a l'esquerra o "
+"dreta, ...). Per tant,\n"
+"tot i que X inicļi correctament, DrakX li preguntarą si la configuració li "
+"agrada.\n"
+"Li proposarą de canviar-la bó i proporcionant-li una llista de modes vąlids\n"
+"que ha trobat, perquč en seleccioni un.\n"
+"\n"
+"Com a śltima opció, si encara no pot fer funcionar les X , escolliu "
+"\"Canviar\n"
+"targeta grąfica\", seleccioneu \"Unlisted card\", i quan se us pregunti "
+"quin\n"
+"servidor, escolliu \"FBDev\". Aquesta és una opció de seguretat que funciona "
+"en qualsevol\n"
+"targeta grąfica moderna. Aleshores escolliu \"Test again\" per estar segur."
#: ../../help.pm_.c:249
msgid ""
@@ -2822,6 +3297,13 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
+"Finalment, se li preguntarą si vol veure una interfķcie grąfica\n"
+"en iniciar. Noteu que aquesta pregunta se li farą encara que no hągiu fet el "
+"test\n"
+"de la configuració. Ņbviament, voldreu contestar \"No\" si l'ordinador ha de "
+"ser\n"
+"un servidor, o si no poguessiu completar la configuració de la\n"
+"pantalla."
#: ../../help.pm_.c:256
msgid ""
@@ -2848,6 +3330,36 @@ msgid ""
"you do not need. You will not have to format it since DrakX will rewrite\n"
"the whole disk."
msgstr ""
+"El CD-ROM del Mandrake Linux té un mode de rescat. Hi podeu accedir\n"
+"arrencant des del CD-ROM, prement la tecla >>F1<< quan 'boota' i teclejant "
+">>rescue<<\n"
+"a la lķnia de comandes. Perņ en el cas que l'ordinador no pugui arrencar des "
+"del CD-ROM,\n"
+"haureu de tornar a aquest passos per ajuda en com a mķnim dos situacions:\n"
+"\n"
+" * quan s'instal·la el carregador d'arrencada, DrakX reescriurą el sector "
+"d'arrencada(MBR)\n"
+"del disc dur principal(a no ser que utilitzeu un altre carregador), per "
+"permetre-us\n"
+"arrencar el Windows o GNU/Linux (assuming que teniu Windows en\n"
+"l'ordinador). Si heu de reinstal·lar Windows, el procés de la instal·lació "
+"de Microsoft\n"
+"reescriurą el sector d'arrencada, i no sereu capaē d'arrencar\n"
+"GNU/Linux!\n"
+"\n"
+" * si apareix un problema i no podeu arrencar GNU/Linux des del disc dur,\n"
+"aquest disquet serą l'śnica manera d'arrencar GNU/Linux. El disquet\n"
+"conté un conjunt d'eines per a restaurar el sistema, que ha\n"
+"fallat degut a un problemes d'electricitat, un error d'escriptura "
+"desafortunat, un error\n"
+"d'escriptura en una contrasenya, o una altra raó.\n"
+"\n"
+"Quan feu clic en aquest pas, el sistema us demanarą que entreu un disquet en "
+"la unitat de\n"
+"disquet. El disquet que entreu ha d'estar buit o contenir dades que no "
+"necessiteu.\n"
+"No fa falta que el formategeu perquč el DrakX reescriurą\n"
+"tot el disc."
#: ../../help.pm_.c:280
msgid ""
@@ -2928,7 +3440,7 @@ msgstr ""
"Atčs que els efectes d'aquest procés solen ser irreversibles, el "
"particionament \n"
"us pot espantar si sou un usuari sense experičncia.\n"
-"Aquest assistent simplifica aquest procés; abans de comenēar, consulteu el\n"
+"Aquest auxiliar simplifica aquest procés; abans de comenēar, consulteu el\n"
"manual i preneu-vos el temps que calgui.\n"
"\n"
"\n"
@@ -2944,10 +3456,10 @@ msgstr ""
"\n"
"\n"
"Si les particions encara no s'han definit, les heu de crear.\n"
-"Per fer-ho, utilitzeu l'assistent que trobareu més amunt; segons la\n"
+"Per fer-ho, utilitzeu l'auxiliar que trobareu més amunt; segons la\n"
"configuració del vostre disc dur, hi ha diverses solucions possibles:\n"
"\n"
-"* Utilitzar una partició existent: l'assistent ha detectat al vostre\n"
+"* Utilitzar una partició existent: l'auxiliar ha detectat al vostre\n"
"disc dur una o més particions de Linux existents. Si voleu conservar-les,\n"
"escolliu aquesta opció.\n"
"\n"
@@ -3018,9 +3530,46 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Aquķ estem... La instal·lació és ara completa i el seu sistema GNU/Linux "
+"estą\n"
+"preparat per a ésser usat. Simplement premeu \"D'acord\" per a reiniciar el "
+"sistema. Podeu iniciar\n"
+"GNU/Linux o Windows, el que volgueu (si teniu doble arrencada), aixķ\n"
+"que l'ordinador s'hagi reiniciat.\n"
+"\n"
+"El butó \"Avanēat\" (en mode Expert) ensenya dos butons més per a:\n"
+"\n"
+" * \"generar disquet d'auto-instal·lació\": per a crear un disquet "
+"d'instal·lació\n"
+"que permetrą fer a una instal·lació completa sense l'ajuda d'un\n"
+"operador, semblant a la instal·lació que acabeu de configurar.\n"
+"\n"
+" Cal remarcar que dos opcions diferents son possibles després de clicar el "
+"butó:\n"
+"\n"
+" * \"Repetició\". Aquesta és una instal·lació parcialment automatitzada "
+"ja que\n"
+"el pas de particionar (i només aquest) es manté interactiu;\n"
+"\n"
+" * \"Automatitzat\". Instal·lació completament automatitzada: el disc dur "
+"és completament\n"
+"reescrit, totes les dades es perden.\n"
+"\n"
+" Aquesta caracterķstica és forēa śtil quan es fan instal·lacions a un bon "
+"grapat d'ordinadors\n"
+"similars. Mireu la secció d'auto-instal·lació en la nostra web;\n"
+"\n"
+" * \"Graba selecció de paquets\"(*): graba els paquets seleccionats tal com\n"
+"abans. Aleshores, quan feu una altra instal·lació, inserteu el disquet dins\n"
+"la unitat lectora i executeu la instal·lació. Aneu a la pantalla d'ajuda, "
+"premeu\n"
+"la tecla [F1], i telclegeu >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Necessiteu un disquet formatat en FAT (per a crear-ne un sota GNU/Linux, "
+"escriviu\n"
+"\"mformat a:\")"
#: ../../help.pm_.c:378
-#, fuzzy
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a filesystem).\n"
@@ -3048,32 +3597,31 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
"Les particions que s'acaben de definir s'han de formatar per poder-les\n"
-"utilitzar. El formatatge consisteix en crear-hi un sistema de fitxers).\n"
-"\n"
+"utilitzar. (El formatatge consisteix en crear-hi un sistema de fitxers).\n"
"\n"
"En aquest punt, potser voldreu tornar a formatar algunes de les particions\n"
"existents per eliminar les dades que contenen. Si és aixķ, seleccioneu les\n"
"particions que voleu formatar.\n"
"\n"
-"\n"
"Tingueu en compte que no cal tornar a formatar totes les particions que ja\n"
"existien; heu de tornar a formatar les particions que contenen el sistema\n"
"operatiu (com ara \"/\", \"/usr\" o \"/var\"), perņ no les que contenen "
"dades\n"
"que voleu conservar (habitualment, /home).\n"
"\n"
-"\n"
"Aneu amb compte en seleccionar les particions; després del formatatge, "
"totes\n"
"les dades s'hauran suprimit i no en podreu recuperar cap.\n"
"\n"
-"\n"
"Feu clic a \"D'acord\" quan estigueu a punt per formatar les particions.\n"
"\n"
-"\n"
-"Feu clic a \"Cancel·la\" si voleu seleccionar altres particions per "
+"Feu clic a \"Cancel·la\" si voleu seleccionar una altra partició per a "
"instal·lar\n"
-"el nou sistema Mandrake Linux."
+"el nou sistema Mandrake Linux.\n"
+"\n"
+"Cliqueu a \"Avanēat\" si voleu seleccionar particions que seran "
+"comprovades \n"
+"cercant per a blocs erronis en el disc."
#: ../../help.pm_.c:404
msgid ""
@@ -3104,6 +3652,23 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"Ara esteu instal·lant el Mandrake Linux, perņ és probable que alguns\n"
+"paquets hagin estat actualitzats desde la data de llanēament. Alguns errors "
+"poden haver\n"
+"estar resolts, i altres problemes de seguretat poden estar ja corretgits. "
+"Per a beneficiar-se \n"
+"d'aquestes actualitzacions, us proposem de baixar-les a través d'Internet. "
+"Escolliu\n"
+"\"Sķ\" si teniu una connexió amb Internet que funcioni, o \"No\" si voleu "
+"instal·lar-los\n"
+"més tard.\n"
+"\n"
+"Triar \"Sķ\" ensenya una llista de llocs des d'on les actualitzacions es "
+"poden\n"
+"obtenir. Escolliu el que estigui més a prop. Aleshores un arbre per a "
+"seleccionar\n"
+"apareix: comproveu la selecció, i premeu \"Instal·lar\" per a baixar-los i\n"
+"instal·lar els paquets seleccionats, o \"Cancel·la\" per a abortar."
#: ../../help.pm_.c:425
msgid ""
@@ -3113,6 +3678,14 @@ msgid ""
"terminate the installation. To continue with the installation, click on the\n"
"\"Accept\" button."
msgstr ""
+"Abans de continuar, hauria de llegir amb deteniment les cląsules de la "
+"llicčncia. Aquesta\n"
+"cobreix la totalitat de la distribució Mandrake Linux, i si no hi esteu "
+"d'acord amb\n"
+"tots els termes que hi ha, clique en el butó \"Refusar\" que acabarą la "
+"instal·lació\n"
+"immediatament. Per a continuar amb la instal·lació, feu clic en el\n"
+"butó \"Accept\"."
#: ../../help.pm_.c:432
msgid ""
@@ -3125,9 +3698,19 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
+"Ara és el moment de triar el nivell de seguretat desitjat per a \n"
+"l'ordinador. Com a norma general, com més exposat és un ordinador, i com "
+"més\n"
+"són vitals les dades guardades en ell, el nivell de seguretat hauria de ser "
+"més alt.\n"
+"Tanmateix, un nivell alt de seguretat s'obté generalment en contraposició a "
+"la\n"
+"facilitat d'śs. Mireu el capķtol \"msec\" del ``Manual de Referčncia''\n"
+"per a més informació sobre el significal dels nivells de seguretat.\n"
+"\n"
+"Si no sabeu quin escollir, deixeu la opció per defecte."
#: ../../help.pm_.c:442
-#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3207,61 +3790,67 @@ msgstr ""
"contrari,\n"
"s'han de definir particions al disc dur.\n"
"\n"
-"\n"
"Per crear particions, primer heu de seleccionar un disc dur. Podeu "
"seleccionar\n"
"el disc que s'ha de particionar fent clic a \"hda\" per a la primera unitat\n"
"IDE, \"hdb\" per a la segona o \"sda\" per a la primera unitat SCSI, etc.\n"
"\n"
-"\n"
"Per particionar el disc dur seleccionat, podeu utilitzar aquestes opcions:\n"
"\n"
-" * Buidar-ho tot: aquesta opció suprimeix totes les particions que hi ha\n"
-"al disc dur seleccionat.\n"
+" * \"Buidar-ho tot\": aquesta opció suprimeix totes les particions que hi "
+"ha\n"
+"al disc dur seleccionat;\n"
"\n"
-"\n"
-" * Assignació automątica: aquesta opció us permet crear automąticament "
+" * \"Assignació automątica\": aquesta opció us permet crear automąticament "
"les\n"
-"particions Ext2 i Intercanvi en l'espai lliure del disc dur.\n"
-"\n"
+"particions \"Ext2\" i Intercanvi en l'espai lliure del disc dur;\n"
"\n"
-" * Rescatar la taula de particions: si la taula de particions estą\n"
-"malmesa, podeu intentar recuperar-la mitjanēant aquesta opció. Aneu\n"
-"amb compte i penseu que aixņ pot fallar.\n"
+" * \"Més\": dóna accés a accions addicionals:\n"
"\n"
+" * \"Graba la taula de la particions\": guarda la taula de particions en "
+"un disquet. És śtil\n"
+"per a una posterior recuperació de la taula de particions si fou necessari. "
+"És recomana que\n"
+"utilitzeu aquest pas;\n"
"\n"
-" * Desfer: podeu utilitzar aquesta opció per anul·lar els canvis.\n"
+" * \"Restaura la taula de la particions\": permet restaurar la taula de "
+"particions que heu grabat prčviament\n"
+"al disquet;\n"
"\n"
+" * \"Rescata la taula de particions\": si la taula estą malmesa, vós "
+"podeu\n"
+"provar de recuperar-la utilitzant aquesta opció. Tingueu cura i enrecordeu-"
+"vos que\n"
+"pot fallar;\n"
"\n"
-" * Tornar a carregar: podeu utilitzar aquesta opció si voleu desfer\n"
-"tots els canvis i carregar la taula de particions inicial.\n"
-"\n"
-"\n"
-" * Assistent: Si voleu utilitzar un assistent per particionar el disc "
-"dur,\n"
-"podeu utilitzar aquesta opció, que és la més recomanable si no teniu massa\n"
-"experičncia en particionament.\n"
-"\n"
-"\n"
-" * Restaurar des de disquet: si, en una instal·lació anterior, vau desar\n"
-"la taula de particions en un disquet, podeu recuperar-la mitjanēant aquesta\n"
-"opció.\n"
+" * \"Recarrega la taula de particions\": descarta tots els canvis fets i "
+"recarrega lataula de particions\n"
+"inicial;\n"
"\n"
+" * \"Desmuntat de medis extraibles\": deseleccionar aquesta opció farą "
+"que els usuaris\n"
+"hagin de muntar i desmuntar les unitats de medis extraibles com els disquets "
+"i\n"
+"els CD-ROMs.\n"
"\n"
-" * Desar en disquet: si voleu desar la taula de particions en un disquet\n"
-"per poder-la recuperar, podeu utilitzar aquesta opció. És molt recomanable\n"
-"que l'utilitzeu.\n"
+" * \"Auxiliar\": utilitzeu aquesta opció si voleu usar un auxiliar per a "
+"particionar el vostre\n"
+"disc dur. Es recomana que l'utilitzeu si no teniu un bon coneixement en\n"
+"particionar;\n"
"\n"
+" * \"Desfer\": utilitzeu aquesta opció si voleu cancel·lar els canvis;\n"
"\n"
-" * Fet: quan hagueu acabat de particionar el disc dur, utilizeu aquesta\n"
-"opció per desar els canvis.\n"
+" * \"Canvia entre mode normal/expert\": permet accions addicionals en les "
+"particions\n"
+"(tipus, opcions, format) i dóna més informació;\n"
"\n"
+" * \"Fet\": quan hagiu acabat de particionar el vostre disc dur, aixņ\n"
+"grabarą els canvis al disc.\n"
"\n"
"Per a la vostra informació, podeu accedir a qualsevol opció mitjanēant el "
"teclat:\n"
"moveu-vos per les particions amb la tecles Tab i Fletxa amunt/Fletxa avall.\n"
"\n"
-"\n"
"Quan s'ha seleccionat una partició, podeu utilitzar:\n"
"\n"
" * Ctrl+C per crear una nova partició (quan se n'ha seleccionat\n"
@@ -3270,9 +3859,11 @@ msgstr ""
" * Ctrl+D per suprimir una partició\n"
"\n"
" * Ctrl+M per definir el punt de muntatge\n"
-" \n"
"\n"
-" \n"
+"Per a més informació sobre els diferents tipus de sistema de fitxers "
+"disponibles, llegiu\n"
+"el capķtol sobre ext2fs del ``Manual de Referčncia''.\n"
+"\n"
"Si esteu fent la instal·lació en un ordinador PPC, potser voldreu crear una\n"
"petita partició 'bootstrap' HFS d'un mķnim d'1 MB per a śs del carregador\n"
"d'arrencada 'yaboot'. Si decidiu fer-la una mica més gran, per exemple de\n"
@@ -3280,7 +3871,6 @@ msgstr ""
"del disc RAM per a situacions d'emergčncia durant l'arrencada."
#: ../../help.pm_.c:513
-#, fuzzy
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -3316,22 +3906,18 @@ msgstr ""
"Si us plau, trieu quina d'elles voleu redimensionar per instal·lar el nou\n"
"sistema operatiu Mandrake Linux.\n"
"\n"
-"\n"
-"Per a la vostra informació, cada partició estą identificada d'aquesta "
-"manera; \"Nom Linux\", \"Nom\n"
-"Windows\" \"Capacitat\".\n"
+"Cada partició estą identificada d'aquesta manera; \"Nom Linux\", \"Nom "
+"Windows\"\n"
+"\"Capacitat\".\n"
"\n"
"\"Nom Linux\" es compon de: \"tipus d'unitat de disc\", \"nśmero d'unitat de "
"disc\",\n"
"\"nśmero de la partició\" (per exemple, \"hda1\").\n"
"\n"
+"\"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i \n"
+"\"sd\" si és SCSI.\n"
"\n"
-"\"Tipus d'unitat de disc\" és \"hd\" si la vostre unitat de disc és IDE i "
-"\"sd\"\n"
-"si és SCSI.\n"
-"\n"
-"\n"
-"\"Nśmero de la unitat de disc\" és sempre una lletra després d'\"hd\" o \"sd"
+"\"Nśmero de la unitat de disc\" és sempre una lletra després de \"hd\" o \"sd"
"\".\n"
"Amb unitats de disc IDE:\n"
"\n"
@@ -3347,9 +3933,8 @@ msgstr ""
" * \"d\" significa \"unitat de disc esclava en el controlador IDE secundari"
"\".\n"
"\n"
-"\n"
"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primąria de disc"
-"\", una \"b\" significa \"unitat secundąria de disc\", etc...\n"
+"\", una \"b\"significa \"unitat secundąria de disc\", etc...\n"
"\n"
"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
"primer disc o partició s'anomena \"C:\")."
@@ -3360,7 +3945,6 @@ msgstr ""
"Si us plau, tingueu pacičncia. Aquesta operació pot trigar diversos minuts."
#: ../../help.pm_.c:547
-#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3398,13 +3982,35 @@ msgid ""
"difficult if you do not have a good knowledge of GNU/Linux, so do not\n"
"choose this unless you know what you are doing."
msgstr ""
-"Escolliu \"Instal·lació\" si no teniu cap versió anterior de Mandrake Linux\n"
-"instal·lada a l'ordinador o si voleu utilitzar diversos sistemes operatius.\n"
-"\n"
-"\n"
-"Escolliu \"Actualització\" si voleu actualitzar un versió de Mandrake Linux "
-"que ja estą instal·lada.\n"
-"\n"
+"DrakX necessita saber si voleu un instal·lació per defecte (\"Recomanada\")\n"
+"o si voleu tenir més control sobre la instal·lació (\"Expert\"). També "
+"podeu\n"
+"escollir de fer una instal·lació nova o una actualització d'un sistema "
+"Mandrake Linux\n"
+"ja existent:\n"
+"\n"
+" * \"Instal·lar\": esborra completament l'antic sistema operatiu. De fet, "
+"depenent de\n"
+"quines dades hi hagi en la vostra mąquina, podrą mantenir algunes antigues "
+"partitions (Linux\n"
+"o altres) sense modificar;\n"
+"\n"
+" * \"Actualització\": the classe d'instal·lació permet d'actualitzar els "
+"paquets\n"
+"que hi ha instal·lats en el sistema Mandrake Linux. Manté les particions\n"
+"dels discs durs i també les configuracions de l'usuari. Tota la resta de "
+"passos de\n"
+"configuració es mantenen accessibles respecte la instal·lació per defecte;\n"
+"\n"
+" * \"Actualitzar Paquets Només\": aquesta nova classe permet d'actualitzar "
+"un\n"
+"istema Mandrake Linux tot mantenint totes les configuracions del sistema\n"
+"sense modificar. És possible també afegir nous paquets a la nova\n"
+"instal·lació.\n"
+"\n"
+"Les actualitzacions harien de funcionar bé per a sistemes Mandrake Linux a "
+"partir de\n"
+"la versió \"8.1\".\n"
"\n"
"Segons els vostres coneixements de GNU/Linux, podeu escollir un dels "
"nivells\n"
@@ -3413,26 +4019,14 @@ msgstr ""
"\n"
"* Recomanada: si mai no heu instal·lat un sistema operatiu GNU/Linux,\n"
"escolliu aquest. La instal·lació serą molt fącil i només se us faran\n"
-"unes poques preguntes.\n"
-"\n"
-"\n"
-"* Personalitzada: si coneixeu prou el GNU/Linux, podeu escollir l'śs\n"
-"principal (estació de treball, servidor, desenvolupament) del vostre\n"
-"sistema. Haureu de respondre més preguntes que en la instal·lació\n"
-"\"Recomanada\", de manera que, si escolliu aquest tipus d'instal·lació,\n"
-"haureu de saber com funciona el GNU/Linux.\n"
-"\n"
+"unes poques preguntes;\n"
"\n"
"* Per a experts: si domineu el GNU/Linux, trieu aquest tipus\n"
-"d'instal·lació. Com en el cas de la instal·lació \"Personalitzada\"\n"
-"podreu escollir l'śs principal del vostre ordinador (estació de treball,\n"
-"servidor, desenvolupament). Aneu amb molt de compte abans de triar aquest\n"
-"tipus d'instal·lació; podreu realitzar una instal·lació altament\n"
-"personalitzada.\n"
-" La resposta a algunes preguntes pot ser molt difķcil si no teniu sņlids\n"
-"coneixements de GNU/Linux. Per tant, no escolliu aquest tipus "
-"d'instal·lació\n"
-"tret que sapigueu quč esteu fent."
+"d'instal·lació. La instal·lació per a experts us permetrą de realitzar\n"
+"una instal·lació molt personalitzada. La resposta a algunes preguntes\n"
+"pot ser molt difķcil si no teniu sņlids coneixements de GNU/Linux. Per "
+"tant,\n"
+"no escolliu aquest tipus d'instal·lació tret que sapigueu quč esteu fent."
#: ../../help.pm_.c:584
msgid ""
@@ -3448,6 +4042,19 @@ msgid ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
msgstr ""
+"Normalment, DrakX selecciona el teclat correctament automąticament (depenent "
+"del\n"
+"llenguatge que escolliu) i no veure mai aquest pas. Tanmateix, vós\n"
+"podrieu tenir un teclat que correspon exactament amb el vostre llenguatge: "
+"per\n"
+"exemple, si sóu un suķs que parla anglčs, encara voldreu que el\n"
+"teclat sigui suķs. O si parleu anglčs per viviu\n"
+"al Quebec, us podeu trobar en la mateixa situació. En tots dos casos,\n"
+"haureu de tornar a aquest pas de la instal·lació i seleccionar un\n"
+"teclat apropiat de la llista.\n"
+"\n"
+"Feu clic en el butó \"Més\" perquč se us presenti la llista completa de\n"
+"teclats suportats."
#: ../../help.pm_.c:597
msgid ""
@@ -3463,6 +4070,25 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"Per favor, escolliu el vostre idioma preferit per a instal·lar per usar en "
+"el dia a dia.\n"
+"\n"
+"Cliqueu en el butó \"Avanēat\" us permetrą de seleccionar un altre\n"
+"idioma per a instal·lar en l'estació de treball. La selecció de diversos "
+"llenguatges\n"
+"farą que s'intal·lin els arxius especifics de l'idioma per a la documentació "
+"i l'śs de\n"
+"les aplicacions. Per exemple, si tindreu usuaris que utilitzin l'espanyol, a "
+"més a més\n"
+"d'usuaris de l'anglčs, en la vostra maquina, seleccioneu l'Anglčs com "
+"l'idioma principal\n"
+"i en l'arbre de la secció Avanēada feu clic sobre la caixa de \"Espanyol|"
+"Espanya\".\n"
+"\n"
+"Cal remarcar que es poden instal·lar mśltiples idiomes. Un cop hagueu "
+"seleccionat els\n"
+"mśltiples idiomes que volgueu , feu clic sobre el butó \"D'acord\" per a "
+"continuar."
#: ../../help.pm_.c:610
msgid ""
@@ -3479,14 +4105,31 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
+"DrakX generalment detecta el nśmero de butons que té el vostre ratolķ. Si "
+"no,\n"
+"assumeix que teniu un ratoli de dos butons i implementa l'emulació de "
+"tercer\n"
+"butó. DrakX detectarą automąticament si el ratolķ és PS/2, serie o\n"
+"USB.\n"
+"\n"
+"Si voleu especificar un tipus diferent de ratoli seleccioneu el tipus "
+"apropiat de\n"
+"la llista presentada.\n"
+"\n"
+"Si escolliu un ratolķ diferent del per defecte, una pantalla de test serą "
+"mostrada.\n"
+"Utilitzeu els butons i la roda per a verificar que la configuració és\n"
+"correcta. Si el ratolķ no funciona bé, premeu la barra espaiadora or "
+"[Return]\n"
+"per a \"Cancel·lar\" i escollir altre cap."
#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
-"Windows s'anomena ttyS0 en GNU/Linux."
+"Si us plau, seleccioneu el port correcte. Per exemple, el port \"COM1\" en\n"
+"Windows s'anomena \"ttyS0\" en GNU/Linux."
#: ../../help.pm_.c:628
msgid ""
@@ -3525,6 +4168,52 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
+"Aquest és el punt més important respecte la seguretat del sistema\n"
+"GNU/Linux: heu d'entrar la contrasenya de l'usuari \"root\". \"root\" és "
+"l'administrador\n"
+"del sistema i és lśnic autoritzat a fer actualitzacions, afegir usuaris,\n"
+"canviar la configuració del tot el sistema, etc... De fet, \"root\" pot\n"
+"fer de tot! Per aixņ heu d'escollir una contrasenya que sigui dificil "
+"d'endevinar.\n"
+"DrakX us dirą si és massa fącil. Tal com podeu veure, podeu escollir\n"
+"de no entrar cap contrasenya, perņ nosaltres li desaconsellem si ho fa per "
+"una śnica\n"
+"raó: no penseu que com que heu arrancat GNU/Linux els altres \n"
+"sistemes operatius estan segurs contra errades. Com que l'usuari \"root\" "
+"pot superar\n"
+"totes les limitacions i inintencionadament esborrar totes les dades de "
+"qualsevol partició\n"
+"accedint sense cura a les particions en si, és molt important per la vostra "
+"seguretat que\n"
+"sigui dificil esdevenķ l'usuari \"root\".\n"
+"\n"
+"Les contrasenbyes haurien de ser una mescla carącters alfanumčrics i com a "
+"mķnim 8\n"
+"carącters de longitud. Mai escrigui la contrasenya de l'usuari \"root\" ja "
+"que és molt fącil\n"
+"de comprometre el sistema.\n"
+"\n"
+"De totes maneres, no feu la contrasenya massa llarga o complicada perquč\n"
+"heu de ser capaēos de recordar-la sense massa esforēos.\n"
+"\n"
+"La contrasenya no serą mostrada en la pantalla a mesura que la tecleja. Per "
+"tant, \n"
+"haureu d'escriure-la dues vegades per reduir la probabilitat d'error\n"
+"d'escritura. Si, malauradament, feu el mateix error dues vegades, aquesta\n"
+"contrasenya ``incorrecta'' haurą d'usar-la el primer cop que es connecti.\n"
+"\n"
+"En el mode Expert, se us preguntarą si us voleu connectar a un servidor\n"
+"d'autentificació, com NIS o LDAP.\n"
+"\n"
+"Si la vostra xarxa usa el protocol LDAP (o NIS) per a autentificació, "
+"seleccioneu\n"
+"\"LDAP\" (o \"NIS\") com a autentificació. Si no ho sabeu, pregunteu al "
+"vostre\n"
+"administrador de la xarxa.\n"
+"\n"
+"Si el vostre ordinador no es connecta a cap xarxa administrada, haureu "
+"d'escollir\n"
+"\"Fitxers Locals\" per a autentificació."
#: ../../help.pm_.c:664
msgid ""
@@ -3576,6 +4265,69 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
+"LILO i grub són carregador d'arrencada de GNU/Linux. Aquesta etapa, "
+"normalment,\n"
+"és totalment automatitzada. De fet, DrakX analitza el sector d'arrencada i "
+"actua\n"
+"d'acord amb el quč troba:\n"
+"\n"
+" * si troba un sector d'arrencada de Windows, el reemplaēarą amb un sector "
+"de\n"
+"grub/LILO. Per tant, sereu capaē de carregar el GNU/Linux o un altre\n"
+"SO;\n"
+"\n"
+" * si es troba el grub o el LILO, els reemplaēa amb un nova\n"
+"versió.\n"
+"\n"
+"Si té algun dubte, DrakX us presentarą un diąleg amb varies opcions.\n"
+"\n"
+" * \"Manegador d'arrencada\": teniu tres opcions:\n"
+"\n"
+" * \"GRUB\": si preferiu el grub (menś de text).\n"
+"\n"
+" * \"LILO amb menś grąfic\": si preferiu el LILO amb una interfķcie\n"
+"grąfica.\n"
+"\n"
+" * \"LILO amb menś de text\": si preferiu el LILO amb el seu menś de "
+"text.\n"
+"\n"
+" * \"Dispositiu d'arrencada\": en la majoria de casos, no canviareu la opció "
+"per defecte\n"
+"(\"/dev/hda\"), perņ si ho preferiu, el carregador de l'arrencada pot ser "
+"instal·lat en el\n"
+"segon disc dur (\"/dev/hdb\"), o fins i tot en un diquet (\"/dev/fd0\");\n"
+"\n"
+" * \"Espera abans de carregar la imatge per defecte\": quan es reinicia "
+"l'ordinador,\n"
+"aquest és el temps que se li permet a l'usuari d'escollir una entrada "
+"diferent a la per\n"
+"defecte, en el menś d'arrencada.\n"
+"\n"
+"!! Compte perquč si escolliu no instal·lar un manejador de carrega "
+"(seleccionant\n"
+"\"Cancel\" aquķ), heu d'estar segurs que teniu alguna manera d'arrencar el "
+"vostre sistema\n"
+"Mandrake Linux! Més encara, estigueu segurs de saber quč feu abans de "
+"canviar alguna de les\n"
+"opcions. !!\n"
+"\n"
+"Clicar el butó \"Advanced\" en aquest diąleg us permetrą canviar algunes "
+"opcions\n"
+"avanēades, que són reservades als usuaris experts.\n"
+"\n"
+"Després d'haver modificat els parąmetres generals del carregador "
+"d'arrencada, la llista de\n"
+"opcions per a carregar que es veurą en iniciar serą ensenyada.\n"
+"\n"
+"Si hi ha algun altre sistema operatiu instal·lat en el vostre ordinador, "
+"serą inclņs\n"
+"automąticament al menś del carregador. Aquķ podeu escollir d'acabat d'afinar "
+"la configuració\n"
+"de les opcions disponibles. Seleccioneu una entrada i cliqueu en \"Modificar"
+"\" per a modificar o\n"
+"esborra-la; \"Afegir\" crea una nova entrada; i \"Fet\" avanēa cap al "
+"següent pas de\n"
+"la instal·lació."
#: ../../help.pm_.c:713
msgid ""
@@ -3589,14 +4341,13 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"El LILO (Linux Loader, carregador de Linux) i el Grub són carregadors\n"
+"El LILO (LInux LOader, carregador de Linux) i el Grub són carregadors\n"
"d'arrencada: poden arrencar el GNU/Linux o qualsevol altre sistema operatiu\n"
"que tingueu a l'ordinador. Normalment, aquests altres sistemes operatius\n"
"es detecten i instal·len correctament, perņ si no és aixķ, podeu afegir-los\n"
"manualment en aquesta pantalla. Aneu amb compte de triar els parąmetres\n"
"correctes.\n"
"\n"
-"\n"
"També és possible que no volgueu donar accés a tothom a aquests sistemes\n"
"operatius; en aquest cas podeu suprimir les entrades corresponents, perņ\n"
"aleshores us caldrą un disc d'arrencada per poder-los arrencar!"
@@ -3645,9 +4396,48 @@ msgid ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
msgstr ""
+"Aquķ, seleccionarem el sistema d'impressió per el vostre ordinador. Altres "
+"sistemes operatius\n"
+"us oferiran un, perņ el Mandrake Linux n'ofereix tres.\n"
+"\n"
+" * \"pdq\" que vol dir ``print, don't queue''(imprimeix, no facis cua), és "
+"opció escollida\n"
+"si teniu una connexió directa amb la impressora i voleu evitar aquelles cues "
+"interminables\n"
+"d'impressions, i no teniu impressores de xarxa. Només funcionarą sobre "
+"xarxes molt simples\n"
+"i és bastant lent per a xarxes. Escolliu \"pdq\"\n"
+"si és la vostra primera incursió en GNU/Linux. Podeu canviar la vostra "
+"elecció\n"
+"després de la instal·lació executant el PrinterDrake des del Centre de "
+"Control Mandrake\n"
+"i fent clic sobre el butó expert.\n"
+"\n"
+" * \"CUPS\"``Common Unix Printing System'' (Sistema d'impressió comś de "
+"Unix), és el millor\n"
+"a l'hora d'imprimir a la vostra impressora local i a la meitat del planeta. "
+"És simple i pot\n"
+"actuar com a servidor o client per l'antic sistema d'impressió \"lpd\". Per "
+"tant, és\n"
+"compatible amb els sistemes desactualitzats instal·lats. Pot fer moltes "
+"coses, perņ\n"
+"la configuració bąsica es tant senzilla com la de \"pdq\". Si ho necessiteu "
+"per a emular\n"
+"un servidor \"lpd\", heu d'habilitar el dimoni \"cups-lpd\". Té una "
+"interfķcie\n"
+"grąfica per imprimir i escollir les opcions d'impressió.\n"
+"\n"
+" * \"lprNG\"``line printer daemon New Generation''. Aquest sistema pot fer\n"
+"aproximadament el mateix que els altres, perņ imprimirą a\n"
+"dispositius muntats en una xarxa Novell, perquč supporta el protocol IPX, \n"
+"i pot imprimir directament a ordres del intčrpret d'ordres. Si teniu "
+"necessitat de la xarxa Novell o\n"
+"d'imprimir cap a ordres sense fer servir un constructe de conducte separat, "
+"utilitzeu lprNG.\n"
+"Sinó, CUPS és més recomanable perquč és més simple i millor per a treballar "
+"en xarxa."
#: ../../help.pm_.c:759
-#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3675,32 +4465,39 @@ msgid ""
"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"El DrakX intentarą trobar el(s) adaptador(s) SCSI PCI. \n"
-"Si en troba, i sap quin programa de control utilitzar, el(s)\n"
-"instal·larą automąticament.\n"
-"\n"
-"\n"
-"Si no teniu cap adaptador SCSI, un adaptador SCSI ISA, o un\n"
-"adaptador SCSI PCI que el DrakX no reconegui, se us demanarą si teniu\n"
-"un adaptador SCSI al sistema. Si no en teniu cap, simplement feu clic a \"No"
-"\". Si feu\n"
-"clic a \"Sķ\", apareixerą una llista de programes de control on podreu\n"
-"seleccionar l'adaptador concret.\n"
-"\n"
+"El DrakX detectarą qualsevol dispositiu IDE en l'ordinador. Aixķ mateix, "
+"intentarą trobar\n"
+"el(s) adaptador(s) SCSI PCI. Si troba adaptador(s) SCSI, i sap quin "
+"controlador utilitzar,\n"
+"el(s) instal·larą automąticament.\n"
+"\n"
+"Ja que la detecció de maquinari no sempre troba tots els dispositius,\n"
+"DrakX si demaną que confirmi que hi ha un adaptador SCSI PCI. Feu Clic en "
+"\"Sķ\"\n"
+"si sabeu segur que n'hi ha un instal·lat en l'ordinador. Se li presentarą\n"
+"una llista de targetes SCSI per a que n'escolliu una. Feu Clic en \"No\" si "
+"no en\n"
+"teniu cap. Si no esteu segurs, podeu mirar la llista de maquinari\n"
+"detectada en el vostre ordinador seleccionant \"Veure Informació Maquinari\" "
+"i clicant en\n"
+"\"D'acord\". Examineu la llista de maquinari i feu clic sobre el butó "
+"\"D'acord\" per a\n"
+"tornar a la pregunta sobre l'interfķcie SCSI.\n"
"\n"
"Si heu hagut de seleccionar l'adaptador manualment, el DrakX us preguntarą\n"
"si voleu indicar opcions per a ell. Convé que deixeu que el DrakX comprovi\n"
"el maquinari per a les opcions; aixņ sol funcionar bé.\n"
"\n"
-"\n"
-"Si no, us caldrą proporcionar les opcions al programa de control. Consulteu\n"
-"el capķtol 3 de la Guia de l'usuari, secció \"Informació obtinguda del\n"
-"maquinari\" per saber com treure aquesta informació de la documentació del\n"
+"Si el DrakX no pot comprovar les opcions que se li han de passar al "
+"controlador,\n"
+"us caldrą proporcionar les opcions al controlador manualment. Consulteu la\n"
+"Guia de l'usuari ( capķtol 3, en la secció \"Informació obtinguda del "
+"maquinari\")\n"
+"per saber com treure aquesta informació de la documentació del\n"
"maquinari, del lloc web del fabricant (si teniu accés a Internet) o del\n"
"Microsoft Windows (si el teniu al sistema)."
#: ../../help.pm_.c:786
-#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3752,68 +4549,53 @@ msgstr ""
"sistemes operatius, nuclis alternatius, o per a una imatge per a arrencades\n"
"d'emergčncia.\n"
"\n"
-"\n"
"Per a altres OS, l'entrada només consta d'una etiqueta i de la partició "
"arrel.\n"
"\n"
-"\n"
"Per al Linux, hi ha algunes opcions possibles: \n"
"\n"
+" * Label: és només el nom a entrar en l'indicador del yaboot per\n"
+"seleccionar aquesta opció d'arrencada;\n"
"\n"
-" - Label: és només el nom a indicar a l'indicador del yaboot per\n"
-"seleccionar aquesta opció d'arrencada.\n"
-"\n"
-"\n"
-" - Image: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
-"variació de vmlinux amb una extensió.\n"
-"\n"
+" * Image: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
+"variació de vmlinux amb una extensió;\n"
"\n"
-" - Rool: el dispositiu arrel o '/' per a la instal·lació del Linux.\n"
+" * Root: el dispositiu arrel o '/' per a la instal·lació del Linux;\n"
"\n"
-"\n"
-" \n"
-" - Append: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
+" * Append: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
"forēa sovint per auxiliar en la inicialització de maquinari de vķdeo o per\n"
"habilitar l'emulació del botó del ratolķ de teclat per als 2n i 3r botons,\n"
-"que sovint no existeixen, d'un ratolķ Apple convencional. Alguns exemples\n"
+"que sovint no existeixen en un ratolķ Apple convencional. Alguns exemples\n"
"d'aixņ són:\n"
"\n"
-"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" \n"
-" - Initrd: aquesta opció es pot utilitzar per carregar els mņduls "
+" * Initrd: aquesta opció es pot utilitzar per carregar els mņduls "
"inicials,\n"
-"abans que el dispostiu d'arrencada estigui disponible, o per tornar a "
-"carregar\n"
-"una imatge de disc RAM en una situació d'arrencada d'emergčncia.\n"
-"\n"
-"\n"
-" - Initrd-size: la mida per defecte del disc RAM sol ser de 4.096 bytes. Si "
-"necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció.\n"
+"abans que el dispostiu d'arrencada estigui disponible, o per a carregar\n"
+"una imatge de disc RAM en una situació d'arrencada d'emergčncia;\n"
"\n"
+" * Initrd-size: la mida per defecte del disc RAM sol ser de 4.096 bytes. "
+"Si\n"
+"necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció;\n"
"\n"
-" - Read-write: normalment, la partició 'root' es tracta inicialment com "
-"només de lectura per permetre una comprovació del sistema de fitxers abans "
-"que el sistema esdevingui 'viu'; podeu substituir aquesta opció aquķ.\n"
+" * Read-write: normalment, la partició 'root' es tracta inicialment com\n"
+"només de lectura per permetre una comprovació del sistema de fitxers abans\n"
+"que el sistema esdevingui 'viu'. Podeu substituir aquesta opció aquķ;\n"
"\n"
-"\n"
-" - NoVideo: en cas que el maquinari de vķdeo de Apple resulti sigui\n"
+" * NoVideo: en cas que el maquinari de vķdeo de Apple resulti sigui\n"
"especialment problemątic, podeu seleccionar aquesta opció per arrencar\n"
-"en mode 'no-vķdeo', amb el suport nadiu per a memņria intermčdia de marcs.\n"
-"\n"
+"en mode 'no-vķdeo', amb el suport nadiu per a frame buffer;\n"
"\n"
-" - Default: selecciona aquesta entrada com a selecció per defecte del\n"
+" * Default: selecciona aquesta entrada com a selecció per defecte del\n"
"Linux; se selecciona prement simplement Retorn a l'indicador del yaboot.\n"
"Aquesta opció també es ressaltarą amb un '*' si premeu Tab per veure les\n"
-"seleccions d'arrencada."
+"seleccions d'arrencada;"
#: ../../help.pm_.c:833
-#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3854,42 +4636,35 @@ msgstr ""
"afegir una entrada manualment. Aneu amb compte de triar els parąmetres\n"
"correctes.\n"
"\n"
-"\n"
"Les opcions principals del Yaboot són:\n"
"\n"
-"\n"
-" - Missatge d'inicialització: un senzill missatge de text que apareix "
+" * Missatge d'inicialització: un senzill missatge de text que apareix "
"abans\n"
-"de l'indicador d'arrencada.\n"
+"de l'indicador d'arrencada;\n"
"\n"
-"\n"
-" - Dispositiu d'arrencada: indica on voleu situar la informació necessąria\n"
+" * Dispositiu d'arrencada: indica on voleu situar la informació necessąria\n"
"per arrencar el GNU/Linux. Normalment, haureu configurat abans una partició\n"
-"bootstrap que contindrą aquesta informació.\n"
-"\n"
+"bootstrap que contindrą aquesta informació;\n"
"\n"
" - Demora de l'Open Firmware: a diferčncia del LILO, amb el Yaboot hi ha\n"
"dues demores disponibles. La primera d'elles es mesura en segons i, en "
"aquest\n"
-"punt, podeu triar entre CD, arrencada OF, MacOS o Linux.\n"
-"\n"
+"punt, podeu triar entre CD, arrencada OF, MacOS o Linux;\n"
"\n"
-" - Temps mąxim d'arrencada del nucli: aquest temps mąxim és similar a la "
-"demora d'arrencada del LILO. Després de seleccionar el Linux tindreu aquesta "
+" * Temps mąxim d'arrencada del nucli: aquest temps mąxim és similar a la\n"
+"demora d'arrencada del LILO. Després de seleccionar el Linux tindreu "
+"aquesta\n"
"demora en 0,1 segons abans que se seleccioni la descripció per defecte del "
-"nucli.\n"
+"nucli;\n"
"\n"
+" * Habilitar l'arrencada des de CD?: si activeu aquesta opció podreu triar\n"
+"'C' per a CD al primer indicador de l'arrencada;\n"
"\n"
-" - Habilitar l'arrencada des de CD?: si activeu aquesta opció podreu triar\n"
-"'C' per a CD al primer indicador de l'arrencada.\n"
-"\n"
-"\n"
-" - Habilitar l'arrencada OF?: si activeu aquesta opció podreu triar 'N' "
+" * Habilitar l'arrencada OF?: si activeu aquesta opció podreu triar 'N' "
"per\n"
-"Open Firmware al primer indicador de l'arrencada.\n"
-"\n"
+"Open Firmware al primer indicador de l'arrencada;\n"
"\n"
-" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencarą\n"
+" * OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencarą\n"
"quan la demora de l'Open Firmware venci."
#: ../../help.pm_.c:865
@@ -3922,6 +4697,42 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"Ara us presentem diversos parąmetres de la vostra mąquina. Depenent del\n"
+"maquinari instal·lat, podreu veure o no, les següents entrades:\n"
+"\n"
+" * \"Ratolķ\": comproveu la configuració actual del ratolķ i feu clic en el "
+"butó\n"
+"per a canviar-la si fos necessari;\n"
+"\n"
+" * \"Teclat\": comproveu la configuració actual del mapa de teclat i feu "
+"clic en\n"
+"el butó per a canviar-la si fos necessari;\n"
+"\n"
+" * \"Zona Horąria\": DrakX, per defecte, endevina la vostra zona horątia a "
+"partir del llenguatge\n"
+"que heu escollit. Perņ, de la mateixa manera que en el cas del teclat, vós "
+"podeu\n"
+"viure en un pais diferent al del llenguatge escollit.\n"
+"Per tant, podrieu haver de fer clic sobre el butó \"Zona Horąria\" per tal "
+"de\n"
+"configurar el rellotge d'acord amb la zona horąria en la qual esteu;\n"
+"\n"
+" * \"Impressora\": clicant en el butó \"Cap Impressora\" s'obrirą "
+"l'auxiliar\n"
+"de configuració de la impressora;\n"
+"\n"
+" * \"Targeta de so\": si s'ha detectat una targeta de so en el sistema, "
+"serą\n"
+"mostrada aquķ. No es pot fer cap modificació durant la instal·lació;\n"
+"\n"
+" * \"Targeta TV \": si s'ha detectat una targeta de TV en el sistema, serą "
+"ensenyada\n"
+"aquķ. No es pot fer cap modificació durant la instal·lació;\n"
+"\n"
+" * \"Targeta ISDN(XDSI)\": si s'ha detectat una targeta XDSI en el sistema, "
+"serą\n"
+"mostrada aquķ. Podeu fer clic sonre el butó per a canviar els parąmetres\n"
+"associats amb la targeta."
#: ../../help.pm_.c:894
msgid ""
@@ -3929,10 +4740,9 @@ msgid ""
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-"Escolliu el disc dur que voleu buidar per instal·lar la nova partició "
-"Linux-\n"
-"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
-"recuperar."
+"Escolliu el disc dur que voleu buidar per instal·lar la nova partició Linux\n"
+"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran\n"
+"recuperar!"
#: ../../help.pm_.c:899
msgid ""
@@ -3950,23 +4760,26 @@ msgstr ""
"del disc,\n"
"incloent las dades de Windows.\n"
"\n"
-"\n"
"Feu clic a \"Cancel·la\" per anul·lar aquesta operació sense perdre cap "
"dada\n"
"ni partició d'aquest disc."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"No puc accedir als mņduls del nucli(kernel) corresponents al vostre nucli "
+"(fitxer %s no trobat), aixņ generalment vol dir que el vostre disquet "
+"d'arrencada no estą sincronitzat amb el medi d'Instal·lació (siusplay creeu "
+"un nou disquet d'arrencada)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
-msgstr ""
+msgstr "També heu de formatar %s"
#: ../../install_any.pm_.c:418
#, c-format
@@ -3982,21 +4795,32 @@ msgid ""
"\n"
"Do you really want to install these servers?\n"
msgstr ""
+"Heu seleccionat els següents servidor(s): %s\n"
+"\n"
+"\n"
+"Aquests servidors estan activats per defecte. No tenen cap problema de "
+"seguretat\n"
+"conegut, perņ se'n podrien trobar alguns de nous. Si és aixķ, haurą "
+"d'actualitzar-los\n"
+"el més aviat possible.\n"
+"\n"
+"\n"
+"Voleu realment instal·lar aquests servidors?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no estą formatat en FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4004,7 +4828,7 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instal·lació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produļt un error en llegir el fitxer %s"
@@ -4042,10 +4866,10 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
-#, fuzzy
+#
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr "Heu de tenir una partició d'intercanvi"
+msgstr "Heu de tenir una partició FAT muntada en /boot/efi"
#: ../../install_interactive.pm_.c:91
msgid "Use free space"
@@ -4093,7 +4917,7 @@ msgstr "A quina partició voleu canviar la mida?"
#: ../../install_interactive.pm_.c:131
msgid "Resizing Windows partition"
-msgstr "S'estan calculant els lķmits del sistema de fitxers de Windows"
+msgstr "S'estą redimensionant la partició de Windows"
#: ../../install_interactive.pm_.c:134
#, c-format
@@ -4113,8 +4937,8 @@ msgstr ""
"La partició de Windows estą massa fragmentada; si us plau, executeu "
"``defrag'' primer"
+#
#: ../../install_interactive.pm_.c:138
-#, fuzzy
msgid ""
"WARNING!\n"
"\n"
@@ -4204,7 +5028,7 @@ msgstr "No puc trobar espai per a la instal·lació"
#: ../../install_interactive.pm_.c:246
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-"L'assistent de particionament del DrakX ha trobat les solucions següents:"
+"L'auxiliar de particionament del DrakX ha trobat les solucions següents:"
#: ../../install_interactive.pm_.c:250
#, c-format
@@ -4227,12 +5051,12 @@ msgstr ""
"S'ha produļt un error, perņ no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4244,12 +5068,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instal·lat mitjanēant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -4257,9 +5081,9 @@ msgstr "No hi ha cap unitat de disquet disponible"
#: ../../install_steps_stdio.pm_.c:22
#, c-format
msgid "Entering step `%s'\n"
-msgstr "S'estą introduint el pas `%s'\n"
+msgstr "S'estą entrant en el pas `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4272,80 +5096,80 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Tipus d'instal·lació"
-#: ../../install_steps_gtk.pm_.c:163
-#, fuzzy
+#
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instal·lació següents:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Importąncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquč no queda prou espai per instal·lar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
-msgstr "No podeu desseleccionar aquest paquet; ja estą instal·lat"
+msgstr "No podeu deseleccionar aquest paquet; ja estą instal·lat"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4353,77 +5177,77 @@ msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Mostra automąticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instal·la"
-#: ../../install_steps_gtk.pm_.c:412
-#, fuzzy
+#
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
-msgstr "Desa al disquet"
+msgstr "Carrega/Desa al disquet"
-#: ../../install_steps_gtk.pm_.c:413
-#, fuzzy
+#
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
-msgstr "Desa la selecció de paquets"
+msgstr "Actualitzant la selecció de paquets"
-#: ../../install_steps_gtk.pm_.c:418
-#, fuzzy
+#
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
-msgstr "Desinstal·la"
+msgstr "Instal·lació Mķnima"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instal·lar"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "S'estą instal·lant"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "S'estą estimant"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
-msgstr "Si us plau, espereu, s'estą preparant la instal·lació"
+msgstr "Si us plau, espereu, s'estą preparant la instal·lació..."
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "S'estą instal·lant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4439,19 +5263,19 @@ msgstr ""
"Si no el teniu, premeu Cancel·la per no fer la instal·lació des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
-msgstr "S'ha produļt un error en ordenar els paquets"
+msgstr "S'ha produļt un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
-msgstr "S'ha produļt un error en instal·lar els paquets"
+msgstr "S'ha produļt un error en instal·lar els paquets:"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -4521,10 +5345,10 @@ msgstr ""
msgid "An error occurred"
msgstr "S'ha produļt un error"
+#
#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
msgid "Do you really want to leave the installation?"
-msgstr "Voleu reiniciar la xarxa"
+msgstr "Realment voleu deixar la instal·lació?"
#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
@@ -4758,109 +5582,109 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:214
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Aquesta és la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Quin tipus d'instal·lació voleu?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instal·la/Actualitza"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Es tracta d'una instal·lació o d'una actualització?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
-msgstr "Desa la selecció de paquets"
+msgstr "Actualitza Només els Paquets"
-#: ../../install_steps_interactive.pm_.c:276
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolķ."
+msgstr "Si us plau, seleccioneu el tipus del vostre ratolķ."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Port del ratolķ"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie a quč estą connectat el vostre ratolķ."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulació dels botons"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulació del botó 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulació del botó 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "S'estą configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
-msgstr "no hi ha particions disponibles"
+msgstr "No hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4875,8 +5699,10 @@ msgstr ""
"DADES!).\n"
"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error és %s)\n"
+"\n"
+"Esteu d'acord en perdre totes les particions?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4884,79 +5710,83 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, és sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
+"No hi ha prou espai lliure per un 1MB de bootstrap! La instal·lació "
+"continuarą, perņ per a iniciar el sistema, necessitareu crear la partició de "
+"bootstrap amb el DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
-msgstr "No s'ha trobat cap partició arrel"
+msgstr "No s'ha trobat cap partició arrel per a realitzar una actualització"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrą tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'estą creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"No hi ha prou intercanvi per completar la instal·lació; si us plau, afegiu-ne"
+"No hi ha prou space d'intercanvi per a completar la instal·lació; si us "
+"plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "S'estan cercant els paquets a actualitzar"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
-msgstr "No podeu desseleccionar aquest paquet; ja estą instal·lat"
+msgstr "No podeu deseleccionar aquest paquet; ja estą instal·lat"
+
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4965,63 +5795,67 @@ msgstr ""
"Al vostre sistema no li queda prou espai per a la instal·lació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
+"Per favor, carregueu o salveu la selecció de paquets en el disquet.\n"
+"El format és el mateix que en els disquets generats d'auto instal·lació."
-#: ../../install_steps_interactive.pm_.c:554
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
-msgstr "Restaura des del disquet"
+msgstr "Carrega des del disquet"
-#: ../../install_steps_interactive.pm_.c:556
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
-msgstr "Restaura des del disquet"
+msgstr "Carregant des del disquet"
-#: ../../install_steps_interactive.pm_.c:556
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
-msgstr "Selecció del grup de paquets"
+msgstr "Selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:561
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
-msgstr "Inseriu un disquet a la unitat %s"
+msgstr "Inseriu un disquet amb la selecció de paquets"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
-msgstr ""
+msgstr "La mida seleccionada és superior a la disponible"
-#: ../../install_steps_interactive.pm_.c:661
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
-msgstr "Escolliu el paquet a instal·lar"
+msgstr "Tipus d'instal·lació"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
+"No heu seleccionat cap grup de paquets.\n"
+"Escolliu la instal·lació mķnima que voleu:"
-#: ../../install_steps_interactive.pm_.c:665
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
-msgstr "Espera"
+msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
-msgstr ""
+msgstr "Amb documentació bąsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
+msgstr "Instal·lació realment mķnima (especialment no urpmi)"
#: ../../install_steps_interactive.pm_.c:752
msgid ""
@@ -5038,11 +5872,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "S'estą preparant la instal·lació"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5051,21 +5885,21 @@ msgstr ""
"S'estą instal·lant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
-msgstr "Publica la configuració de la instal·lació "
+msgstr "Configuració després de la instal·lació"
-#: ../../install_steps_interactive.pm_.c:838
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:839
+#, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Inseriu un disquet a la unitat %s"
+msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:844
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:845
+#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Inseriu un disquet en blanc a la unitat %s"
+msgstr "Inseriu el disquet d'Actualització de Mņduls a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5132,7 +5966,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5143,191 +5977,214 @@ msgid ""
"\n"
"Do you want to install the updates ?"
msgstr ""
+"Ara teniu la oportunitat de baixar paquets actualitzats. Aquests paquets\n"
+"han estat publicats després del llanēament de la distribució. Poden "
+"contenir\n"
+"actualitzacions de seguretat o d'errors.\n"
+"\n"
+"Per a baixar aquests paquets, necessitareu tenir una connexió d'internet\n"
+"que funcioni.\n"
+"\n"
+"Voleu instal·lar aquestes actualitzacions ?"
-#: ../../install_steps_interactive.pm_.c:918
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-"S'estą contactant amb el mirror per obtenir la llista dels paquets "
-"disponibles"
+"S'estą contactant amb el servidor Mandrake Linux per obtenir la llista de "
+"rčpliques disponibles..."
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
-msgstr "Escolliu un mirror al qual aconseguir els paquets"
+msgstr "Escolliu una rčplica des de la qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-"S'estą contactant amb el mirror per obtenir la llista dels paquets "
-"disponibles"
+"S'estą contactant amb la rčplica per a obtenir la llista dels paquets "
+"disponibles..."
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "En quina zona horąria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:964
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
-msgstr "El rellotge del vostre ordinador estą regulat a GMT?"
+msgstr "El rellotge del vostre ordinador estą regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
-msgstr ""
+msgstr "Sincronització automątica de la hora (usant NTP)"
-#: ../../install_steps_interactive.pm_.c:972
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
-msgstr "Servidor NIS"
+msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:1024
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
-msgstr "En teniu una altra?"
+msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
+"Executeu \"sndconfig\" després de la instal·lació per a configurar la "
+"targeta de so"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
+"No s'ha detectat cap targeta de so. Proveu amb \"harddrake\" després de la "
+"instal·lació"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Ratolķ"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Zona horąria"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
-msgid "LDAP"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
-#, fuzzy
-msgid "NIS"
-msgstr "Utilitza el NIS"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
+msgid "LDAP"
+msgstr "LDAP"
+#
#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Windows PDC"
-msgstr "Elimina el Windows(TM)"
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
+msgid "NIS"
+msgstr "NIS"
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
+msgid "Windows Domain"
+msgstr "Aconsegueix les Fons de Windows"
+
+#
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
-msgstr "Impressora local"
+msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-"Aquesta contrasenya és massa senzilla (ha de tenir com a mķnim %d carącters)"
+"Aquesta contrasenya és massa curta (ha de tenir com a mķnim %d carącters)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
-#: ../../install_steps_interactive.pm_.c:1121
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
-msgstr "Autenticació"
+msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
-msgstr ""
+msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
-msgstr "Servidor"
+msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
-msgstr "NIS d'autenticació"
+msgstr "Autenticació NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Servidor NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Autenticació"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Domini del NIS"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+#
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Servidor NIS"
+msgid "Authentication Windows Domain"
+msgstr "Autenticació LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Nom de domini"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5357,19 +6214,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:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5397,7 +6254,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5405,43 +6262,52 @@ msgid ""
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
+"\n"
+"\n"
+"(COMPTE! Esteu utilitzant XFS per la vostra partició arrel,\n"
+"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:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1223
+#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "S'estą creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "S'estą preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
"The install will continue, but you'll\n"
" need to use BootX to boot your machine"
msgstr ""
+"Sembla que teniu un ordiandor OldWorld or Desconegut,\n"
+"el carregador d'arrencada yaboot no funcionarą.\n"
+"La instal·lació continuarą, perņ haureu\n"
+"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5450,19 +6316,19 @@ msgstr ""
"voleu intentar igualment la instal·lació encara que aixņ destrueixi la "
"primera partició?"
-#: ../../install_steps_interactive.pm_.c:1258
-#, fuzzy
+#
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
-msgstr "Instal·la el LILO"
+msgstr "Instal·lant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instal·lació del carregador d'arrencada. S'ha produļt l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:1272
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1274
+#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader. If you don't see the bootloader prompt at\n"
@@ -5472,24 +6338,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
"Potser us caldrą canviar el dispositiu d'arrencada Open Firware per\n"
-" habilitar el carregador d'arencada. Si no veieu l'indicador del\n"
-" carregador d'arrencada en tornar a arrencar, premeu Command-Option-O-F\n"
-" en tornar a arrencar i introduļu:\n"
-" setenv boot-device $of_boot,\\\\:tbxi\n"
+" habilitar el carregador d'arencada. Si no veieu l'indicador del carregador "
+"d'arrencada\n"
+" en tornar a arrencar, premeu Command-Option-O-F en tornar a arrencar i "
+"introduļu:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
" Després, escriviu: shut-down\n"
"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "S'estą creant el diquet d'instal·lació automątica"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5499,7 +6366,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5532,15 +6399,15 @@ msgstr ""
"l'śltim capķtol d'instal·lació de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr ""
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instal·lació automątica"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5551,19 +6418,19 @@ msgstr ""
"Si es desitja, la instal·lació automątica es pot\n"
"automatitzar completament, perņ en aquest cas\n"
"prendrą el control del disc dur!!\n"
-"(aixņ estą pensat per a la instal·lació en una altra caixa).\n"
+"(aixņ estą pensat per a la instal·lació en una altra ordinador).\n"
"\n"
"Potser preferireu repetir la instal·lació.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automątica"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -5584,452 +6451,526 @@ msgstr "El kdesu no hi és"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "El consolehelper no hi és"
+#
#: ../../interactive.pm_.c:152
-#, fuzzy
msgid "Choose a file"
-msgstr "Trieu una acció"
+msgstr "Trieu un fitxer"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Avanēat"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
-msgstr ""
+msgstr "Basic"
+
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Anterior"
+
+#
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Següent"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Elecció incorrecta, torneu-ho a intentar\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
+"Entrades que heu d'emplenar:\n"
+"%s"
-#: ../../interactive/stdio.pm_.c:68
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:70
+#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La vostra elecció? (predeterminat %s)"
-#: ../../interactive/stdio.pm_.c:93
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:95
+#, c-format
msgid "Button `%s': %s"
-msgstr "Opcions: %s"
+msgstr "Butons: `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
-#, fuzzy
+#
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
-msgstr "Voleu utilitzar l'aboot?"
+msgstr "Voleu fer clic en aquest butó?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
-msgstr ""
+msgstr " entreu `void' per entrada buida"
-#: ../../interactive/stdio.pm_.c:103
-#, fuzzy, c-format
+#: ../../interactive/stdio.pm_.c:105
+#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "La vostra elecció? (predeterminat %s)"
+msgstr "La vostra elecció? (predeterminat `%s'%s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
+msgstr "=> Hi ha moltes coses per a escollir (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
+"Per favor, escolliu el primer nśmero del rang 10 que voleu editar,\n"
+"o premeu Enter per a continuar.\n"
+"La vostra elecció? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
+"=> Avķs, un etiqueta a canviat:\n"
+"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
-msgstr ""
+msgstr "Re-envieu"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finčs"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francčs"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polončs"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:179
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
-msgstr "Iranią"
+msgstr "Albančs"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armeni (mąquina d'escriure)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjančs (llatķ)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
#, fuzzy
+msgid "Bengali"
+msgstr "habilita"
+
+#
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
-msgstr "Armeni (fončtic)"
+msgstr "Bślgar (fončtic)"
-#: ../../keyboard.pm_.c:191
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
-msgstr "Bślgar"
+msgstr "Bślgar (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonią"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Bielorśs"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Suķs (disposició alemanya)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Suķs (disposició francesa)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Dančs"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:203
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
-msgstr "Dvorak (EU)"
+msgstr "Dvorak (Suec)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonią"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgią (disposició \"russa\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgią (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hongarčs"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelią"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelią (fončtic)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranią"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandčs"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italią"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japončs de 106 tecles"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Teclat coreą"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Espanyol sud-americą"
-#: ../../keyboard.pm_.c:224
+#
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Letó"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituą AZERTY (antic)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituą AZERTY (nou)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituą \"fila de nśmeros\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituą \"fončtic\" QWERTY"
-#: ../../keyboard.pm_.c:229
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
-msgstr "Ubicació"
+msgstr "Letó"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbi (cirķl·lic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Holandčs"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polončs (disposició qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polončs (disposició qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugučs"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:238
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
-msgstr "Rus (Yawerty)"
+msgstr "Romančs (qwertz)"
-#: ../../keyboard.pm_.c:239
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
-msgstr "Rus (Yawerty)"
+msgstr "Romančs (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Eslovč"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:247
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
-msgstr "Azerbaidjančs (cirķl·lic)"
+msgstr "Serbi (cirķl·lic)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Taula"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:252
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
-msgstr "Teclat tai"
+msgstr "Teclat tadjik"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ucraļnčs"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numčrica\" QWERTY"
-#: ../../keyboard.pm_.c:261
-#, fuzzy
+#
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
-msgstr "Iugoslau (llatķ/cirķl·lic)"
+msgstr "Iugoslau (llatķ)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
-msgstr ""
+msgstr "Tecla d'alternativa dreta"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
-msgstr ""
+msgstr "Les dues tecles de majśscules simultąniament"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
-msgstr ""
+msgstr "Tecles de Control i de majśscules simultąniament"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
-msgstr ""
+msgstr "Tecla de fixació de majśscules"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Tecles de Control i alternativa simultąniament"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Tecles alternativa i de majśscules simultąniament"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menś\" tecles"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Tecla de \"Windows\" Esquerra"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Tecla de \"Windows\" Dreta"
#: ../../loopback.pm_.c:32
#, c-format
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lņgics\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Nśmero de telčfon"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formata les particions"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
+"El suport per a PCMCIA ja no existeix en els nuclis (kernels) 2.2. Utilitzeu "
+"el nucli 2.4."
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -6131,51 +7072,43 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratolķ"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolķ."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Per activar el ratolķ,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finčs"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Aixņ és correcte?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Informació"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
@@ -6195,6 +7128,10 @@ msgstr ""
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
+
+#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
msgstr ""
#: ../../network/adsl.pm_.c:22
@@ -6225,7 +7162,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Escolliu la interfķcie de xarxa"
@@ -6240,7 +7177,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "S'estą configurant la xarxa"
@@ -6251,12 +7188,13 @@ msgid ""
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Si us plau, introduļu el nom del vostre ordinador central, si el sabeu.\n"
-"Alguns servidors DHCP necessiten que aquest nom funcioni.\n"
+"Si us plau, introduļu el nom del vostre servidor central, si el sabeu.\n"
+"Alguns servidors DHCP necessiten que el nom de l'ordinador central sigui "
+"operatiu.\n"
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Nom de l'ordinador central"
@@ -6266,7 +7204,7 @@ msgstr "Nom de l'ordinador central"
#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
-msgstr "Assistent de configuració de xarxa"
+msgstr "Auxiliar de configuració de xarxa"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
@@ -6284,7 +7222,7 @@ msgstr "Quin tipus de connexió XDSI teniu?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6292,16 +7230,25 @@ msgid ""
"\n"
"We recommand the light configuration.\n"
msgstr ""
+"Quina configuració XDSI preferiu?\n"
+"\n"
+"* La configuració Antiga usa isdn4net. Conté eines molt\n"
+" potents, perņ és difķcil de configurar, i no és estąndar.\n"
+"\n"
+"* la Nova configuració és més fącil d'entendre, més\n"
+" estąndar, perņ té menys eines.\n"
+"\n"
+"Nosaltres recomanen la nova configuració senzilla(light).\n"
+#
#: ../../network/isdn.pm_.c:54
-#, fuzzy
msgid "New configuration (isdn-light)"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
+msgstr "Nova configuració (isdn-light)!"
+#
#: ../../network/isdn.pm_.c:54
-#, fuzzy
msgid "Old configuration (isdn4net)"
-msgstr "S'ha detectat la configuració del sistema de tallafocs!"
+msgstr "Antiga configuració (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
@@ -6317,29 +7264,29 @@ msgstr ""
"Seleccioneu el vostre proveļdor.\n"
" Si no és a la llista, seleccioneu No és a la llista"
+#
#: ../../network/isdn.pm_.c:183
-#, fuzzy
msgid "Europe protocol"
-msgstr "Protocol d'arrencada"
+msgstr "Protocol europeu"
+#
#: ../../network/isdn.pm_.c:183
-#, fuzzy
msgid "Europe protocol (EDSS1)"
-msgstr "Europa (EDSS1)"
+msgstr "Protocol europeu (EDSS1)"
+#
#: ../../network/isdn.pm_.c:185
-#, fuzzy
msgid "Protocol for the rest of the world"
-msgstr "Resta del món"
+msgstr "Protocol per a la resta del món"
+#
#: ../../network/isdn.pm_.c:185
-#, fuzzy
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
-"Resta del món \n"
-" cap canal D (lķnies llogades)"
+"Protocol per a la resta del món\n"
+"cap canal D (lķnies llogades)"
#: ../../network/isdn.pm_.c:189
msgid "Which protocol do you want to use?"
@@ -6373,7 +7320,7 @@ msgstr ""
"Si teniu una targeta ISA, els valors de la pantalla següent han de ser "
"correctes.\n"
"\n"
-"Si teniu una targeta PCMCIA, us en cal saber l'irq i l'io.\n"
+"Si teniu una targeta PCMCIA, us en cal saber l'\"irq\" i l'\"io\".\n"
#: ../../network/isdn.pm_.c:210
msgid "Abort"
@@ -6410,43 +7357,43 @@ msgstr ""
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nom de la connexió"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Nśmero de telčfon"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Basat en script"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
@@ -6490,24 +7437,22 @@ msgstr "Connecta"
msgid "Disconnect"
msgstr "Desconnecta"
+#
#: ../../network/netconnect.pm_.c:44
-#, fuzzy
msgid "Configure the connection"
-msgstr "Configura una connexió per cable"
+msgstr "Configura la connexió"
#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
#: ../../network/netconnect.pm_.c:99
-#, fuzzy, c-format
+#, c-format
msgid "We are now going to configure the %s connection."
-msgstr ""
-"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
+msgstr "Ara configurarem la connexió %s."
#: ../../network/netconnect.pm_.c:108
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"\n"
@@ -6518,7 +7463,12 @@ msgid ""
"Press OK to continue."
msgstr ""
"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
+"\n"
+"\n"
+"Ara configurarem la connexió %s.\n"
+"\n"
+"\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
@@ -6558,13 +7508,13 @@ msgstr "Escolliu el perfil per configurar"
msgid "Use auto detection"
msgstr "Utilitza la detecció automątica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
@@ -6586,10 +7536,10 @@ msgstr "Connexió XDSI"
msgid "detected %s"
msgstr "s'ha detectat %s"
+#
#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
-#, fuzzy
msgid "ADSL connection"
-msgstr "Connexió LAN"
+msgstr "Connexió ADSL"
#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
@@ -6600,10 +7550,10 @@ msgstr "detectat a la interfķcie %s"
msgid "Cable connection"
msgstr "Connexió de cable"
+#
#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
-#, fuzzy
msgid "cable connection detected"
-msgstr "Connexió de cable"
+msgstr "Connexió de cable detectada"
#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
@@ -6613,10 +7563,10 @@ msgstr "Connexió LAN"
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
+#
#: ../../network/netconnect.pm_.c:205
-#, fuzzy
msgid "Choose the connection you want to configure"
-msgstr "Escolliu l'eina que voleu utilitzar "
+msgstr "Escolliu la connexió per voleu configurar"
#: ../../network/netconnect.pm_.c:229
msgid ""
@@ -6624,11 +7574,14 @@ msgid ""
"Choose the one you want to use.\n"
"\n"
msgstr ""
+"heu escollit mśltiples maneres de conectar-se a Internet.\n"
+"Escolliu la que voleu utilitzar.\n"
+"\n"
+#
#: ../../network/netconnect.pm_.c:230
-#, fuzzy
msgid "Internet connection"
-msgstr "Connexió a Internet compartida"
+msgstr "Connexió a Internet"
#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
@@ -6640,7 +7593,7 @@ msgstr "Configuració de xarxa"
#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
-msgstr ""
+msgstr "La xarxa necessita ésser reiniciada"
#: ../../network/netconnect.pm_.c:255
#, c-format
@@ -6677,8 +7630,11 @@ msgid ""
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
+"Hi ha hagut problemes durant la configuració.\n"
+"Testegeu la connexió via net_monitor o mcc. Si la connexió no funciona "
+"correctament, voldreu tornar a fer la configuració."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6686,10 +7642,10 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
"ATENCIÓ: Aquest dispositiu ja es va configurar per connectar-se a Internet.\n"
-"Només cal que accepteu mantenir-lo configurat.\n"
+"Només cal que accepteu per a mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6699,43 +7655,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adreēa IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "S'estą configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
-msgstr " (programa de control %s)"
+msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adreēa IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Submąscara de la xarxa"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP automątic"
-#: ../../network/network.pm_.c:314
-#, fuzzy
+#
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
-msgstr "Iniciat en l'arrencada"
+msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreēa IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6747,40 +7703,40 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreēa IP de la passarel·la, si en teniu una"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
-msgstr "servidor DNS"
+msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Passarel·la(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Dispositiu de la passarel·la"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
-msgstr ""
+msgstr "Vigila id de la targera de xarxa(d'utilitat per a laptops)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
@@ -6792,9 +7748,9 @@ msgstr "Configuració d'Internet"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
-msgstr "S'estą comprovant la vostra conexió..."
+msgstr "S'estą comprovant la vostra connexió..."
#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
@@ -6820,77 +7776,77 @@ msgstr "Configuració de la connexió"
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
-msgstr "Targeta IRQ"
+msgstr "IRQ de la Targeta"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Targeta de memņria (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
-msgstr "Targeta d'E/S"
+msgstr "E/S de la Targeta"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
-msgstr "Targeta d'E/S_0"
+msgstr "E/S_0 de la Targeta"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
-msgstr "Targeta d'E/S_1"
+msgstr "E/S_1 de la Targeta"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "El vostre telčfon particular"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Nom del proveļdor (p.ex. proveidor.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Nśmero de telčfon del proveļdor"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del proveļdor (opcional)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del proveļdor (opcional)"
+#
#: ../../network/tools.pm_.c:95
-#, fuzzy
msgid "Choose your country"
-msgstr "Escolliu el vostre teclat"
+msgstr "Escolliu el vostre paķs"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
-#, fuzzy
+#
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
-msgstr "Tipus de connexió: "
+msgstr "Velocitat de la connexió"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
-#, fuzzy
+#
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
-msgstr "Tipus de connexió: "
+msgstr "Temps exedit de la connexió (en seg)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "Regne Unit"
#: ../../partition_table.pm_.c:606
msgid "mount failed: "
@@ -6913,7 +7869,7 @@ msgstr ""
#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "Ha fallat la restauració del fitxer %s: %s"
+msgstr "Ha fallat la restauració des del fitxer %s: %s"
#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
@@ -6924,7 +7880,7 @@ msgstr "Fitxer de cņpia de seguretat incorrecte"
msgid "Error writing to file %s"
msgstr "S'ha produļt un error en escriure al fitxer %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6956,35 +7912,35 @@ msgstr "potser"
#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
-msgstr ""
+msgstr "CUPS - Common Unix Printing System"
#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr ""
+msgstr "LPRng - LPR New Generation"
#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
-msgstr ""
+msgstr "LPD - Line Printer Daemon"
#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
-msgstr ""
+msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
#: ../../printer.pm_.c:37
msgid "LPD"
-msgstr ""
+msgstr "LPD"
#: ../../printer.pm_.c:38
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
#: ../../printer.pm_.c:50
msgid "Local printer"
@@ -6994,166 +7950,170 @@ msgstr "Impressora local"
msgid "Remote printer"
msgstr "Impressora remota"
+#
#: ../../printer.pm_.c:52
-#, fuzzy
msgid "Printer on remote CUPS server"
-msgstr "Servidor CUPS remot"
+msgstr "Impressora en servidor remot CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
-#, fuzzy
+#
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
-msgstr "Servidor lpd remot"
+msgstr "Impressora en servidor lpd remot"
#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
-msgstr "Impressora de xarxa (TCP/sņcol)"
+msgstr "Impressora de xarxa (TCP/Socket)"
+#
#: ../../printer.pm_.c:55
-#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
-msgstr "SMB/Windows 95/98/NT"
+msgstr "Impressora de SMB/Windows 95/98/NT Server"
+#
#: ../../printer.pm_.c:56
-#, fuzzy
msgid "Printer on NetWare server"
-msgstr "Servidor de la impressora"
+msgstr "Impressora en Servidor NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
-#, fuzzy
+#
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
-msgstr "Dispositiu URI d'impressora"
+msgstr "Entreu un Dispositiu URI d'impressora"
#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
-msgstr ""
+msgstr "Conduir el treball cap a una ordre"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
-msgstr ""
+msgstr "Model desconegut"
-#: ../../printer.pm_.c:535
-#, fuzzy
+#
+#: ../../printer.pm_.c:515
msgid "Local Printers"
-msgstr "Impressora local"
+msgstr "Impressores locals"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
-#, fuzzy
+#
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
-msgstr "Impressora remota"
+msgstr "Impressores remotes"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
-msgstr ""
+msgstr " en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
-msgstr ""
+msgstr ", impressora USB \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
+msgstr ", dispositiu multi-function en port paral·lel \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
-msgstr ""
+msgstr ", dispositiu multi-function en USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
-msgstr ""
+msgstr ", dispositiu multi-function en HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
-msgstr ""
+msgstr ", dispositiu multi-function"
-#: ../../printer.pm_.c:562
-#, fuzzy, c-format
+#: ../../printer.pm_.c:542
+#, c-format
msgid ", printing to %s"
-msgstr "S'ha produļt un error en escriure al fitxer %s"
+msgstr ", imprimint a %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " en servidor LPD \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr ""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " en Servidor Windows \"%s\", recurs compartit \"%s\""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " en Servidor Novell \"%s\", impressora \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
-msgstr ""
+msgstr ", utilitzant l'ordre %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
-msgstr ""
+msgstr "Impressora en cru ('Raw') (Cap controlador)"
-#: ../../printer.pm_.c:844
-#, fuzzy, c-format
+#: ../../printer.pm_.c:824
+#, c-format
msgid "(on %s)"
-msgstr "(mņdul %s)"
+msgstr "(en %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
-msgstr ""
+msgstr "(en aquest ordinador)"
-#: ../../printer.pm_.c:871
-#, fuzzy, c-format
+#: ../../printer.pm_.c:851
+#, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP del servidor CUPS"
+msgstr "en servidor CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Predeterminat)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Seleccioneu la connexió de la impressora"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Com estą connectada la impressora?"
-#: ../../printerdrake.pm_.c:25
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
+"\n"
"Amb un servidor CUPS remot, aquķ no us cal configurar cap\n"
-"impressora; les impressores es detectaran automąticament.\n"
-"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
+"impressora; les impressores es detectaran automąticament."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
-#, fuzzy
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
-msgstr "Configuració de la LAN"
+msgstr "Configuració de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
-msgstr "Servidor CUPS remot"
+msgstr "Especifiqueu Servidor CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7163,8 +8123,16 @@ msgid ""
"to enter the CUPS server IP address and optionally the port number to get "
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
+"Per tenir accés a les impressores en servidors CUPS remots dins la vostra "
+"xarxanot heu de configurar res; els servidors CUPS informen els vostres "
+"ordinadors automąticament sobre les seves impressores. Totes les impressores "
+"conegudes al vostre ordinador estan llistades en la secció \"Impressores "
+"Remotes\" en la pantalla principal de Printerdrake. Quant el servidor CUPS "
+"no estą en la vostra xarxa local, heu de especificar l'adreēa IP del "
+"servidor CUPS i opcionalment el nśmero del port per a obtenir informació de "
+"les impressores del servidor, sinó deixeu aquests camps en blanc."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7173,37 +8141,44 @@ msgid ""
"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
+"\n"
+"Normalment, CUPS és configura automąticament d'acord amb l'entorn de la "
+"vostra xarxa, per tal que pogueu accedir a les impressores en el servidor "
+"CUPS en la vostra xarxa local. Si aixņ no funciona, deshabiliteu "
+"\"Configuració Automątica de CUPS \" i editeu manualment el fitxer /etc/cups/"
+"cupsd.conf. No oblideu de reiniciar el CUPS (ordre: \"service cups restart"
+"\")."
-#: ../../printerdrake.pm_.c:76
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
-msgstr "L'adreēa IP ha d'estar amb el format 1.2.3.4"
+msgstr "L'adreēa IP ha d'estar amb el format 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
-msgstr "El nśmero de port ha de ser numčric"
+msgstr "El nśmero de port ha de ser enter!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
-msgstr "Configuració del tipus d'arrencada"
+msgstr "Configuració Automątica de CUPS"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
-msgstr "Cap impressora"
+msgstr "Afegiu una impressora"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7215,38 +8190,79 @@ msgid ""
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
+"\n"
+"Benvinguts a l'Auxiliar de configuració de la impressió\n"
+"\n"
+"Aquest auxiliar us permetrą d'instal·lar impressores locals o remotes per "
+"usar-les en aquest ordinador i en altres ordinadors de la xarxa.\n"
+"\n"
+"Us preguntarą per la informació necessąria per a definir impresssores i us "
+"proporciona accés als controladors disponibles de les impressores, les seves "
+"opcions, i tipus de connexió d'impressió."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impressora local"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
-msgstr "Impressora remota"
+msgid "Auto-detect printers connected to this machine"
+msgstr "Auto-detecta impressores"
+
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7259,226 +8275,226 @@ msgid ""
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
-
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-#, fuzzy
-msgid "Do auto-detection"
-msgstr "Utilitza la detecció automątica"
+"Felicitats, la impressora s'ha instal·lat i configurat correctament!\n"
+"\n"
+"Podeu imprimir utilitzant la ordre \"Print\" de les aplicacions (normalment "
+"en el menś \"File\").\n"
+"\n"
+"Si voleu afegir, esborrar, o renombrar una impressora, o si voleu canviar "
+"les opcions per defecte (safata d'entrada, qualitat impressió, ...), "
+"seleccioneu \"Impressora\" en la secció \"Hardware\" del Centre de Control "
+"Mandrake."
-#: ../../printerdrake.pm_.c:223
+#
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impressora remota"
+msgid "Printer auto-detection"
+msgstr "Fes la detecció automątica"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovació"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", servidor TCP/IP \"%s\", port %s"
-#: ../../printerdrake.pm_.c:252
+#
+#: ../../printerdrake.pm_.c:307
#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impressora de SMB/Windows 95/98/NT Server"
+
+#: ../../printerdrake.pm_.c:313
+#, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgstr "Impressora en el port paral·lel \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
-msgstr ""
+msgstr "Impressora USB \\/*%s"
+
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Impressora de xarxa (TCP/Socket)"
+
+#
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impressora de SMB/Windows 95/98/NT Server"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
"printer: /dev/usb/lp1, ...)."
msgstr ""
+"No s'ha trobat cap impressora! Per a instal·lar-la una manualment entreu el "
+"dispositiu/fitxeren la lķnia d'entrada (Ports Paral·lel: /dev/lp0, /dev/"
+"lp1, ..., equivalents a LPT1:, LPT2:, ..., 1a impresora USB: /dev/usb/lp0, "
+"2a USB impressora: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
-msgstr "Dispositiu URI d'impressora"
+msgstr "Heu d'entrar un dispositiu o fitxer!"
-#: ../../printerdrake.pm_.c:390
+#
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "No s'ha trobat cap impressora!"
+
+#: ../../printerdrake.pm_.c:485
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "Available printers"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
+"La següent impressora ha estat detectada, si no és la que voleu configurar, "
+"escriviu nom de dispositiu/nom de fitxer en la lķnia d'entrada"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
+"Aquķ teniu una llista de les impressores auto-detectades. Escolliu la "
+"impressora que voleu definir o escriviu nom de dispositiu/nom de fitxer en "
+"la lķnia d'entrada"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
"if you prefer a customized printer configuration, turn on \"Manual "
"configuration\"."
msgstr ""
+"La següent impressora ha estat detectada. La configuració de la impressora "
+"es farą d'una manera automatitzada. Si la vostra impressora no ha estat "
+"correctament detectada o si preferiu de personalitzar la seva configuració, "
+"habiliteu \"Configuració manual\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
"automatically. If your printer was not correctly detected or if you prefer a "
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
+"Aquķ hi ha una llista de impressores auto-detectades. Escolliu la impressora "
+"que voleu definir. La configuració de la impressora es farą d'una manera "
+"automatitzada. Si la vostra impressora no ha estat correctament detectada o "
+"si preferiu de personalitzar la seva configuració, habiliteu \"Configuració "
+"manual\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
+"Escolliu el port al qual estą connectada la impresoora o escriviu nom "
+"dispositiu/nom de fitxer en la lķnia d'entrada"
-#: ../../printerdrake.pm_.c:410
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr ""
-"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mņdem."
+"Si us plau, seleccioneu el port al qual teniu connectada la impressora."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
+" (Ports Paral·lel : /dev/lp0, /dev/lp1, ..., equivalents a LPT1:, "
+"LPT2:, ..., 1a impressora USB: /dev/usb/lp0, 2a impressora USB : /dev/usb/"
+"lp1, ...)."
-#: ../../printerdrake.pm_.c:417
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
-msgstr "Dispositiu URI d'impressora"
+msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
-#: ../../printerdrake.pm_.c:437
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
-msgstr "Configuració"
-
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "S'estą instal·lant el paquet %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "S'estą instal·lant el paquet %s"
+msgstr "Configuració manual"
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "S'estą instal·lant el paquet %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:649
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-"Per poder utilitzar una cua d'impressió lpd remota, necessiteu proporcionar\n"
-"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
-"cua d'aquest servidor on s'hi han de situar les tasques."
+"Per poder utilitzar una impressora lpd remota, necessiteu proporcionar el "
+"nom de l'ordinador central de la impressora i el nom de la impresoora en el "
+"servidor."
-#: ../../printerdrake.pm_.c:650
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:651
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
-msgstr "Impressora remota"
+msgstr "Nom de la impressora remota"
-#: ../../printerdrake.pm_.c:654
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
-msgstr "Nom de l'ordinador central remot"
+msgstr "Falta el nom de l'ordinador central remot!"
-#: ../../printerdrake.pm_.c:658
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
-msgstr "Nom de l'ordinador central remot"
+msgstr "Falta el nom de la impressora remota!"
+
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:726
+#
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "S'estą arrencant la xarxa..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "en Servidor Windows \"%s\", recurs compartit \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "S'estą imprimint en la impressora \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7487,40 +8503,51 @@ msgid ""
msgstr ""
"Per poder imprimir a una impressora SMB, heu d'indicar el nom de\n"
"l'ordinador central SMB (tingueu en compte que pot ser diferent del seu nom\n"
-"TCP/IP) i possiblement l'adreēa IP del servidor d'impressió, aixķ com el "
-"nom\n"
+"TCP/IP) i possiblement l'adreēa IP del servidor d'impressió, aixķ com el nom "
"de compartició de la impressora a quč voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:740
+#
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Auto-detecta impressores"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
-msgstr ""
+msgstr "S'ha de sumministrar o el nom del servidor o la ip del servidor!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
-msgstr ""
+msgstr "Falta El nom de compartició de Samba!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "AVĶS DE SEGURETAT!"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7543,8 +8570,30 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Ara, anem a definir la impressió cap a un usuari de Windows amb contrasenya. "
+"Degut a una fallada en l'arquitectura del programari del client Samba la "
+"contrasenya estą en text clar en la lķnia de comandes que el client Samba "
+"utilitza per a transmetre i imprimir un treball en el Servidor Windows. Per "
+"tant, és possible per qualsevol usuari d'aquell ordinador de veure la "
+"contrasenya en la pantalla simplement escrivint ordres tals com \"ps auxwww"
+"\".\n"
+"\n"
+"Us recomanem que utilitzeu alguna de les següents alternatives (en tots el "
+"casos heu d'estar segur que només els ordinadors de la vostra xarxa local "
+"tenen accés al vostre Servidor Windows, per exemple utilitzant un "
+"tallafoc):\n"
+"\n"
+"Utilitzeu un compte sense contrasenya en el Servidor Windows, tal com \"GUEST"
+"\" o \"Invitado\" o un compte especial dedicat a la impressió. No treieu la "
+"protecció de la contrasenya d'un compte personal o del compte de "
+"l'administrador.\n"
+"\n"
+"Configureu el vostre Servidor Windows fent que la impressora estigui "
+"disponible a través del protocol LPD. Aleshores, definiu la impressió en "
+"aquest ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7552,21 +8601,30 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Configureu el vostre Servidor Windows fent que la impressora estigui "
+"disponible sota el protocol IPP i configureu la impressió en aquest "
+"ordinador amb el tipus de connexió \"%s\" en Printerdrake.\n"
+"\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Connecteu la vostra impressora en un servidor Linux i feu que els ordinadors "
+"Windows s'hi connectin com clients.\n"
+"\n"
+"Realment voleu continuar configurant aquesta impressora tal com s'estą fent "
+"ara?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:826
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7580,88 +8638,119 @@ msgstr ""
"la impressora a quč voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
-msgstr ""
+msgstr "Falta el nom del Servidor NCP!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
-msgstr ""
+msgstr "Falta el nom de la cua NCP!"
-#: ../../printerdrake.pm_.c:876
-#, fuzzy
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", servidor TCP/IP \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", servidor TCP/IP \"%s\", port %s"
+
+#
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
-msgstr "Opcions de la impressora de sņcol"
+msgstr "Opcions de la impressora per a TCP/Socket"
+
+#: ../../printerdrake.pm_.c:977
+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 ""
-#: ../../printerdrake.pm_.c:877
+#
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-"Per imprimir a una impressora de sņcol, heu d'indicar el nom de l'ordinador\n"
-"central de la impressora i, opcionalment, el nśmero de port."
+"Per imprimir a una impressora TCP o Socket, heu d'indicar el nom de "
+"l'ordinador central de la impressora i, opcionalment, el nśmero de port. En "
+"els servidors HP JetDirect el nśmero del port normalment és el 9100, en els "
+"altres pot variar. Mireu el manual del vostre maquinari."
-#: ../../printerdrake.pm_.c:878
+#
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
-msgstr "Nom de l'ordinador central de la impressora"
+msgid "Printer host name or IP missing!"
+msgstr "Falta el nom de l'ordinador central de la impressora!"
-#: ../../printerdrake.pm_.c:882
+#
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
+"Podeu especificar directament l'URI per a accedir a la impressora. L'URI ha "
+"de complir l'especificació CUPS o Foomatic. Cal remarcar que not tots els "
+"tipus de URI es suporten en tots els spoolers(cues d'impressió)."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
-msgstr ""
+msgstr "Heu d'entrar un URI vąlid!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
+"Cada impressora necessita un nom (per exemple \"printer\"). Els camps de "
+"Descripció i Ubicació no són necessaris. Són comentaris per als usuaris."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ubicació"
-#: ../../printerdrake.pm_.c:1045
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "S'estą llegint la base de dades d'impressores..."
+
+#
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "Preparant la base de dades de impressores..."
-#: ../../printerdrake.pm_.c:1136
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
-msgstr "Impressora remota"
+msgstr "El vostre model d'impressora"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7675,29 +8764,40 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake ha comparat el nom del model resultant de l'autodetecció "
+"d'impressores amb els model llistats en la seva base de dades d'impressores "
+"per a trobar el millor resultat. La elecció pot ser dolenta, especialment "
+"quan l'impressió no existeix en la base de dades. Per tant, mireu si la "
+"elecció és correcta i feu clic en\"El model és correcte\" si ho és, perņ "
+"sinó, feu clic en \"Selecciona model manualment\" per tal de escollir "
+"manualment el model d'impressora en la pantalla.\n"
+"\n"
+"Per la vostra impressora el Printerdrake ha trobat:\n"
+"\n"
+"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
-msgstr "Aixņ és correcte?"
+msgstr "El model és correcte"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
-msgstr "Impressora remota"
+msgstr "Selecciona model manualment"
-#: ../../printerdrake.pm_.c:1163
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
-msgstr "Connexió de la impressora"
+msgstr "Selecció del model d'impressora"
-#: ../../printerdrake.pm_.c:1164
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
-msgstr "Quin tipus d'impressora teniu?"
+msgstr "Quin tipus de model d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7705,19 +8805,26 @@ msgid ""
"model correctly. Search the correct model in the list when the cursor is "
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
+"\n"
+"\n"
+"Per favor, comproveu que Printerdrake ha fet l'autodetecció del model de la "
+"impressora correctament. Busqueu el model correcte en la llista quan el "
+"cursor estigui en un model erroni o en \"Impressora en cru(Raw)\"."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
+"Si la vostra impressora no és a la llista, escolliu una compatible (mireu el "
+"manual de la impresora) o un de similar."
-#: ../../printerdrake.pm_.c:1244
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
-msgstr "Configuració del mņdem"
+msgstr "Configuració de l 'winprinter' OKI"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7726,21 +8833,32 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Esteu configurant una 'winprinter' laser OKI. Aquestes impressores\n"
+"usen un protocol de comunicació molt especial i, per tant, només funcionen "
+"quan es conecten al primer port paral·lel. Quan la impressora estigui "
+"conectada a un altre port o a un servidor d'impressió conecteu primer la "
+"impressora al primer port paral·lel abans d'imprimir la pągina de prova. Si "
+"no ho feu, la impressora no funcionarą. El tipus de conecció serą ignorat "
+"pel controlador de la impressora."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
-msgstr "Configuració d'Internet"
+msgstr "Configuració de la Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"El controladors de inkjet proporcionats per Lexmark només suporten "
+"impressores locals, i no impressores en ordinadors remots o servidors "
+"d'impressió. Per favor, connecteu la vostra impressora en un port local o "
+"configureu-la en l'ordinador on estą connectada."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7752,8 +8870,18 @@ msgid ""
"with \"lexmarkmaintain\" and adjust the head alignment settings with this "
"program."
msgstr ""
+"Per a poder imprimir amb la Lexmark inkjet i aquesta configuració, "
+"necessiteu els controladors de la impressora inkjet proporcionats per "
+"Lexmark (http://www.lexmark.com/). Aneu a la web d'E.U.A.(US site) i feu "
+"clic sobre el butó \"Drivers\". Aleshores escolliu el vostre model i després "
+"\"Linux\" com a sistema operatiu. Els controladors venen en paquets RPM o "
+"'shell scripts' amb una instal·lació grąfica interactiva. No necessiteu fer "
+"aquesta configuració amb l'interfķcie grąfica. Canceleu directament després "
+"de l'acord de llicčncia. I imprimiu 'printhead alignment pages' amb "
+"\"lexmarkmaintain\" i ajusteu l'aliniació de la capēalera amb aquest "
+"programa."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7762,82 +8890,95 @@ msgid ""
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
+"Parąmetres per defecte de la impressora\n"
+"\n"
+"Us haurķeu d'assegurar que són correctes la mida de la pągina, el mode "
+"d'impressió/tipus de tinta (si estą disponible) i també la configuració del "
+"maquinari de les impressores ląser (memņria, unitat duplex, safates extra). "
+"Cal remarcar que amb una molt alta qualitat d'impresssió/resolució la "
+"impressió pot ser molt lenta."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
-msgstr ""
+msgstr "La opció %s ha de ser un nśmero enter!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
-msgstr ""
+msgstr "La opció %s ha de ser un nśmero!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
-msgstr ""
+msgstr "La opció %s estą fora de rang!"
-#: ../../printerdrake.pm_.c:1589
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:1969
+#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
-msgstr "Voleu comprovar la impressió?"
+msgstr ""
+"Voleu definir la impressora (\"%s\")\n"
+"com a impressora per defecte?"
-#: ../../printerdrake.pm_.c:1606
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
-msgstr "Ports de comprovació"
+msgstr "Pągines de prova"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""
+"Escolliu les pągines de prova que voleu imprimir.\n"
+"Nota: la pągina de prova de fotografia pot ser molt lenta d'imprimir i en "
+"impressores ląser amb poca memņria podria no acabar d'imprimir-se. "
+"Normalment n'hi ha prou en imprimir la pągina de prova estąndar."
-#: ../../printerdrake.pm_.c:1611
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
-msgstr "Sķ, imprimeix ambdues pągines de prova"
+msgstr "Cap pągina de prova"
-#: ../../printerdrake.pm_.c:1612
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
-msgstr "Impressora"
+msgstr "Imprimeix"
-#: ../../printerdrake.pm_.c:1614
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
-msgstr "Eines estąndard"
+msgstr "Pągina estąndar de prova"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
-msgstr ""
+msgstr "Pągina alternativa de prova (Carta)"
-#: ../../printerdrake.pm_.c:1620
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
-msgstr "S'esta(n) imprimint la(es) pągina(es) de prova... "
+msgstr "Pągina alternativa de prova (A4)"
-#: ../../printerdrake.pm_.c:1622
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
-msgstr "S'esta(n) imprimint la(es) pągina(es) de prova... "
+msgstr "Pągina de prova de fotografia"
-#: ../../printerdrake.pm_.c:1626
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
-msgstr "S'esta(n) imprimint la(es) pągina(es) de prova... "
+msgstr "No imprimir cap pągina de prova"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pągina(es) de prova... "
-#: ../../printerdrake.pm_.c:1659
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2039
+#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7845,33 +8986,31 @@ msgid ""
"%s\n"
"\n"
msgstr ""
-"La(es) pągina(es) de prova s'ha(n) enviat al procés d'impressió.\n"
-"Degut a aixņ, pot passar un cert temps abans no comenci la impressió.\n"
+"La(es) pągina(es) de prova s'ha(n) enviat a la impressora.\n"
+"Pot passar un cert temps abans no comenci la impressió.\n"
"Estat de la impressió:\n"
"%s\n"
"\n"
-"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1663
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-"La(es) pągina(es) de prova s'ha(n) enviat al procés d'impressió.\n"
-"Degut a aixņ, pot passar un cert temps abans no comenci la impressió.\n"
-"Funciona correctament?"
+"La(es) pągina(es) de prova s'ha(n) enviat a la impressora.\n"
+"Pot passar un cert temps abans no comenci la impressió.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
-msgstr ""
+msgstr "Ha funcionat correctament?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
-msgstr "Cap impressora"
+msgstr "Impressora en cru(Raw)"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7879,16 +9018,24 @@ msgid ""
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
+"Per a imprimir un fitxer des de la lķnia de comandes (finestra de terminal) "
+"podeu utilitzar la comanda \"%s <fitxer>\" o una utilitat d'impressió "
+"grąfica : \"xpp <fitxer>\" o \"kprinter <fitxer>\". La utilitat grąfica us "
+"permet d'escollir la impressora i de modificar els parąmetres opcions "
+"fącilment.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Podeu utilitzar aquestes comandes en el camp \"Comandes d'Impressió\" dels "
+"diąlegs d'impressió de moltes aplicacions, perņ ara no subministreu el "
+"fitxer perquč el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7896,50 +9043,70 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"La comanda \"%s\" també us permet de modificar els parąmetres per a un "
+"treball d'impressió particular. Simplement afegiu els parąmetres desitjats "
+"en la lķnia de comandes, e. g. \"%s <fitxer>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, 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 ""
+"Per a cončixer quines són les opcions disponibles per la impressora actual "
+"lleigiu la llista de sota o feu clic en el butó \"Imprimir llista d'opcions"
+"\".%s%s\n"
+"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
+"Aquķ hi ha una llista de les opcions d'impressió disponibles per la "
+"impressora actual:\n"
+"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
+"Per a imprimir un fitxer des de la lķnia de comandes (finestra de terminal) "
+"useu la comanda \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"També podeu utilitzar aquesta ordre en el camp \"Ordres d'impressió\" dels "
+"diąlegs d'impressió de moltes aplicacions. Perņ ara no subministreu el "
+"fitxer perquč el fitxer per a imprimir ja el proporciona l'aplicació.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
+"Per a veure una llista d'opcions disponibles per a la impressora actual feu "
+"clic sobre el butó \"Llista d'opcions d'impressió\"."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Per a imprimir un fitxer des de la lķnia de comandes (finestra de terminal) "
+"utilitzeu l'ordre \"%s <fitxer>\" o \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7948,8 +9115,14 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Podeu utilitzar l'interfģcie grąfica \"xpdq\" per a definir opcions per a la "
+"gestió de treballs d'impressió.\n"
+"Si esteu utilitzant KDE com a entorn grąfic per defecte, teniu una icona en "
+"l'escritori \"panic button\", labeled with \"STOP Printer!\", que para tots "
+"el treballs d'impressió inmediatament quan ho cliqueu. Aixņ és śtil, per "
+"exemple, quan se us ha enganxat el paper en la impressora.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7957,47 +9130,51 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"Les comandes \"%s\" i \"%s\" també permeten modificar els parąmetres per a "
+"un treball d'impressió particular. Simplement afegiu els parąmetres que "
+"voleu en la lķnia de comandes, p.e. \"%s <fitxer>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "S'estą desactivant la xarxa"
+msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:1774
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2154
+#, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "S'estą desactivant la xarxa"
+msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "S'estą desactivant la xarxa"
+msgstr "Imprimint/Scannejant en \"%s\""
-#: ../../printerdrake.pm_.c:1777
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2157
+#, c-format
msgid "Printing on the printer \"%s\""
-msgstr "S'estą desactivant la xarxa"
-
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+msgstr "S'estą imprimint en la impressora \"%s\""
+
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Tanca"
-#: ../../printerdrake.pm_.c:1783
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
-msgstr "Opcions de la impressora"
+msgstr "Llista d'opcions d'impressió"
-#: ../../printerdrake.pm_.c:1802
-#, c-format
+#: ../../printerdrake.pm_.c:2182
+#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8005,10 +9182,19 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"El vostre dispositiu HP multi-function ha estat configurat automąticament "
+"per a poder scanejar. Ara podeu scanejar amb \"scanimage\" (\"scanimage -d "
+"hp:%s\" per a especificar l'scanner quan n'hi ha més d'un) des de la lķnia "
+"de comandes o amb l'interfķcies grąfiques \"xscanimage\" o \"xsane\". Si "
+"esteu utilitzant el GIMP, també podeu escanejar escollint el punt apropiat "
+"en menś \"File\"/\"Acquire\". Executeu \"man scanimage\" i \"man sane-hp\" "
+"en la lķnia de comandes per a més informació.\n"
+"\n"
+"No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8019,19 +9205,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą llegint dades de la impressora..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
-msgstr "Configuració d'Internet"
+msgstr "Configuració de transferčncia de la impressió"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8040,130 +9226,160 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Podeu copiar la configuració d'impressió que he fet per la cua %s a la %s, "
+"la cua d'impressió actual. Tota la configuració de dades (nom d'impressora, "
+"descripció, ubicació, tipus de connexió, i parąmetres per defecte) is "
+"sobreescrita, perņ els treballs d'impressió no seran transferits.\n"
+"No totes les cues d'impressió poden ser transferides degut a les següents "
+"raons:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS no permet l'śs d'impressores en servidors Novell ni que les impressores "
+"enviļn les dades cap a una ordre lliure de forma.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
+"PDQ només suporta impressores locals, impressores LPD remotes, i impressores "
+"de Socket/TCP.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
+msgstr "LPD i LPRng no suporten impressores IPP.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"A més a més, les cues que han estat creades amb altres programes que no són "
+"aquest i \"foomatic-configure\" no poden ser transferides."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"També les impressores configurades amb els fitxers PPD proporcionats pels "
+"seus fabricants o amb controladors nadius per a CUPS no poden ser "
+"transferides."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
+"\n"
+"Marqueu les impressores que voleu transferir i feu clic en \n"
+"\"Transferir\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
-msgstr ""
+msgstr "No transferir cap impressora"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
-msgstr ""
+msgstr "Transferir"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"Un nom d'impressora anomenat \"%s\" ja existeix en %s. \n"
+"Feu clic en \"Transferir\" per a sobreescriure'l.\n"
+"També podeu escriure un nou nom o saltar-se aquesta impressora."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora només pot constar de lletres, nśmeros i el carącter "
"de subratllat"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
+"La impressora \"%s\" ja existeix,\n"
+"realment voleu sobreescriure la seva configuració?"
-#: ../../printerdrake.pm_.c:1912
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
-msgstr "Cap impressora"
+msgstr "Nou nom d'impressora"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
-msgstr ""
+msgstr "Transferint %s..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
+"Heu tranferit la vostra śltima impressora per defecte (\"%s\"), Hauria de "
+"ser també la impressora per defecte en el nou sistema d'impressió %s?"
-#: ../../printerdrake.pm_.c:1935
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą refrescant les dades de les impressores..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
-msgstr "Configura la impressora"
+msgstr "Configuració d'una impressora remota"
-#: ../../printerdrake.pm_.c:1944
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
-msgstr "S'estą comprovant la vostra conexió..."
+msgstr "S'estą arrencant la xarxa..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
-msgstr "Configura la xarxa"
+msgstr "Configureu la xarxa ara"
-#: ../../printerdrake.pm_.c:1979
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
-msgstr "El monitor no estą configurat"
+msgstr "La funcionalitat de xarxa no ha estat configurada"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 ""
+"Ara estem a punt per a configurar una impressora remota. Aixņ necessita una "
+"connexió de xarxa que funcioni, perņ la vostra xarxa no estą configurada "
+"encara. Si continueu sense configurar la xarxa, no podreu utilitzar la "
+"impressora que esteu ara configurant. Quč voleu fer?"
-#: ../../printerdrake.pm_.c:1983
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
-msgstr "S'estą configurant la xarxa"
+msgstr "Continuar sense configurar la xarxa"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8172,35 +9388,44 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"La configuració de xarxa feta durant la instal·lació no s'ha pogut iniciar "
+"ara. Comproveu si la xarxa es torna accessible després de reiniciar el "
+"sistema i corregiu la configuració utilitzant el Centre de Control Mandrake, "
+"la secció \"Xarxa & Internet\"/\"Connexió\", i després configureu la "
+"impressora, també usant el Centre de Control Mandrake, secció \"Maquinari\"/"
+"\"Impressores\""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
+"L'accés a la xarxa no ha funcionat i no s'ha pogut iniciar. Comproveu la "
+"configuració i el maquinari. Després proveu de configurar la impressora "
+"remota una altra vegada."
-#: ../../printerdrake.pm_.c:2027
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
-msgstr "Quin sistema d'impressió voleu utilitzar?"
+msgstr "Reiniciant el sistema d'impressió..."
-#: ../../printerdrake.pm_.c:2065
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "Alt"
-#: ../../printerdrake.pm_.c:2065
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Instal·lant un sistema d'impressió amb el nivell de seguretat %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8214,13 +9439,23 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Estem a punt d'instal·lar el sistema d'impressió %s en un sistema executant-"
+"se en el nivell de seguretat %s.\n"
+"\n"
+"Aquest sistema d'impressió executa un dimoni (procés en segon pla) que "
+"espera els treballs d'impressió i els gestiona. Aquest dimoni és accessible "
+"per ordinadors remots conectats a la xarxa i, per tant, és un possible punt "
+"d'atac. Per tant, uns pocs seleccionats dimonis són arrencats per defecte en "
+"aquest nivel de seguretat.\n"
+"\n"
+"Realment voleu configurar l'impressió en aquest ordinador?"
-#: ../../printerdrake.pm_.c:2099
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
-msgstr "Quin sistema d'impressió voleu utilitzar?"
+msgstr "Iniciant el sistema d'impressió en arrencar l'ordinador"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8233,234 +9468,252 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"El sistema d'impressió (%s) no s'arrencarą automąticament quan l'ordinador "
+"s'inicļi.\n"
+"\n"
+"És possible que l'arrencada automątica fos deshabilitada en canviar a un "
+"nivell de seguretat més gran, perquč el sistema d'impressió és un potencial "
+"punt d'atac.\n"
+"\n"
+"Voleu que l'arrencada automątica del sistema d'impressió és torni a "
+"habilitar una altra vegada?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
-msgstr ""
+msgstr "Comprovant el programari instal·at"
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
-msgstr ""
+msgstr "Treient LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
-msgstr ""
+msgstr "Treient LPD..."
-#: ../../printerdrake.pm_.c:2276
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
-msgstr "Seleccioneu la connexió de la impressora"
+msgstr "Seleccioneu la cua d'impressió"
-#: ../../printerdrake.pm_.c:2277
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
-msgstr "Quin sistema d'impressió voleu utilitzar?"
+msgstr "Quin sistema d'impressió(cua) voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2310
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2691
+#, c-format
msgid "Configuring printer \"%s\"..."
-msgstr "Configura la impressora"
+msgstr "Configurant la impressora \"%s\"..."
-#: ../../printerdrake.pm_.c:2323
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
-msgstr "S'estą instal·lant el paquet %s"
+msgstr "S'estą instal·lant Foomatic..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:2389
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą preparant PrinterDrake..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
-msgstr "Configura la impressora"
+msgstr "S'estą configurant aplicacions..."
-#: ../../printerdrake.pm_.c:2426
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
-msgstr "Voleu configurar una impressora?"
+msgstr "Voleu configurar la impressió?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
-msgstr ""
+msgstr "Sistema d'impressió: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
"or to make a printer on a remote CUPS server available for Star Office/"
"OpenOffice.org."
msgstr ""
-"Aquestes són les cues d'impressió següents.\n"
-"Podeu afegir-ne algunes més o canviar-ne les existents."
+"Les impressores següents estan configurades. Feu doble-clic en una "
+"impressora per a modificar els parąmetres; per a fer-la per defecte; per a "
+"veure'n la informació; o per a fer que una impressora en un servidor remot "
+"CUPS sigui disponible per a Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2491
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-"Aquestes són les cues d'impressió següents.\n"
-"Podeu afegir-ne algunes més o canviar-ne les existents."
+"Les impressores següents estan configurades. Feu doble-clic en una "
+"impressora per a modificar els parąmetres; per a fer-la per defecte; per a "
+"veure la informació de la impressora."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
+"Refresqueu la llista d'impressores (per a veure totes les impressores CUPS "
+"remotes disponibles)"
-#: ../../printerdrake.pm_.c:2535
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
-msgstr "Configura la xarxa"
+msgstr "Modificar el sistema d'impressió"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
-msgstr "Voleu comprovar la configuració?"
+msgstr "Voleu configurar una altra impressora?"
-#: ../../printerdrake.pm_.c:2782
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
-msgstr "Configuració del mņdem"
+msgstr "Modificar la configuració de la impressora"
-#: ../../printerdrake.pm_.c:2784
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3172
+#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "Voleu comprovar la configuració?"
+msgstr ""
+"Impressora %s\n"
+"Voleu modificar la impressora?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
-msgstr ""
+msgstr "Fes-ho!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
-msgstr "Connexió a Internet compartida"
+msgstr "Tipus de connexió de la impressora"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
-msgstr "Connexió de la impressora"
+msgstr "Nom de la impressora, descripció, ubicació"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
-msgstr ""
+msgstr "Fabricant de la impressora, model, controlador"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "Fabricant de la impressora, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
-msgstr ""
+msgstr "Fes aquesta impressora la impr. per defecte"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Afegeix aquesta impressora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Treu aquesta impressora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
-msgstr "S'esta(n) imprimint la(es) pągina(es) de prova... "
+msgstr "Imprimeix la(es) pągina(es) de prova"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
-msgstr "Voleu comprovar la configuració?"
+msgstr "Aprengueu a utilitzar aquesta impressora"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
-msgstr "Impressora remota"
+msgstr "Esborra impressora"
-#: ../../printerdrake.pm_.c:2857
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3245
+#, c-format
msgid "Removing old printer \"%s\"..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą esborrant la impressora antiga \"%s\"..."
-#: ../../printerdrake.pm_.c:2881
-#, fuzzy
+#
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
-msgstr "Impressora local"
+msgstr "Impressora per defecte"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+msgstr "La impressora \"%s\" és la impressora per defecte ara."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
-msgstr ""
+msgstr "Afegint impressora a Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
+"La impressora \"%s\" ha estat afegida correctament a Star Office/OpenOffice."
+"org."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
+"S'ha fallat en afegir la impressora \"%s\" a Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
-msgstr ""
+msgstr "S'estą esborrant la impressora de Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
+"La impressora \"%s\" ha estat esborrada correctament de Star Office/"
+"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
+"S'ha fallat en esborrar la impressora \"%s\" de Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2907
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3295
+#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Voleu reiniciar la xarxa"
+msgstr "Voleu relment esborrar la impressora \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3297
+#, c-format
msgid "Removing printer \"%s\"..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą esborrant la impressora \"%s\"..."
+#
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
-#, fuzzy
msgid "Proxy configuration"
-msgstr "Configuració dels proxys"
+msgstr "Configuració del proxy"
#: ../../proxy.pm_.c:30
msgid ""
@@ -8469,29 +9722,35 @@ msgid ""
"Here, you'll be able to set up your http and ftp proxies\n"
"with or without login and password\n"
msgstr ""
+"Benvingut a la utilitat de configuració del proxy.\n"
+"\n"
+"Aquķ, podreu definir i configurar els vostres proxies http i ftp\n"
+"amb o sense entrada i contrasenya\n"
#: ../../proxy.pm_.c:38
msgid ""
"Please fill in the http proxy informations\n"
"Leave it blank if you don't want an http proxy"
msgstr ""
+"Per favor, entreu les informacions del proxy http\n"
+"Deixeu buit si no voleu un proxy http"
#: ../../proxy.pm_.c:39 ../../proxy.pm_.c:60
msgid "URL"
-msgstr ""
+msgstr "URL"
+#
#: ../../proxy.pm_.c:40 ../../proxy.pm_.c:61
-#, fuzzy
msgid "port"
msgstr "Port"
+#
#: ../../proxy.pm_.c:44
-#, fuzzy
msgid "Url should begin with 'http:'"
-msgstr "El proxy ha de ser http://..."
+msgstr "La Url haurķa de comenēar amb 'http:'"
+#
#: ../../proxy.pm_.c:48 ../../proxy.pm_.c:69
-#, fuzzy
msgid "The port part should be numeric"
msgstr "El nśmero de port ha de ser numčric"
@@ -8500,37 +9759,42 @@ msgid ""
"Please fill in the ftp proxy informations\n"
"Leave it blank if you don't want an ftp proxy"
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:'"
-msgstr "El proxy ha de ser ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "La Url haurķa de comenēar amb 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
"Leave it blank if you don't want login/passwd"
msgstr ""
+"Per favor, entreu l'entrada i la contrasenya del proxy, si en voleu.\n"
+"Deixeu en blanc si no voleu entrada/contrasenya"
+#
#: ../../proxy.pm_.c:80
-#, fuzzy
msgid "login"
-msgstr "Entrada automątica"
+msgstr "entrada"
+#
#: ../../proxy.pm_.c:82
-#, fuzzy
msgid "password"
-msgstr "Contrasenya"
+msgstr "contrasenya"
+#
#: ../../proxy.pm_.c:84
-#, fuzzy
msgid "re-type password"
-msgstr "Sense contrasenya"
+msgstr "re-entreu contrasenya"
+#
#: ../../proxy.pm_.c:88
-#, fuzzy
msgid "The passwords don't match. Try again!"
-msgstr "Les contrasenyes no coincideixen"
+msgstr "Les contrasenyes no coincideixen. Proveu-ho una altre cop!"
#: ../../raid.pm_.c:35
#, c-format
@@ -8540,62 +9804,24 @@ msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
-msgstr "No es pot escriure al fitxer %s"
+msgstr "No es pot escriure el fitxer %s"
#: ../../raid.pm_.c:137
msgid "mkraid failed"
-msgstr "l'mkraid ha fallit"
+msgstr "mkraid ha fallat"
#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
+msgstr "mkraid ha fallat (potser manquen eines del RAID(raidtools)?)"
#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
-"fącil\n"
-"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 mitjanēant contrasenya."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
-"servidor esdevé possible.\n"
-"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
-"que accepti connexions de molts clients. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuració de la LAN"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opcions"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr ""
+msgstr "Llanēar el sistema de so ALSA (Advanced Linux Sound Architecture)"
#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
@@ -8647,6 +9873,8 @@ msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
+"HardDrake fa una prova del maquinari, i opcionalment configura\n"
+"maquinari nou/canviat."
#: ../../services.pm_.c:28
msgid ""
@@ -8675,6 +9903,9 @@ msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
+"Arrencar el filtrador de paquets per la sčrie Linux kernel 2.2, per a "
+"instal·lar\n"
+"un tallafoc que protegeixi el vostre ordinador d'atacs des de la xarxa."
#: ../../services.pm_.c:35
msgid ""
@@ -8692,16 +9923,21 @@ msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
+"Regeneració automątica del header de nucli(kernel) in /boot per\n"
+"/usr/include/linux/{autoconf,version}.h"
#: ../../services.pm_.c:40
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
+"Detecció i configuració automątica del maquinari en iniciar l'ordinador."
#: ../../services.pm_.c:41
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""
+"Linuxconf algunes vegades determinarą que s'han de fer algunes tasques\n"
+"en iniciar l'ordinador per a mantenir la configuració del sistema."
#: ../../services.pm_.c:43
msgid ""
@@ -8717,15 +9953,18 @@ msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
+"Linux Virtual Server, és usat per construir un servidor de gran capacitat i "
+"gran \n"
+"robustesa."
+#
#: ../../services.pm_.c:47
-#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
-"named (BIND) és un servidor de noms de domini (DNS) que s'utiilitza\n"
-"per convertir noms d'ordinadors centrals en adreces IP."
+"named (BIND) és un servidor de noms de domini (DNS) que s'utilitza per "
+"convertir noms d'ordinadors centrals en adreces IP."
#: ../../services.pm_.c:48
msgid ""
@@ -8766,10 +10005,12 @@ msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
+"Engega automąticament a l'arrencada el bloquejador de la tecla\n"
+"de fixació del teclat numčric a la consola i sota XFree."
#: ../../services.pm_.c:59
msgid "Support the OKI 4w and compatible winprinters."
-msgstr ""
+msgstr "Suport per a OKI 4w i winprinters compatibles."
#: ../../services.pm_.c:60
msgid ""
@@ -8794,14 +10035,14 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
+#
#: ../../services.pm_.c:66
-#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"El Postfix és un agent de transport de correu, que és el programa que\n"
-"passa el correu d'un ordinador a un altre."
+"El Postfix és un Agent de Transport de Correu, que és el programa que passa "
+"el correu d'un ordinador a un altre."
#: ../../services.pm_.c:67
msgid ""
@@ -8816,6 +10057,9 @@ msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle"
msgstr ""
+"Asignar els dispositius en cru(raw) a dispositius de blocs (tals com les "
+"particions de\n"
+"disc dur), per que siguin utilitzats per aplicacions com ara Oracle"
#: ../../services.pm_.c:71
msgid ""
@@ -8853,10 +10097,10 @@ msgstr ""
"de tots els usuaris que estįn connectats a un ordinador que estą\n"
"executant el procés rwho (similar al finger)."
+#
#: ../../services.pm_.c:80
-#, fuzzy
msgid "Launch the sound system on your machine"
-msgstr "Executa el sistema X-Window en iniciar"
+msgstr "Llanēa el sistema de so en el vostre ordinador"
#: ../../services.pm_.c:81
msgid ""
@@ -8869,22 +10113,22 @@ msgstr ""
#: ../../services.pm_.c:83
msgid "Load the drivers for your usb devices."
-msgstr ""
+msgstr "Carrega els controladors per als dispositius usb."
+#
#: ../../services.pm_.c:84
-#, fuzzy
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr "Inicia i atura l'X Font Server en arrencar i apagar l'ordinador."
+msgstr "Inicia l'X Font Server (aixņ és necessari per a que XFree funcioni)."
#: ../../services.pm_.c:110 ../../services.pm_.c:152
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Escolliu els serveis que s'han d'iniciar automąticament durant l'arrencada"
+#
#: ../../services.pm_.c:122
-#, fuzzy
msgid "Printing"
-msgstr "Impressora"
+msgstr "Impressió"
#: ../../services.pm_.c:123
msgid "Internet"
@@ -8892,32 +10136,32 @@ msgstr "Internet"
#: ../../services.pm_.c:126
msgid "File sharing"
-msgstr ""
+msgstr "Compartició de fitxers"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
-#, fuzzy
+#
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
-msgstr "Mode de sistema"
+msgstr "Sistema"
+#
#: ../../services.pm_.c:133
-#, fuzzy
msgid "Remote Administration"
-msgstr "Opcions de la impressora lpd remota"
+msgstr "Administració remota"
+#
#: ../../services.pm_.c:141
-#, fuzzy
msgid "Database Server"
-msgstr "Servidor, base de dades"
+msgstr "Servidor de base de dades"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr ""
+msgstr "Serveis: %d activats per %d registrats"
+#
#: ../../services.pm_.c:186
-#, fuzzy
msgid "Services"
-msgstr "dispositiu"
+msgstr "Serveis"
#: ../../services.pm_.c:198
msgid "running"
@@ -8943,23 +10187,23 @@ msgstr ""
msgid "On boot"
msgstr "En arrencar"
+#
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Start"
-msgstr "Estat:"
+msgstr "Iniciar"
+#
#: ../../services.pm_.c:236
-#, fuzzy
msgid "Stop"
-msgstr "Sector"
+msgstr "Aturar"
#: ../../share/advertising/00-thanks.pl_.c:9
msgid "Thank you for choosing Mandrake Linux 8.2"
-msgstr ""
+msgstr "Grącies per triar Mandrake Linux 8.2"
#: ../../share/advertising/00-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
-msgstr ""
+msgstr "Benvinguts al món del Codi Font Obert"
#: ../../share/advertising/00-thanks.pl_.c:11
msgid ""
@@ -8967,11 +10211,14 @@ msgid ""
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
+"L'čxit de MandrakeSoft es basa en els principis del Codi Font Obert. El "
+"vostre nou sistema operatiu és el resultat del treball en col·laboració de "
+"tota la Comunitat Linux de tot el Món"
+#
#: ../../share/advertising/01-gnu.pl_.c:9
-#, fuzzy
msgid "Join the Free Software world"
-msgstr "Resta del món"
+msgstr "Uneix-te al Codi Font Obert arreu del món"
#: ../../share/advertising/01-gnu.pl_.c:10
msgid ""
@@ -8979,11 +10226,14 @@ msgid ""
"help others by joining the many discussion forums that you will find in our "
"\"Community\" webpages"
msgstr ""
+"Investigueu en la comunitat de l'Open Source i feu-vos'en membre. Apreneu, "
+"ensenyeu, i ajudeu als altres tot i participant en els mśltiples forums de "
+"discussió que trobareu en les pągines de la \"Comunitat\"."
+#
#: ../../share/advertising/02-internet.pl_.c:9
-#, fuzzy
msgid "Internet and Messaging"
-msgstr "Accés a Internet"
+msgstr "Internet i Missatgeria"
#: ../../share/advertising/02-internet.pl_.c:10
msgid ""
@@ -8992,11 +10242,15 @@ msgid ""
"Konqueror, exchange email & organize your personal information with "
"Evolution and Kmail, and much more"
msgstr ""
+"Mandrake Linux 8.2 proporciona el millor programari per a accedir tot el que "
+"Internet us pot oferir: navegueu la web i veieu animacions amb Mozilla i "
+"Konqueror, envieu missatges i organitzeu-vos la informació personal amb "
+"Evolution i Kmail, i molt més"
+#
#: ../../share/advertising/03-graphic.pl_.c:9
-#, fuzzy
msgid "Multimedia and Graphics"
-msgstr "Multimčdia - Grąfics"
+msgstr "Multimčdia i Grąfics"
#: ../../share/advertising/03-graphic.pl_.c:10
msgid ""
@@ -9004,6 +10258,9 @@ msgid ""
"the latest software to play music and audio files, edit and organize your "
"images and photos, watch TV and videos, and much more"
msgstr ""
+"Mandrake Linux 8.2 us permet utilitzar el vostre ordinador multimčdia fins "
+"al lķmit! Useu l'śltim programari per a tocar mśsica i fitxers de so, editar "
+"i organitzar les vostres imatges i fotos, mirar la TV i videos, i molt més"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -9015,23 +10272,28 @@ msgid ""
"of the GNU gcc compiler as well as the best Open Source development "
"environments"
msgstr ""
+"Mandrake Linux 8.2 és l'śltima plataforma de desenvolupament més "
+"actualitzada. Descubreix el poder del compilador GNU gcc hagi com el dels "
+"millors entorns de desenvolupament en Codi Font Obert"
+#
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
-#, fuzzy
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
-msgstr "Control Center"
+msgstr "Centre de Control Mandrake"
#: ../../share/advertising/05-contcenter.pl_.c:10
msgid ""
"The Mandrake Linux 8.2 Control Center is a one-stop location for fully "
"customizing and configuring your Mandrake system"
msgstr ""
+"El Centre de Control Mandrake Linux 8.2 és el lloc de parada per a "
+"customitzar i configurar completament del vostre sistema Mandrake"
+#
#: ../../share/advertising/06-user.pl_.c:9
-#, fuzzy
msgid "User interfaces"
-msgstr "Interfķcie de la xarxa"
+msgstr "Interfķcies d'usuari"
#: ../../share/advertising/06-user.pl_.c:10
msgid ""
@@ -9039,17 +10301,23 @@ msgid ""
"window managers to choose from including GNOME 1.4, KDE 2.2.2, Window Maker "
"0.8, and the rest"
msgstr ""
+"Mandrake Linux 8.2 proporciona 11 diferents entorns d'escritori grąfics i "
+"gestors de finestres per a triar incloent GNOME 1.4, KDE 2.2.2, Window Maker "
+"0.8, i la resta"
+#
#: ../../share/advertising/07-server.pl_.c:9
-#, fuzzy
msgid "Server Software"
-msgstr "Ordinador central del servidor SMB"
+msgstr "Programari del servidor"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"Transformeu el vostre ordinador en un poderós servidor amb només uns quants "
+"clics del ratolķ: Servidor web, email, tallafoc, encaminador, servidor de "
+"fitxers i d'impressió, ..."
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -9060,10 +10328,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+"Mandrake Linux 8.2 proporciona els millors jocs en Open Source - arcade, "
+"acció, cartes, esports, estratčgia, ..."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -9071,11 +10341,15 @@ msgid ""
"provides free Linux training, as well as a way to test your progress, at "
"MandrakeCampus -- our online training center"
msgstr ""
+"Voleu aprendre Linux simplement, rąpidament, i gratuļtament? MandrakeSoft "
+"proporciona entrenament de Linux gratuļt, aixķ com una manera de comprovar "
+"els vostres progressos, a MandrakeCampus -- el nostre centre d'ensenyament a "
+"Internet"
+#
#: ../../share/advertising/10-MDKexpert.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert"
-msgstr "expert"
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -9083,10 +10357,13 @@ msgid ""
"around the corner. And if you're already a Linux veteran, become an \"Expert"
"\" and share your knowledge at our support website"
msgstr ""
+"Un suport de qualitat de la Comunitat Linux, i de MandrakeSoft, és a un clic "
+"del ratolķ. I vós sou un veterą del Linux, convertiu-vos en \"Expert\" i "
+"compartiu els vostres coneixements en la nostra web de suport"
#: ../../share/advertising/11-consul.pl_.c:9
msgid "MandrakeConsulting"
-msgstr ""
+msgstr "MandrakeConsulting"
#: ../../share/advertising/11-consul.pl_.c:10
msgid ""
@@ -9095,43 +10372,52 @@ msgid ""
"vast experience as a Linux producer to provide a true IT alternative for "
"your business organization"
msgstr ""
+"Per a tots els vostres projectes en TI, els nostres consultors estan "
+"preparats per a analitzar els vostres requeriments i oferir una solució "
+"personalitzada. Beneficieu-vos de la gran experičncia de MandrakeSoft com a "
+"productor de Linux per a proporcionar una certera alternativa en TI per a la "
+"vostra empresa"
+#
#: ../../share/advertising/12-MDKstore.pl_.c:9
-#, fuzzy
msgid "MandrakeStore"
-msgstr "obligatori"
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
"A full range of Linux solutions, as well as special offers on products and "
"'goodies', are available online at our e-store"
msgstr ""
+"Trobareu tota la gama de solucions Linux, aixķ com ofertes especials en "
+"productes en la nostra botiga online"
#: ../../share/advertising/13-Nvert.pl_.c:9
msgid ""
"For more information on MandrakeSoft's Professional Services and commercial "
"offerings, please see the following web page:"
msgstr ""
+"Per més informació sobre els Serveis Professionals de MandrakeSoft i ofertes "
+"comercials, aneu a la següent pągina web:"
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
-#, fuzzy
+#
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
-msgstr "S'estą instal·lant el paquet %s"
+msgstr "S'estą instal·lant els paquets..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-tecla de retrocés"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9139,177 +10425,182 @@ msgstr ""
"No puc llegir la vostra taula de particions, estą massa malmesa per a mi :(\n"
"Intentaré seguir buidant les particions incorrectes"
-#: ../../standalone/drakTermServ_.c:189
+#
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "Configuració d'Internet"
+msgstr "Configuració de transferčncia de la impressió"
-#: ../../standalone/drakTermServ_.c:204
+#
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
-msgstr "Servidor, base de dades"
+msgstr "Servidor de base de dades"
-#: ../../standalone/drakTermServ_.c:211
+#
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
-msgstr "Servidor, base de dades"
+msgstr "Servidor de base de dades"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "Servidor NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "Servidor NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "Client DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
-#, fuzzy
+#
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
-msgstr "/_Ajuda"
+msgstr "Ajuda"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
+#, fuzzy
msgid "No kernel selected!"
-msgstr ""
+msgstr "No s'ha detectat cap targeta de TV!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Sense connexió"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Suprimeix"
-#: ../../standalone/drakTermServ_.c:557
+#
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
-msgstr "Seleccioneu el fitxer"
+msgstr "Selecciona Tot"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "Client DHCP"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "S'estą configurant..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "torna a configurar"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
-msgstr "Inseriu un disquet a la unitat %s"
+msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
-msgstr "Error"
+msgstr "Error!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
-msgstr ""
+msgstr "No he trobat el fitxer necessari `%s'."
-#: ../../standalone/drakautoinst_.c:48
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
-msgstr "Publica la configuració de la instal·lació "
+msgstr "Configurador de la auto-instal·lació"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9323,108 +10614,217 @@ msgid ""
"\n"
"Do you want to continue?"
msgstr ""
+"Ara configurarem un disquet d'Auto-Instal·lació. Aquesta funcionalitat és "
+"perillosa i s'ha d'utilitzar amb molta cura.\n"
+"\n"
+"Amb aquesta caracterķstica, sereu capąs de repetir la instal·lació que ja "
+"heu fet en aquest ordinador, tot i que per se us preguntarą en alguns pasos, "
+"perquč pogueu canviar els valors.\n"
+"\n"
+"Per mąxima seguretat, el particionament i formatat serą executat "
+"automąticament, independentment del que trieu durant la instal·lació "
+"d'aquest ordinador.\n"
+"\n"
+"Voleu continuar?"
-#: ../../standalone/drakautoinst_.c:71
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
-msgstr "Configuració del tipus d'arrencada"
+msgstr "Configuració automatitzada dels pasos"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
+"Per favor, escolliu per cada pas si es repetirą la vostra instal·lació, o si "
+"serą manual"
-#: ../../standalone/drakautoinst_.c:83
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
-msgstr "S'estą creant el diquet d'instal·lació automątica"
+msgstr "S'estą creant el disquet d'instal·lació automątica"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
"\n"
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
+"\n"
+"Benvingut.\n"
+"\n"
+"Els parąmetres de la auto-instal·lació estan disponibles en les seccions de "
+"la esquerra"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
+"El disquet ha estat generat correctament.\n"
+"Ara podeu repetir la vostra instal·lació."
-#: ../../standalone/drakautoinst_.c:279
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
-msgstr "Instal·la"
+msgstr "Auto-Instal·la"
-#: ../../standalone/drakautoinst_.c:349
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
-msgstr "Afegeix un usuari"
+msgstr "Afegeix un element"
-#: ../../standalone/drakautoinst_.c:356
-#, fuzzy
+#
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
-msgstr "S'estą formatant el fitxer de loopback %s"
+msgstr "Esborra l'śltim element"
+
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
+"\n"
+" Informe DrakBackup \n"
+"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
+"\n"
+" Informe DrakBackup Daemon\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
"\n"
"\n"
msgstr ""
+"\n"
+" Detalls Informe DrakBackup\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+msgid "Total progess"
+msgstr "Progrés total"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
-msgid "Backup system files..."
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
-#, fuzzy
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+msgid "Backup system files..."
+msgstr "Cņpia de seguretat de fitxers del sistema..."
+
+#
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Els fitxers de la cņpia de seguretat del disc dur..."
-#: ../../standalone/drakbackup_.c:808
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Cņpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
-msgstr ""
+msgstr "Progrčs de la cņpia de seguretat en disc dur..."
-#: ../../standalone/drakbackup_.c:857
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Els fitxers de cņpia de seguretat d'altres fitxers..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Utilitzar la cinta per a fer la cņpia de seguretat"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9432,740 +10832,865 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
+"llista de fitxers enviada per FTP : %s\n"
+" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
+"\n"
+" problema en la connexió FTP: No ha estat possible enviar els fitxers de la "
+"cņpia de seguretat per FTP.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
-msgstr "S'ha produļt un error en llegir el fitxer %s"
+msgstr " S'ha produļt un error en enviar el correu electrņnic. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
-msgstr "Selecció del grup de paquets"
+msgstr "Selecció de fitxers"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
+"\n"
+"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
+"Aquestes opcions poden fer cņpia de seguretat i restaurar els fitxers en el "
+"directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+msgid "Backup your System files. (/etc directory)"
+msgstr "Fer cņpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+msgstr "Utilitzar cņpia incremental (no reemplaēa cņpies antigues)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+msgstr "No incloure fitxers crķtics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
+"Amb aquesta opció podreu restaurar qualsevol versió\n"
+" del directori /etc."
-#: ../../standalone/drakbackup_.c:1100
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgstr ""
+"Si us plau, escolliu tots els usuaris que voleu incloure en la cņpia de "
+"seguretat."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
-msgstr ""
+msgstr "No incloure la memņria cau del navegador"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
+msgstr "Utilitza cņpies incrementals (no reemplaēa antigues cņpies)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
-msgstr "Elimina la cua"
+msgstr "Elimina el seleccionat"
-#: ../../standalone/drakbackup_.c:1188
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
-msgstr "Elimina el Windows(TM)"
+msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1227
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
-msgstr "Nom d'usuari"
+msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Utilitza connexió FTP per fer la cņpia de seguretat"
+
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1708
#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Transferir"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
-msgstr "Si us plau, comproveu el ratolķ."
+msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
+#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
+"Si us plau, entreu el directori on\n"
+" posar la cņpia de seguretat d'aquest ordinador central."
-#: ../../standalone/drakbackup_.c:1274
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
-msgstr "Si us plau, torneu-ho a intentar"
+msgstr "Si us plau, entreu la entrada"
-#: ../../standalone/drakbackup_.c:1279
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
-msgstr "Si us plau, torneu-ho a intentar"
+msgstr "Si us plau, entreu la contrasenya"
-#: ../../standalone/drakbackup_.c:1285
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
-msgstr "Sense contrasenya"
+msgstr "Recordar aquesta contrasenya"
+
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
+msgstr "Utilitzar CD/DVDROM per fer la cņpia"
+
+#: ../../standalone/drakbackup_.c:1844
+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:1363 ../../standalone/drakbackup_.c:3299
+#
+#: ../../standalone/drakbackup_.c:1849
#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Si us plau, selecioneu la disposició del vostre teclat."
+msgid "Please choose your CD/DVD media size"
+msgstr "Si us plau, escolliu l'espai del CD"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#
+#: ../../standalone/drakbackup_.c:1855
#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Si us plau, comproveu si feu servir un medi CDRW"
+
+#
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
-msgstr "Si us plau, feu clic a una partició "
+msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgid "Please check if you are using a DVDR device"
+msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1388
+#
+#: ../../standalone/drakbackup_.c:1880
+#, 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:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
+"Si us plau, entreu el nom del dispositiu del CD Writer\n"
+" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1926
+msgid "No CD device defined!"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Utilitzar la cinta per a fer la cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
+"Si us plau, subministreu el nom del dispositiu a utilitzar per fer la cņpia"
+
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1446
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
+
+#: ../../standalone/drakbackup_.c:1995
+#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
+"Si us plau, digueu la mida mąxima\n"
+" permesa per a Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
+#
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
-msgstr "Si us plau, comproveu el ratolķ."
+msgstr "Si us plau, subministreu el directori per a desar:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Utilitzar la cuota de disc per als fitxers de cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:1580
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
-msgstr "Xarxa:"
+msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
-msgstr ""
+msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
-msgstr ""
+msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
-msgstr ""
+msgstr "diąria"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
-msgstr ""
+msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
-msgstr ""
+msgstr "mensual"
-#: ../../standalone/drakbackup_.c:1630
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
-msgstr "Nom d'usuari"
+msgstr "Utilitza dimoni"
-#: ../../standalone/drakbackup_.c:1635
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgstr ""
+"Si us plau, escolliu l'interval \n"
+"de temps entre cada cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:1641
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "Si us plau, trieu un idioma per utilitzar."
+msgstr ""
+"Si us plau, trieu el\n"
+"medi per a la cņpia."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
+#, fuzzy
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 ""
+"Si us plau assegureu-vos que el dimoni cron estą inclņs en els serveis."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
+msgstr "Envieu informe per correu electrņnic després de cada cņpia a :"
+
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
-msgstr "Espera"
+msgstr "Que"
-#: ../../standalone/drakbackup_.c:1753
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
-msgstr "De bola"
+msgstr "On"
-#: ../../standalone/drakbackup_.c:1758
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
-msgstr "De bola"
+msgstr "Quant"
-#: ../../standalone/drakbackup_.c:1763
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
-msgstr "Opcions del mņdul:"
+msgstr "Més opcions"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
-msgstr "Configuració de xarxa"
+msgstr "Configuració de Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgstr "Si us plau, escolliu on voleu fer la cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
-msgstr ""
+msgstr "en el Disc Dur"
-#: ../../standalone/drakbackup_.c:1813
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
-msgstr "Xarxa:"
+msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:1877
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
+msgstr "Si us plau, escolliu de quč voleu fer la cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:1878
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
-msgstr "Sistemes de fitxers"
+msgstr "Cņpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
-msgstr ""
+msgstr "Cņpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
-msgstr ""
+msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
+"\n"
+"Fonts de la cņpia: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
+"\n"
+"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
+"\n"
+"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
+"\n"
+"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
+"\n"
+"- Desar-ho en el Disc Dur en el camķ : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Dispositiu del ratolķ: %s\n"
-#: ../../standalone/drakbackup_.c:1979
-#, c-format
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
+#, fuzzy, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
+"\n"
+"- Desar-ho en FTP en l'ordinador central : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
-#, c-format
+#: ../../standalone/drakbackup_.c:2532
+#, fuzzy, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
+"\n"
+"- Desar-ho en FTP en l'ordinador central : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
+"\t\t nom d'usuari: %s\n"
+"\t\t en el camķ: %s \n"
-#: ../../standalone/drakbackup_.c:1985
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
-msgstr "Opcions"
+msgstr ""
+"\n"
+"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
-msgstr ""
+msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
-msgstr ""
+msgstr "\tLes cņpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
-msgstr ""
+msgstr "\tLes cņpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
+"\n"
+"- Dimoni (%s) inclņs :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
-msgstr ""
+msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
-msgstr ""
+msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
-msgstr ""
+msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
-msgstr ""
+msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
-msgstr ""
+msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
-msgstr ""
+msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+msgstr "Cap configuració, si us plau cliqueu en Auxiliar o Avanēat.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
+"Llista de dades per a restaurar:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
+"Llista de dades corrompudes:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:2115
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
-msgstr ""
-"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mņdem."
+msgstr "Si us plau, deseleccioneu o esborreu-ho la prņxima vegada."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
-msgstr ""
+msgstr "Els fitxers de la cņpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
-msgstr ""
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
+msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
-msgstr ""
+msgstr " Restaurades Correctament en %s "
-#: ../../standalone/drakbackup_.c:2254
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
-msgstr "Configuració de xarxa"
+msgstr " Configuració de Restauració "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
-msgstr ""
+msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
+"Llista d'usuaris per a restaurar (només és important la data més recent per "
+"usuari)"
-#: ../../standalone/drakbackup_.c:2340
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Abans cņpia de seguretat de fitxers del sistema:"
-#: ../../standalone/drakbackup_.c:2342
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolķ."
+msgstr "Si us plau, seleccioneu la data a restaurar"
-#: ../../standalone/drakbackup_.c:2370
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Utilitzar el Disc Dur per a fer la cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:2373
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
-msgstr "Si us plau, comproveu el ratolķ."
+msgstr "Si us plau, subministreu el directori per a desar:"
-#: ../../standalone/drakbackup_.c:2416
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
-msgstr "Connexió LAN"
+msgstr "Connexió FTP"
-#: ../../standalone/drakbackup_.c:2424
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
-msgstr "Seleccioneu la connexió de la impressora"
+msgstr "Connexió Segura"
-#: ../../standalone/drakbackup_.c:2451
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
-msgstr "Restaura des del disquet"
+msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "Si us plau, entreu el directori on les cņpies es guarden"
-#: ../../standalone/drakbackup_.c:2512
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
-msgstr "Si us plau, seleccioneu el vostre tipus de ratolķ."
+msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
-#: ../../standalone/drakbackup_.c:2514
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
-msgstr "Altres"
+msgstr "Altres Medis"
-#: ../../standalone/drakbackup_.c:2520
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
-msgstr "Instal·la el sistema"
+msgstr "Restaura el Sistema"
-#: ../../standalone/drakbackup_.c:2521
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
-msgstr "Restaura des del fitxer"
+msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:2522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
-msgstr "Restaura des del fitxer"
+msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+msgid "select path to restore (instead of /)"
+msgstr "seleccioneu camķ al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
+"Fer nova cņpia de seguretat abans de restaurar (només per les cņpies "
+"incrementals.)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
-msgstr ""
+msgstr "Restaurar totes les cņpies"
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
-msgstr "Personalitzada"
+msgstr "Restauració Personalitzada"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
-msgstr "<- Anterior"
+msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
-msgstr "Estat:"
+msgstr "Desa"
-#: ../../standalone/drakbackup_.c:2692
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Construeix la cņpia de seguretat"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
-msgstr "Restaura des del fitxer"
-
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Text"
+msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
+"Si us plau Construiu la cņpia de seguretat abans de restaurar-la...\n"
+" o verifiqueu que el camķ per a desar és correcte."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
+"Error durant sendmail\n"
+" el vostre missatge d'informe no ha estat enviat\n"
+" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ara s'instal·laran els paquets següents"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
+"Error durant l'enviament del fitxer via FTP.\n"
+" Si us plau corregiu la configuració de FTP."
-#: ../../standalone/drakbackup_.c:2979
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
+msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:3000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
+msgstr "Si us plau seleccioneu el medi per a la cņpia..."
-#: ../../standalone/drakbackup_.c:3022
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
-msgstr "Si us plau, trieu un idioma per utilitzar."
+msgstr "Si us plau seleccioneu les dades per fer la cņpia..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"No s'ha trobat el fitxer de configuració \n"
+"si us plau feu clic en Auxiliar o Avanēat."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "Sota Desenvolupament ... si us plau espereu."
-#: ../../standalone/drakbackup_.c:3145
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Cņpia de seguretat dels fitxers del sistema"
-#: ../../standalone/drakbackup_.c:3147
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Cņpia de seguretat de fitxers d'usuari"
-#: ../../standalone/drakbackup_.c:3149
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
-msgstr "Fitxer de cņpia de seguretat incorrecte"
+msgstr "Cņpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
-msgstr ""
+msgstr "Progrés Total"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
-msgstr ""
+msgstr "fitxers que s'estan enviant per FTP"
-#: ../../standalone/drakbackup_.c:3177
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
-msgstr "Desa al fitxer"
+msgstr "Enviant els fitxers..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Si us plau, comproveu el ratolķ."
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Si us plau, escolliu els paquets que voleu instal·lar"
-
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
-msgstr "Configuració de xarxa"
+msgstr "Fes la Cņpia de Seguretat des del fitxer de configuració"
-#: ../../standalone/drakbackup_.c:3419
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
-msgstr "Configuració de xarxa"
+msgstr "Veure la Configuració de la Cņpia de Seguretat"
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
-msgstr "Configuració de la LAN"
+msgstr "Auxiliar de Configuració"
-#: ../../standalone/drakbackup_.c:3445
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
-msgstr "Configuració de la LAN"
+msgstr "Configuració Avanēada"
-#: ../../standalone/drakbackup_.c:3450
-#, fuzzy
+#
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
-msgstr "Sistemes de fitxers"
+msgstr "Fes Cņpia de Seguretat"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10176,7 +11701,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10196,8 +11721,37 @@ msgid ""
" \n"
"\n"
msgstr ""
+"descripció d'opcions:\n"
+"\n"
+" En aquest pas Drakbackup us permet de modificar:\n"
+"\n"
+" - El mode de compressió:\n"
+" \n"
+" Si seleccioneu compressió bzip2, comprimireu\n"
+" les dades millor que amb gzip (més o menys 2-10 %).\n"
+" Aquesta opció no estą activada per defecte perquč\n"
+" necessita molt més temps ( 1000% més).\n"
+" \n"
+" - El mode d'actualització:\n"
+"\n"
+" Aquesta opció us permet d'actualitzar una cņpia de seguretat, perņ "
+"aquesta\n"
+" opció no es gaire śtil perquč s'ha de \n"
+" descomprimir les dades copiades abans d'actualitzar-les.\n"
+" \n"
+" - el mode .backupignore:\n"
+"\n"
+" Igual que el cvs, el Drakbackup ignorarą totes les referčncies\n"
+" incloses en els fitxers .backupignore de cada directori.\n"
+" ex: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10205,8 +11759,13 @@ msgid ""
" set myhostname or mydomain in /etc/postfix/main.cf\n"
"\n"
msgstr ""
+"\n"
+" Alguns errors durant el procés de sendmail són causats per \n"
+" una configuració dolenta de postfix. Per a resoldre-ho haurķeu de\n"
+" definir myhostname o mydomain en /etc/postfix/main.cf\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10230,7 +11789,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10246,22 +11805,59 @@ msgid ""
"\n"
"\n"
msgstr ""
+"descripció d'opcions:\n"
+"\n"
+" - Fer cņpia de seguretat de fitxers del sistema:\n"
+" \n"
+"\tAquesta opció permet de cņpies del directori /etc,\n"
+"\tque conté tots els fitxers de configuració. Tingueu\n"
+"\tcura durant el pas de restauració per a no sobreescriure:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Fer cņpia de seguretat dels fitxers d'usuari: \n"
+"\n"
+"\tAquesta opció permet de seleccionar els usuaris dels quals voleu \n"
+"\tfer cņpia de seguretat.\n"
+"\tPer a preservar espai en disc, es recomenable que no inclogueu \n"
+"\tla memņria cau del navegador.\n"
+"\n"
+" - Fer cņpia de seguretat d'altres fitxers: \n"
+"\n"
+"\tAquesta opció us permet d'afegir més dades per a desar.\n"
+"\tAmb les altres cņpies de seguretat no es possible d'activar la \n"
+"\topció de cņpia incremental en el moment de la seleció.\t\t\n"
+" \n"
+" - Cņpia Incremental:\n"
+"\n"
+"\tLa cņpia incremental és una opció poderosa a l'hora de fer \n"
+"\tcņpies de seguretat. Aquesta opció permet fer una cņpia \n"
+"\t de seguretat de totes les dades la primera vegada, i \n"
+"\tnomés les dades canviades després.\n"
+"\tMés tard, sereu capaē, durant el procés de restauració, \n"
+"\tde restaurar les vostres dades des de una data \n"
+"\tdeterminada.\n"
+"\tSi no s'activa aquesta opció totes les cņpies de \n"
+"\tseguretat antigues són esborrades abans de cada nova cņpia. \n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10274,18 +11870,43 @@ msgid ""
"\n"
"\n"
msgstr ""
+"descripció de restaurar:\n"
+" \n"
+"Només la data més recent serą utilitzada, perquč les cņpies\n"
+"incrementals necessiten restaurar un a un totes les cņpies antigues.\n"
+"\n"
+"Per tant, si no voleu restaurar un usuari deactiveu tots els seus\n"
+"quadres de verificació.\n"
+"\n"
+"D'altra banda, només podeu seleccionar aquesta opció\n"
+"\n"
+" - Cņpia Incremental:\n"
+"\n"
+"\tLa cņpia incremental és una opció poderosa a l'hora d'utilitzar \n"
+"\tles cņpies de seguretat, ja que aquesta opció us permet fer una cņpia \n"
+"\t de seguretat de totes les dades la primera vegada, i \n"
+"\tnomés les dades canviades després.\n"
+"\tMés tard, sereu capaē, durant el procés de restauració, \n"
+"\tde restaurar les vostres dades des de una data \n"
+"\tdeterminada.\n"
+"\tSi no s'activa aquesta opció totes les cņpies de \n"
+"\tseguretat antigues són esborrades abans de cada nova cņpia. \n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10301,8 +11922,21 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+" Aquest programa és programari lliure; el podeu redistribuir i/o modificar\n"
+" sota els termes de la 'GNU General Public License' publicada per\n"
+" la Free Software Foundation; o la versió 2, o (si voleu)\n"
+" qualsevol versió posterior.\n"
+"\n"
+" Aquest programa és distribueix amb l'esperanēa que serą śtil,\n"
+" perņ SENSE CAP GARANTIA; sense ni tant sols la garantia implicita de\n"
+" MERCANTIBILITAT o CAPACITAT DE REALITZAR UN DETERMINAT PROPŅSIT. Mireu la\n"
+" 'GNU General Public License' per a més detalls.\n"
+"\n"
+" Haurķeu d'haver rebut una cņpia de la 'GNU General Public License'\n"
+" 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:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10341,8 +11975,44 @@ msgid ""
"\n"
"\n"
msgstr ""
+"Descripció:\n"
+"\n"
+" Drakbackup s'utilitza per fer cņpies de seguretat del sistema.\n"
+" Durant la configuració podeu seleccionar: \n"
+"\t- fitxers del Sistema, \n"
+"\t- fitxers d'Usuari, \n"
+"\t- Altres fitxers.\n"
+"\to Tot el Sistema ... i Altres (com les Particions de Windows)\n"
+"\n"
+" Drakbackup us permet de fer cņpies de seguretat del sistema en:\n"
+"\t- Disc Durs.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (amb auto-arrencada, rescat i auto-instal·lació.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup us permet de restaurar el sistema a\n"
+" un directori seleccionat d'usuari.\n"
+"\n"
+" Per defecte totes les cņpies de seguretat són guardades en\n"
+" el directori /var/lib/drakbackup\n"
+"\n"
+" Fitxer de Configuració:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"\n"
+"Passos de Restaurar:\n"
+" \n"
+" Durant el pas de restaurar, DrakBackup esborrarą \n"
+" els directoris originals i verificarą que totes \n"
+" les cņpies de seguretat no estan malmeses. És recomanable que \n"
+" feu una śltima cņpia de seguretat abans de restaurar.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10352,8 +12022,16 @@ msgid ""
"drive before sending it to the server.\n"
"\n"
msgstr ""
+"descripció d'opcions:\n"
+"\n"
+"Si us plau, aneu amb compte quan feu cņpies de seguretat amb FTP, perquč "
+"només \n"
+"s'envien al servidor les cņpies creades correctament.\n"
+"Per tant, ara necessiteu construir la cņpia de seguretat en el vostre disc \n"
+"dur abans d'enviar-la al servidor.\n"
+"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10365,8 +12043,17 @@ msgid ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
msgstr ""
+"\n"
+"Problemes durant la Restauració de Cņpies de Seguretat:\n"
+"\n"
+"Durant el pas de restauració, Drakbackup verificarą tots\n"
+"els fitxers de les cņpies de seguretat abans de restaurar-los.\n"
+"Abans de la restauració, Drakbackup esborrarą \n"
+"els directoris originals, i perdreu totes les vostres \n"
+"dades. És important de tenir cura i no modificar a mą els \n"
+"fitxers de cņpia de seguretat.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10404,96 +12091,155 @@ msgid ""
" \n"
"\n"
msgstr ""
+"Descripció:\n"
+"\n"
+" Drakbackup s'utilitza per fer cņpies de seguretat del sistema.\n"
+" Durant la configuració podeu seleccionar \n"
+"\t- fitxers del Sistema, \n"
+"\t- fitxers d'Usuari, \n"
+"\t- Altres fitxers.\n"
+"\to Tot el Sistema ... i Altres (com les Particions de Windows)\n"
+"\n"
+" Drakbackup us permet de fer cņpies de seguretat del sistema en:\n"
+"\t- Disc Durs.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (amb auto-arrencada, rescat i auto-instal·lació.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup us permet de restaurar el sistema a\n"
+" un directori seleccionat d'usuari.\n"
+"\n"
+" Per defecte totes les cņpies de seguretat són guardades en\n"
+" el directori /var/lib/drakbackup\n"
+"\n"
+" Fitxer de Configuració:\n"
+"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+"\n"
+"Passos de Restaurar:\n"
+" \n"
+" Durant el pas de restaurar, DrakBackup esborrarą \n"
+" els directoris originals i verificarą que totes \n"
+" les cņpies de seguretat no estan malmeses. És recomanable que \n"
+" feu una śltima cņpia de seguretat abans de restaurar.\n"
+" \n"
+"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Ha fallat la instal·lació del %s. S'ha produļt l'error següent:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
-msgstr ""
+msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
-#, fuzzy
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
-msgstr "Control Center"
+msgstr "Mandrake Online"
-#: ../../standalone/drakbug_.c:55
-#, fuzzy
+#
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
-msgstr "obligatori"
+msgstr "Menudrake"
-#: ../../standalone/drakbug_.c:56
-#, fuzzy
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
-msgstr "Ratolķ"
+msgstr "Msec"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Impressora remota"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Nom de compartició"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
-#, fuzzy
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
-msgstr "Assistent de configuració de xarxa"
+msgstr "Auxiliars de configuració"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Autenticació"
-#: ../../standalone/drakbug_.c:75
-#, fuzzy
+#
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
-msgstr "Selecció del grup de paquets"
+msgstr "Paquet: "
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Si us plau, espereu"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10505,314 +12251,323 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Surt de la instal·lació"
-
-#: ../../standalone/drakbug_.c:110
+#
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:123
+#
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Desinstal·lació"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
-msgstr ""
-"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
-"instal·lació"
+msgstr "Les instąncies estaran disponibles després d'instal·lar a %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Configuració de xarxa (%d adaptadors)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Perfil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Suprimeix el perfil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Perfil a suprimir:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Perfil nou..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
+"Nom del perfil a crear (el nou perfil es crea com una cņpia de l'actual) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Nom de l'ordinador central: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Accés a Internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipus:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Passarel·la:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Intefķcie:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Estat:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
-msgstr ""
+msgstr "Espereu si us plau"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Configura l'accés a Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Programa de control"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfķcie"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protocol"
-#: ../../standalone/drakconnect_.c:232
-#, fuzzy
+#
+#: ../../standalone/drakconnect_.c:231
msgid "State"
-msgstr "Estat:"
+msgstr "Estat"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Configura la xarxa d'ąrea local..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
-msgstr ""
+msgstr "feu clic aquķ per a executar l'auxiliar ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
-msgstr "Assistent..."
+msgstr "Auxiliar..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Aplica"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Si us plau, espereu... s'estą aplicant la configuració"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connectat"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Sense connexió"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Connecta..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Desconnecta..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
+"Avķs, una altra connexió a Internet ha esta detectada, podria estar "
+"utilitzant la vostra xarxa"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
+"No teniu cap interfķcie configurada.\n"
+"Configureu-la primer tot clicant en 'Configura'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Configuració de la LAN"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adaptador %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protocol d'arrencada"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Iniciat en l'arrencada"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Client DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
-#, fuzzy
+#
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
-msgstr "Actiu"
+msgstr "Activa ara"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
-#, fuzzy
+#
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
-msgstr "Actiu"
+msgstr "Desactiva ara"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
+"Aquesta interfķcie encara no s'ha configurat.\n"
+"Executeu l'auxiliar de configuració en la finestra principal"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
+"No teniu cap connexió a internet.\n"
+"Creeu-ne una tot clicant en 'Configura'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Configuració de la connexió a Internet"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Configuració de la connexió a Internet"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tipus de connexió: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parąmetres"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Passarel·la"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Targeta Ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Client DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "sintaxi: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Nom del mņdul"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Mida"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "creació de discs d'arrencada"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "predeterminat"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Error del DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "versió del nucli"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "General"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ąrea d'experts"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "Arguments opcional de l'mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Afegeix un mņdul"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "imposa"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "si cal"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "omet els mņduls SCSI"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "omet els mņduls RAID"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Elimina un mņdul"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Sortida"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Munta el disc"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
-#, fuzzy, c-format
+#: ../../standalone/drakfloppy_.c:426
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
@@ -10820,12 +12575,12 @@ msgstr ""
"No hi ha cap suport al dispositiu %s.\n"
"Si us plau, inseriu-ne un."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "No es pot bifurcar: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10836,105 +12591,105 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
-msgstr ""
+msgstr "Cercar les fonts instal·lades"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
-msgstr ""
+msgstr "Deseleccionar les fonts instal·lades"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
-msgstr ""
+msgstr "Analitzar totes les fonts"
-#: ../../standalone/drakfont_.c:261
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
-msgstr "no s'ha trobat %s"
+msgstr "no s'han trobat fonts"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "Fet"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "no s'ha pogut trobar cap font en les particions muntades"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "Reseleccionar les fonts correctes"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
-msgstr ""
+msgstr "no s'ha trobat cap font.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "Cerca les fonts en la llista de les instal·lades"
-#: ../../standalone/drakfont_.c:378
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
-msgstr "Formata el disquet"
+msgstr "Copiar fonts"
-#: ../../standalone/drakfont_.c:382
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
-msgstr "S'estą preparant la instal·lació"
+msgstr "Instal·lació de les fonts True Type"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "si us plau espereu durant ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
-msgstr ""
+msgstr "Instal·lació de True Type feta"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
-msgstr ""
+msgstr "Conversió de fonts"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "referenciant Ghostscript"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "convesió de fonts ttf"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "conversió de fonts pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "Suprimir Fitxers temporals"
-#: ../../standalone/drakfont_.c:474
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
-msgstr "limita"
+msgstr "Reiniciar XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "Suprimeix els Fitxers de Fonts"
-#: ../../standalone/drakfont_.c:535
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
-msgstr "limita"
+msgstr "reiniciar xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10942,123 +12697,132 @@ msgid ""
"-You can install the fonts using the normal way. In rare cases, bogus fonts "
"may hang up your X Server."
msgstr ""
+"Abans d'instal·lar cap font, estigueu segurs que teniu el dret a usar-la i "
+"instal·lar-la en el vostre sistema.\n"
+"\n"
+"Podeu instal·lar les fonts utilitzant la forma normal. En casos extranys, "
+"fonts amb errors poden penjar el vostre Servidor X."
-#: ../../standalone/drakfont_.c:631
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
-msgstr "Formata les particions"
+msgstr "Importació de Fonts"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "Aconsegueix les Fons de Windows"
-#: ../../standalone/drakfont_.c:669
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
-msgstr "S'estan desinstal·lant els RPM"
+msgstr "Desinstal·lar les Fonts"
-#: ../../standalone/drakfont_.c:688
-#, fuzzy
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Opcions Avanēades"
+
+#
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
-msgstr "Punt de muntatge"
+msgstr "Llista de Fonts"
-#: ../../standalone/drakfont_.c:910
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
-msgstr "Escolliu les particions que voleu formatar"
+msgstr "Escolliu l'aplicació que suportarą les fonts :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
-msgstr "Oficina"
+msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
-msgstr "Interromp"
+msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
-msgstr "Impressora"
+msgstr "Impressores Genčriques"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "Seleccioneu el fitxer o directori de fonts i feu clic en 'Afegir'"
-#: ../../standalone/drakfont_.c:1064
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
-msgstr "Instal·la el sistema"
+msgstr "Llista d'instal·lació"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
-msgstr ""
+msgstr "cliqueu aquķ si ho teniu clar."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
-msgstr ""
+msgstr "aquķ si no."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
-msgstr ""
+msgstr "Deselecciona Tot"
-#: ../../standalone/drakfont_.c:1179
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
-msgstr "Seleccioneu el fitxer"
+msgstr "Selecciona Tot"
-#: ../../standalone/drakfont_.c:1183
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
-msgstr "Impressora remota"
+msgstr "Esborra Llista"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
-msgstr "Missatge d'inicialització"
+msgstr "Comprovacions inicials"
-#: ../../standalone/drakfont_.c:1208
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
+msgstr "Copiar les fonts en el vostre sistema"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "Instal·la i converteix les Fonts"
-#: ../../standalone/drakfont_.c:1216
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
-msgstr "Instal·la"
+msgstr "Post-Instal·la"
-#: ../../standalone/drakfont_.c:1241
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
-msgstr "No teniu cap adaptador de xarxa al sistema!"
+msgstr "Esborrar fonts del vostre sistema"
-#: ../../standalone/drakfont_.c:1245
-#, fuzzy
+#
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
-msgstr "Surt de la instal·lació"
+msgstr "Post Desinstal·lació"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
+msgstr "Ho sento, només suportem el nuclis(kernels) 2.4"
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida estą habilitada"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11070,31 +12834,31 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartició de la connexió a Internet estą inhabilitada."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida estą inhabilitada"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11106,19 +12870,19 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexió compartida a Internet estą habilitada."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11135,21 +12899,21 @@ msgstr ""
"Nota: per configurar una xarxa d'ąrea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfķcie %s (utilitzant el mņdul %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interfķcie %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11157,11 +12921,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Interfķcie de la xarxa"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11176,7 +12940,7 @@ msgstr ""
"\n"
"Ara configuraré la vostra xarxa d'ąrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11184,12 +12948,12 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectarą\n"
"a la vostra xarxa d'ąrea local."
-#: ../../standalone/drakgw_.c:268
-#, fuzzy
+#
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
-msgstr "El monitor no estą configurat"
+msgstr "l'intefķcie de xarxa ja estą configurada"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11198,18 +12962,23 @@ msgid ""
"\n"
"You can do it manually but you need to know what you're doing."
msgstr ""
+"Avķs, l'adaptador de xarxa (%s) ja estą configurat.\n"
+"\n"
+"Voleu que faci una reconfiguració automątica?\n"
+"\n"
+"Ho podeu fer manualment perņ heu de saber quč feu."
-#: ../../standalone/drakgw_.c:274
-#, fuzzy
+#
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
-msgstr "Configuració del tipus d'arrencada"
+msgstr "Reconfiguració automątica"
-#: ../../standalone/drakgw_.c:275
-#, fuzzy
+#
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
-msgstr "Configuració del mņdem"
+msgstr "Mostra la configuració actual de la interfķcie"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11219,8 +12988,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
+"Configuration actual de `%s':\n"
+"\n"
+"Xarxa: %s\n"
+"Adreēa IP: %s\n"
+"Atribució IP: %s\n"
+"Controlador: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11231,36 +13006,44 @@ msgid ""
"you.\n"
"\n"
msgstr ""
+"Podeu conservar la configuració actual i assumir que ja heu definit un "
+"servidor DHCP; en aquest cas verifiqueu que llegeixo correctament la Xarxa "
+"de Classe C que utilitzeu per a la vostra xarxa local; No la reconfiguraré i "
+"no tocaré la configuració del servidor DHCP.\n"
+"\n"
+"Alternativament, podeu reconfigurar la interfķcie i (re)configurar un "
+"servidor DHCP vós mateix.\n"
+"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
-msgstr ""
+msgstr "Xarxa Local de Classe C"
-#: ../../standalone/drakgw_.c:295
-#, fuzzy
+#
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
-msgstr "IP del servidor CUPS"
+msgstr "(Aquest) IP del Servidor DHCP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "Reconfigurar interfķcie i Servidor DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "La Xarxa Local no finalitza amb '.0', ho deixem córrer."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreēa LAN en la configuració actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11268,22 +13051,22 @@ msgstr ""
"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
"Potser us caldrą fer algun ajustament manual després de la instal·lació."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "S'estą configurant..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüčncies, instal·lant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en instal·lar el paquet %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11294,23 +13077,23 @@ msgstr ""
"vostra xarxa d'ąrea local utilitzant la configuració automątica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuració ja s'ha realitzat, perņ ara estą inhabilitada."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuració ja s'ha realitzat i ara estą habilitada."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexió compartida a Internet."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Configuració de la compartició de la connexió a Internet"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11325,20 +13108,13 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Control Center"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Escolliu l'eina que voleu utilitzar "
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11346,115 +13122,130 @@ msgid ""
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV no s'ha instal·lat!\n"
+"\n"
+"\n"
+"Si teniu una targeta de TV perņ DrakX no l'ha detectat (no el mņdul\n"
+"bttv o saa7134 in \"/etc/modules\") o no s'ha instal·lat xawtv,\n"
+"si us plau envieu els resultats de \"lspcidrake -v -f\"\n"
+"a \"install\\@mandrakesoft.com\" amb l'assumpte de \"undetected TV card\".\n"
+"\n"
+"\n"
+"El podeu instal·lar tot escrivint \"urpmi xawtv\" com a root, en la consola."
-#: ../../standalone/drakxtv_.c:72
-#, fuzzy
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
-msgstr "Canadenc (Quebec)"
+msgstr "Canada (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
-msgstr ""
+msgstr "USA (Emissió)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
-msgstr ""
+msgstr "USA (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
-msgstr ""
+msgstr "USA (bable-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
-msgstr ""
+msgstr "Xina (emissió)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
-msgstr ""
+msgstr "Japó (emissió)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
-msgstr ""
+msgstr "Japó (cable)"
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
-msgstr "Europa"
+msgstr "Europa de l'Est"
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
-msgstr "Franēa"
+msgstr "Franēa [SECAM]"
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
-msgstr "Islandčs"
+msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
-msgstr "Europa"
+msgstr "Europa de l'Oest"
-#: ../../standalone/drakxtv_.c:75
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
-msgstr "sčrie"
+msgstr "Austrąlia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
-msgstr ""
+msgstr "Nova Zelanda"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
-msgstr ""
+msgstr "Sud-ąfrica"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
+msgstr "Argentina"
+
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
+"Si us plau,\n"
+"entreu la vostra normativa de tv i el paķs"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
-msgstr ""
+msgstr "Normativa TV :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
-msgstr ""
+msgstr "Ąrea :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "Examinant els canals de TV en progrés ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "Examinant els canals de TV"
-#: ../../standalone/drakxtv_.c:130
-#, fuzzy
+#
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
-msgstr "S'ha produļt un error en instal·lar els paquets"
+msgstr "S'ha produļt un error examinant el canals de TV"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
-msgstr ""
+msgstr "XawTV no s'ha instal·lat!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
-msgstr ""
+msgstr "Tingueu un bon dia!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+msgstr "Ara, podeu executar xawtv (sota X Window!) !\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "No s'ha detectat cap targeta de TV!"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -11467,16 +13258,25 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau "
+"verifiqueu que la targeta de Video/TV amb suport per a Linux estigui "
+"correctament insertada.\n"
+"\n"
+"\n"
+"Podeu visitar la nostra base de dades de maquinari a:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Voleu que la tecla Enrere efectuļ un Suprimeix en la consola?"
@@ -11491,7 +13291,7 @@ msgid ""
msgstr ""
"Si us plau, inseriu el CD-ROM d'instal·lació a la unitat i després\n"
"premeu D'acord.\n"
-"Si no el teniu, premeu Cancel·la per evitar la instal·lació en directe."
+"Si no el teniu, premeu Cancel·la per evitar l'actualització en directe."
#: ../../standalone/livedrake_.c:35
msgid "Unable to start live upgrade !!!\n"
@@ -11500,15 +13300,17 @@ msgstr "No es pot iniciar l'actualització en directe !!!\n"
#: ../../standalone/localedrake_.c:32
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:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
+#
#: ../../standalone/logdrake_.c:95
-#, fuzzy
msgid "Show only for the selected day"
-msgstr "Mostr-ho només per a avui"
+msgstr "Mostrar-ho només per el dia seleccionat"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
@@ -11562,24 +13364,24 @@ msgstr "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
msgid "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
msgstr "-misc-fixed-bold-r-*-*-*-100-*-*-*-*-*-*,*"
+#
#: ../../standalone/logdrake_.c:173
-#, fuzzy
msgid "User"
-msgstr "Nom d'usuari"
+msgstr "Usuari"
+#
#: ../../standalone/logdrake_.c:174
-#, fuzzy
msgid "Messages"
-msgstr "missatges"
+msgstr "Missatges"
+#
#: ../../standalone/logdrake_.c:175
-#, fuzzy
msgid "Syslog"
-msgstr "syslog"
+msgstr "Syslog"
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
-msgstr ""
+msgstr "Explicació d'Eines Mandrake"
#: ../../standalone/logdrake_.c:179
msgid "search"
@@ -11613,162 +13415,175 @@ msgstr "Calendari"
msgid "Content of the file"
msgstr "Contingut del fitxer"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr ""
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "Alerta Correu"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "si us plau, espereu, s'estą analitzant el fitxer: %s"
-#: ../../standalone/logdrake_.c:409
-#, fuzzy
-msgid "Mail/SMS alert configuration"
-msgstr "Configuració de la LAN"
+#
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "Configuració de l'alerta Correu"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
+"Benvingut a la utilitat de configuració de Correu.\n"
+"\n"
+"Aquķ, sereu capaē de definir el sistema d'alerta.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Nom de domini"
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
-msgstr "Servidor NIS"
+msgstr "Servidor FTP"
-#: ../../standalone/logdrake_.c:420
-#, fuzzy
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
-msgstr "Servidor, base de dades"
+msgstr "Servidor de correu Postfix"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
-msgstr "Servidor NIS"
+msgstr "Servidor de base de dades"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "Servidor NIS"
-#: ../../standalone/logdrake_.c:423
+#
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
-msgstr "dispositiu"
+msgstr "Serveis"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Servidor de la impressora"
-#: ../../standalone/logdrake_.c:431
-#, fuzzy
+#
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
-msgstr "interessant"
+msgstr "parametritzant el servei"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
+"Rebreu una alerta si algun dels serveis seleccionats deixa de funcionar"
-#: ../../standalone/logdrake_.c:445
-#, fuzzy
+#
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
-msgstr "s'estą formatant"
+msgstr "carrega parąmetres"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
-msgstr ""
+msgstr "Rebreu una alerta si la cąrrega és més gran que aquest valor"
-#: ../../standalone/logdrake_.c:459
-#, fuzzy
+#
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
-msgstr "Configuració"
+msgstr "Configuració de l'alerta"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Si us plau, entreu la contrasenya"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolķ."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "no s'ha trobat cap serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
-#: ../../standalone/printerdrake_.c:49
-#, fuzzy
+#
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
-msgstr "S'estą llegint la base de dades de controladors CUPS..."
+msgstr "S'estą llegint les dades de impressió..."
-#: ../../standalone/scannerdrake_.c:42
-#, fuzzy
+#
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "S'estan detectant els dispositius..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Ports de comprovació"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
-msgstr ""
+msgstr "%s trobat en %s, configurar-lo ?"
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
+#
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
-msgstr "Seleccioneu una targeta grąfica"
+msgstr "Seleccioneu un scanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
-msgstr ""
+msgstr "Aquest scanner %s no se suporta"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake no ha pogut detectar el vostre scanner %s.\n"
+"Si us plau seleccioneu el dispositiu en el qual teniu l'scanner"
-#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
+#
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
-msgstr "Dispositiu d'arrencada"
+msgstr "Escolliu dispositiu"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, 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 ""
+"Aquest scanner %s s'ha de configurar amb printerdrake.\n"
+"Podeu executar printerdrake des del Centre de Control Mandrake en la secció "
+"de Maquinari."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"El vostre scanner %s ha estat configurat.\n"
+"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Grąfics "
+"en el menś d'aplicacions."
#: ../../standalone/service_harddrake_.c:57
#, c-format
@@ -11782,15 +13597,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Configuració del sistema de tallafocs"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Configuració del sistema de tallafocs"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11802,7 +13617,7 @@ msgstr ""
"Ja heu configurat un tallafocs.\n"
"Feu clic a Configura per canviar o eliminar el tallafoc"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11876,10 +13691,10 @@ msgstr "Crea un disc d'arrencada"
msgid "Configure X"
msgstr "Configura l'X"
+#
#: ../../steps.pm_.c:34
-#, fuzzy
msgid "Install system updates"
-msgstr "Instal·la el sistema"
+msgstr "Instal·la actualitzacions del sistema"
#: ../../steps.pm_.c:35
msgid "Exit install"
@@ -12053,59 +13868,65 @@ msgstr "No es pot obrir %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "No, no necessito DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "Si, necessito DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
-msgstr ""
+msgstr "No, no necessito NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
-msgstr ""
+msgstr "Si, necessito NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
-msgstr ""
+msgstr "No Desis"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
-msgstr ""
+msgstr "Desa i Surt"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
+#
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
-msgstr "Configuració del sistema de tallafocs"
+msgstr "Auxiliar de configuració del sistema de tallafocs"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "No (aļlla-la d'internet amb el tallafocs)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "Si (permet que passi el tallafocs)"
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
+#
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
-msgstr "Si us plau, espereu, s'estą preparant la instal·lació"
+msgstr "Si us plau, espereu... S'estą verificant els pquets instal·lats"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"Hi ha hagut errros instal·lant els paquets necessitats : %s i Bastille.\n"
+" Provi d'instal·lar-los manualment."
+
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
#: ../../share/compssUsers:999
msgid "Web/FTP"
-msgstr "Servidor, Web/FTP"
+msgstr "Web/FTP"
#: ../../share/compssUsers:999
msgid "Network Computer (client)"
@@ -12113,7 +13934,7 @@ msgstr "Ordinador de xarxa (client)"
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
-msgstr "Servidor NFS, Servidor SMB, Servidor intermediari, Servidor SSH"
+msgstr "Servidor NFS, Servidor SMB, Servidor Proxy, Servidor SSH"
#: ../../share/compssUsers:999
msgid "Office"
@@ -12133,11 +13954,11 @@ msgstr "Estació de treball"
#: ../../share/compssUsers:999
msgid "Firewall/Router"
-msgstr "Servidor, Tallafoc/Encaminador"
+msgstr "Tallafoc/Encaminador"
#: ../../share/compssUsers:999
msgid "Domain Name and Network Information Server"
-msgstr ""
+msgstr "Servidor de Noms de Domini i Informació de la Xarxa (DNS/NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -12152,6 +13973,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Eines d'ąudio: reproductors d'mp3 o midi, mescladors, etc."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
@@ -12174,11 +13999,11 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Database"
-msgstr "Servidor, base de dades"
+msgstr "Base de dades"
#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
-msgstr ""
+msgstr "Servidor de bases de dades PostgreSQL o MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
@@ -12198,7 +14023,7 @@ msgstr "Eines de consola"
#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
-msgstr ""
+msgstr "Servidor de correu Postfix, Servidor de Notķcies Inn"
#: ../../share/compssUsers:999
msgid "Internet station"
@@ -12208,10 +14033,10 @@ msgstr "Estació d'Internet"
msgid "Multimedia station"
msgstr "Estació multimčdia"
+#
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Configuration"
-msgstr "Configuració de la LAN"
+msgstr "Configuració"
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
@@ -12221,7 +14046,8 @@ msgstr "Més escriptoris grąfics (Gnome, IceWM)"
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
-msgstr "Entorn d'escriptori K, l'entorn grąfic bąsic que inclou diverses eines"
+msgstr ""
+"Entorn d'Escriptori K(KDE), l'entorn grąfic bąsic que inclou diverses eines"
#: ../../share/compssUsers:999
msgid "Graphical Environment"
@@ -12240,10 +14066,6 @@ msgid "Office Workstation"
msgstr "Estació de treball Office"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
@@ -12265,7 +14087,7 @@ msgstr "Servidor d'ordinador de xarxa"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Servidor, Correu/Groupware/Notķcies"
+msgstr "Correu/Programari de grup/Notķcies"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12308,9 +14130,13 @@ msgid "Clients for different protocols including ssh"
msgstr "Clients per a diferents protocols, incloent l'ssh"
#: ../../share/compssUsers:999
-#, fuzzy
+msgid "LSB"
+msgstr ""
+
+#
+#: ../../share/compssUsers:999
msgid "Internet gateway"
-msgstr "Accés a Internet"
+msgstr "Passarel·la(gateway) a Internet"
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
@@ -12340,6 +14166,80 @@ msgstr "Multimčdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació cientķfica de treball"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#~ 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 ""
+#~ "Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt més "
+#~ "fącil\n"
+#~ "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 mitjanēant "
+#~ "contrasenya."
+
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Amb aquest nivell de seguretat, la utilització d'aquest sistema com a\n"
+#~ "servidor esdevé possible.\n"
+#~ "La seguretat és ara prou alta com per utilitzar el sistema com a "
+#~ "servidor\n"
+#~ "que accepti connexions de molts clients. Nota: si la seva mąquina és "
+#~ "només un client d'internet, seria millor escollir un nivell menor"
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opcions"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Seguretat"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Llista de dades per a incloure en un CDROM."
+
+#
+#~ msgid "Please choose your CD space"
+#~ msgstr "Si us plau, escolliu l'espai del CD"
+
+#
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Si us plau entreu la velocitat d'escriptura del cd"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Si us plau, comproveu si voleu esborrar el CDRW abans"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Si us plau proporcioneu el nom del dispositiu CD Writer (ex: 0,1,0)"
+
+#
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr ""
+#~ "Si us plau comproveu que voleu incloure carrega de la instal·lació en el "
+#~ "CD."
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccioneu una targeta grąfica"
+
+#
+#~ msgid "Choose a X driver"
+#~ msgstr "Escolliu un dispositiu X"
+
+#
+#~ msgid "X driver"
+#~ msgstr "Dispositiu X"
+
#~ msgid "Choose options for server"
#~ msgstr "Escolliu les opcions per al servidor"
@@ -12352,6 +14252,10 @@ msgstr "Estació cientķfica de treball"
#~ msgid "Resolutions not chosen yet"
#~ msgstr "Encara no s'han escollit les resolucions"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ""
+#~ "Avķs: la comprovació d'aquesta targeta grąfica pot penjar-vos l'ordinador"
+
#~ msgid ""
#~ "\n"
#~ "try to change some parameters"
@@ -12366,7 +14270,7 @@ msgstr "Estació cientķfica de treball"
#~ msgstr "Sortida en %d segons"
#~ msgid "Is this the correct setting?"
-#~ msgstr "És aquest el parąmetre corrcte?"
+#~ msgstr "És aquest el parąmetre correcte?"
#~ msgid "An error occurred, try to change some parameters"
#~ msgstr "S'ha produļt un error, intenteu canviar alguns parąmetres"
@@ -12377,6 +14281,9 @@ msgstr "Estació cientķfica de treball"
#~ msgid "Show all"
#~ msgstr "Mostra'ls tots"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identificació targeta grąfica: %s\n"
+
#~ msgid "Preparing X-Window configuration"
#~ msgstr "S'estą preparant la configuració de l'X-Window"
@@ -12395,25 +14302,9 @@ msgstr "Estació cientķfica de treball"
#~ msgid "Change Resolution"
#~ msgstr "Canvia la resolució"
-#~ msgid "Show information"
-#~ msgstr "Mostra la informació"
-
#~ msgid "Test again"
#~ msgstr "Torna-ho a comprovar"
-#~ msgid "Setting security level"
-#~ msgstr "S'estą establint el nivell de seguretat"
-
-#~ msgid "Graphics card"
-#~ msgstr "Targeta grąfica"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Seleccioneu una targeta grąfica"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Avķs: la comprovació d'aquesta targeta grąfica pot penjar-vos l'ordinador"
-
#~ msgid "Standard VGA, 640x480 at 60 Hz"
#~ msgstr "VGA estąndard, 640x480 a 60 Hz"
@@ -12450,6 +14341,9 @@ msgstr "Estació cientķfica de treball"
#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
#~ msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck ha fallat amb codi de sortida %d o senyal %d"
+
#~ msgid ""
#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
@@ -12484,13 +14378,191 @@ msgstr "Estació cientķfica de treball"
#~ "un percentatge del %d%% instal·larą tants paquets com sigui possible."
#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "Podreu fer una elecció més concreta al pas següent"
+#~ msgstr "Podreu fer una elecció més concreta al pas següent."
#~ msgid "Percentage of packages to install"
#~ msgstr "Percentatge de paquets per instal·lar"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Escolliu el nivell de seguretat"
+#
+#~ msgid "Tamil"
+#~ msgstr "Tamil"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Benvinguts a l'Auxiliar de configuració de la impressió\n"
+#~ "\n"
+#~ "Aquest auxiliar us ajudarą a instal·lar les impressores conectades a "
+#~ "aquest ordinador.\n"
+#~ "\n"
+#~ "Connecteu ara les impressores a l'ordinador i enceneu-les. Feu Clic en "
+#~ "\"Següent\" quan estigueu a punt, i en \"Cancel·la\" quan no volgueu "
+#~ "definir les impressores ara.\n"
+#~ "\n"
+#~ "Cal remarcar que alguns ordinadors poden penjar-se durant la auto-"
+#~ "detecció. Deshabiliteu \"Auto-detecta impressores\" per a fer una "
+#~ "instal·lació sense auto-detecció. Utilitzeu el \"Mode Expert\" del "
+#~ "printerdrake quant volgueu definir la impressió en impressores remotes si "
+#~ "el printerdrake no les llista automąticament."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Auto-Detecció d'impressores"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake us permet d'aito-detectar les impressores conectades en "
+#~ "paral·lel i USB, perņ tingueu en compte que en alguns sistemes l'auto-"
+#~ "detecció POT PENJAR L'ORDINADOR I AIXŅ POT FER QUE HI HA CORRUPCIÓ DEL "
+#~ "SISTEMA D'ARXIUS! Per tant, FACI-HO SOTA LA SEVA RESPONSABILITAT!\n"
+#~ "\n"
+#~ "Realment voleu auto-detectar les impressores?"
+
+#
+#~ msgid "Set up printer manually"
+#~ msgstr "Configura impressora manualment"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Les impressores de xarxa només es poden instal·lar després de la "
+#~ "instal·lació. Escolliu \"Maquinari\" i \"Impressores\" en el Centre de "
+#~ "Control Mandrake."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Per a instal·lar una impressora de xarxa , feu clic en\"Cancel·la\", "
+#~ "canvieu al \"Mode Expert\", i feu clic sobre \"Afegir una impressora\" "
+#~ "una altra vegada."
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or "
+#~ "an HP LaserJet 2200?"
+#~ msgstr ""
+#~ "Aquesta impressora és un dispositiu multi-function de HP (OfficeJet, PSC, "
+#~ "LaserJet 1100/1200/1220/3200/3300 amb scanner), una HP PhotoSmart P100 o "
+#~ "1315 o una HP LaserJet 2200?"
+
+#
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "S'estą instal·lant paquet HPOJ..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Comprovant dispositiu i configurant HPOJ..."
+
+#
+#~ msgid "Installing SANE package..."
+#~ msgstr "S'estą instal·lant el paquet SANE..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Scannejant el dispositiu multi-function HP"
+
+#
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Fent que el port de la impressora estigui disponible per a CUPS..."
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "El vostre dispositiu HP multi-function ha esta configurat automąticament "
+#~ "per a poder escanejar. Ara podeu escanejar des de la lķnia de comandes "
+#~ "amb \"ptal-hp %s scan ...\". Encara no es pot escanejar des de la "
+#~ "interfķcie grąfica o des de GIMP en aquest dispositiu. Trobareu més "
+#~ "informació en el fitxer \"/usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" en "
+#~ "el vostre ordinador. Si teniu una HP LaserJet 1100 o 1200 només podeu "
+#~ "escanejar quian tingueu instal·lada la opció de l'scanner.\n"
+#~ "\n"
+#~ "No utilitzeu \"scannerdrake\" amb aquest dispositiu!"
+
+#
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "La Url haurķa de comenēar amb 'ftp:'"
+
+#
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Si us plau, comproveu si voleu incloure\n"
+#~ " una arrencada d'instal·lació en el CD."
+
+#
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Utilitzar el disc dur amb dimoni"
+
+#
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Utilitzar FTP amb dimoni"
+
+#
+#~ msgid "Package List to Install"
+#~ msgstr "Llista de Paquets a instal·lar"
+
+#~ msgid "Setting security level"
+#~ msgstr "S'estą establint el nivell de seguretat"
+
+#
+#~ msgid "Setting security user"
+#~ msgstr "S'estą establint l'usuari de seguretat"
+
+#~ msgid "Control Center"
+#~ msgstr "Control Center"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Escolliu l'eina que voleu utilitzar"
+
+#
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Configurar la manera que el sistema us alertarą"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "no s'ha trobat cap serial_usb\n"
#~ msgid "hide expert mode"
#~ msgstr "oculta el mode expert"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index ace5bdb10..5c26163d0 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2002-02-23 10:00-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
@@ -57,11 +57,11 @@ msgstr "Dewiswch wasanaethwr X"
msgid "X server"
msgstr "Gwasanaethwr X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +69,44 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Ffurfweddiad XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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 "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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 "
"yn 2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,11 +150,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Arddull"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Cerdyn graffig"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Cydraniad"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Iawn"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Gadael"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -167,32 +213,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generig"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Dadwneud"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -214,11 +256,11 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
@@ -242,57 +284,42 @@ msgstr "16 miliwn o liwiau (24 did)"
msgid "4 billion colors (32 bits)"
msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Cydraniadau"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Cydraniad"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Diddymu"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Iawn"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
@@ -301,71 +328,71 @@ msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
msgid "Test of the configuration"
msgstr "Profi'r ffurfweddiad"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Gosodiad yr yr allweddell: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math o lygoden: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais llygoden: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Dyfnder lliw: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Cydraniad: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "GwasanaethwrXFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -374,166 +401,183 @@ msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ōl cychwyn\n"
"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Pa fath o gysylltiad IDSN?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Gosodiad SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "Lilo gyda dewislen graffig"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Cryno"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Modd fideo"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "cyfyngu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Galluogi aml-broffil"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Rhowch maint RAM mewn MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Neges Init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Systm Weithredu Rhagosodedig?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -547,7 +591,7 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -555,147 +599,148 @@ msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Rhagosodedig"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Maint intrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Tynnu cofnod"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Nid yw label gwag yn cael ei ganiatau"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad cyfnewid"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Gweler gwyboadeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -705,7 +750,7 @@ msgstr ""
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
"'0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -716,17 +761,17 @@ msgstr ""
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Dewisiadau modiwl:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -746,15 +791,15 @@ msgstr ""
"unrhyw\n"
"ddifrod"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -763,55 +808,55 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "caniatįu \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -820,32 +865,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -854,54 +899,54 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 "Gallwch ddewis ieithoedd eraill fydd ar gael ar ōl gosod"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Caniatįu pob defnyddiwr"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -910,11 +955,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -922,31 +967,31 @@ msgstr ""
"Mae rhannu yn ōl defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -957,7 +1002,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -965,7 +1010,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -973,7 +1018,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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -981,7 +1026,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -997,7 +1042,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1005,26 +1050,43 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeėdig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Dewisiadau"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Dewiswch lefel diogelwch"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1041,109 +1103,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' 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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "nid yw cymorth wedi ei weithredu eto.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Monitor Categoreiddio Math Newydd"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Monitor Math Newydd"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Monitor traddodiadol"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor Gtk+ Traddodiadol"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Cychwyn Auora wrth gychwyn y cyfrifiadur"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Modd Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Modd Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "System osod"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Gwall"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Copļo %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree86: %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NoVideo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Dewis dosbarth gosod"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1152,42 +1310,69 @@ msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Cadw'r dewis becynnau"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Modd System"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1231,61 +1416,112 @@ msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
msgid "Screenshots will be available after install in %s"
msgstr "Bydd lluniau o'r sgrin ar gale ar ōl gosod yn %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ffrainc"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Gwlad Belg"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Gweriniaeth Tsiec"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Yr Almaen"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Groeg"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norwy"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Sweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Yr Iseldiroedd"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Yr Eidal"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Awstria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yr Unol Daleithiau"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Model anhysbys"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "newydd"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Gwasanaethwr"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Rhowch gyflymder yr ysgrifennydd CD"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Gwasanaethwr"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Pwynt gosod:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Dewisiadau: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1299,15 +1535,6 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Gwall"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Dewin"
@@ -1333,7 +1560,7 @@ msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Manylion"
@@ -1361,13 +1588,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Arall"
@@ -1375,12 +1602,12 @@ msgstr "Arall"
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
@@ -1390,7 +1617,7 @@ msgstr "Math"
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Dileu"
@@ -1398,7 +1625,7 @@ msgstr "Dileu"
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1406,102 +1633,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Rhagor"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilėwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1509,11 +1736,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1521,129 +1748,112 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Pwynt gosod"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Dewisiadau"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Pwynt gosod:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1652,133 +1862,138 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Lle ydych am osod dyfais %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar ōl newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1790,7 +2005,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1802,7 +2017,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1812,45 +2027,45 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1859,83 +2074,83 @@ msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Copļo %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1944,7 +2159,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1952,27 +2167,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1984,7 +2199,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1996,63 +2211,58 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Dewisiadau: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2103,23 +2313,23 @@ msgstr "Parth NIS"
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2136,33 +2346,33 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2170,25 +2380,25 @@ msgid ""
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2196,259 +2406,263 @@ msgstr ""
"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Defnyddio awto ganfod"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generig"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Cof Cerdyn (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "gosodiad llwyth"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Newid y math"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Gadael"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Cymorth"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Cymorth"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Cymorth/_Ynghylch..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Llygoden"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Cof Cerdyn (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Diddymu"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Llygoden"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Disgrifiad"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Dilysu"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Dewiswch ffeil"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Dyfais mynedfa"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 fotwm"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Gadael"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cymorth/_Ynghylch..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Atoholi"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Canfod disg caled"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Gweler gwyboadeth am galedwedd"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Ffurfweddu llygoden"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Dangos gwybodaeth"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Ffurfweddu llygoden"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "canfyddwyd ar borth %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Arhoswch"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d eiliad"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Tynnu argraffydd \"%s\"..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generig"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Atoholi"
+msgid "Card model :"
+msgstr "Cof Cerdyn (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Newid y math"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "gosodiad llwyth"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4334,7 +4548,7 @@ msgstr ""
"Cliciwch \" Diddymu\" i ddiddymu'r weithred hon heb golli unrhyw ddata a "
"rhaniadau sy'n bresennol ar y ddisg galed."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4345,7 +4559,7 @@ msgstr ""
"(mae ffeil %s ar goll), mae hyn yn golygu, fel arfer, nad yw eich disg "
"cychwyn yn cydweddu gyda'r cyfrwng Gosod (crėwch ddisg cychwyn meddal newydd)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Rhaid fformatio %s"
@@ -4373,20 +4587,20 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb parth NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4394,7 +4608,7 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
@@ -4432,7 +4646,7 @@ msgstr ""
"\n"
"Parhau beth bynnag?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Rhaid bod gennych raniad FAT wedi ei osod yn /boot/efi"
@@ -4609,12 +4823,12 @@ msgstr ""
"Digwyddodd gwall ond wn i ddim sut i ddelio ag ef yn dwt.\n"
"Mae'n beryglus i barhau."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pwynt gosod dyblyg %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4626,12 +4840,12 @@ msgstr ""
"Gwiriwch y CD-ROM ar gyfrifiadur wedi ei osod gan ddefnyddio \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4641,7 +4855,7 @@ msgstr "Does dim gyrrwr disg meddal ar gael"
msgid "Entering step `%s'\n"
msgstr "Cychwyn cam '%s\"\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4653,77 +4867,77 @@ msgstr ""
"testunol. I wneud hynny, gwasgwch F1 wrth gychwyn ar y CD-ROM ac yna rhoi "
"'text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Gosod Dosbarth"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Dewiswch un o'r dosbarthiadau canlynol o osodiad::"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Cyfanswm maint: %d/%d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Pecyn gwallus"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Enw: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Fersiwn: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Maint: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Pwysigrwydd: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Nid oes modd i chi ddewis y pecyn hwn - does dim lle ar ol i'w osod"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Bydd y pecynnau canlynol yn cael eu tynnu"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Does dim modd i chi ddewis/dad-ddewis y pecyn"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Mae hwn yn becyn hanfodol, does dim modd ei ddad-ddewis"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4731,74 +4945,74 @@ msgstr ""
"Rhaid i'r pecyn gael ei uwchraddio\n"
"Ydych chi'n siwr eich bod am ei ddad-ddewis?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Does dim mod dad-ddewis y pecyn hwn. Rhaid ei ddiweddaru"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Dangoswch y pecynnau dewis awtomatig"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Gosodiad"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "LLwytho/Cadw ar ddisg meddal"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Diweddaru'r dewis pecynnau"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Gosodiad lleiaf"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Gosod"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Amcangyfrif"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Amser yn weddill"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Arhoswch, paratoi'r gosodiad"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pecyn"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4812,17 +5026,17 @@ msgstr ""
"Rhowch yr CD-ROM sydd wedi ei labeli \"%s\" yn eich gyrrwr a chlicio Iawn\n"
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5137,104 +5351,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Dewiswch gynllun eich alweddell"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Dyma restr lawn o'r allweddellau ar gael"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Pa ddosbarth o osodiad ydych chi ei eisiau?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Gosod/Diweddaru"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Ydi hwn yn osodiad neu diweddariad?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Argymhellwyd"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Arbennigwr"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Diweddaru"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Diweddaru'r pecynnau'n unig"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Porth Llygoden"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dewiswch ba borth cyfresol mae eich llygoden wedi cysylltu iddi"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Efelychiad botymau"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Efelychiad Botwm 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Efelychiad Botwm 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Ffurfweddu cardiau PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Ffurfweddu IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "dim rhaniadau ar gael"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Sganio rhaniadau i ganfod pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Dewiswch y pwyntiau gosod"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5251,7 +5465,7 @@ msgstr ""
"\n"
"Ydych chi'n cytuno i golli'r holl raniadau?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5259,7 +5473,7 @@ msgstr ""
"Methodd DrakX a darllen y tabl rhaniad yn gywir.\n"
"Mae'n beryglus parhau!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5267,70 +5481,70 @@ msgstr ""
"Nid oes lle rhydd ar gyfer yr ymlwythwr 1MB! Bydd y gosodiad yn parhau, ond "
"i gychwyn y system bydd rhaid i chi greu rhaniad ymlwythwr yn DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Ni chanfyddwyd rhaniad gwraidd i wneud diweddariad"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Rhaniad Gwraidd"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Beth yw'r rhaniad gwraidd (/) ar eich system?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Dewiswch y rhaniadau rydych am eu fformatio"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Gwirio blociau gwallus?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Yn fformatio rhaniadau"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creu a fformatio ffeil %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Dim digon o le cyfnewid i gyflawni'r gosodiad, ychwanegwch rhagor"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Chwilio am y pecynnau sydd ar gael"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Canfod pecynnau i'w uwchraddio"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Does dim mod dad-ddewis y pecyn, mae wedi ei osod yn barod"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Canfod pecynnau i'w uwchraddio"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5339,7 +5553,7 @@ msgstr ""
"Nid oes gan eich system ddigon o le ar ōl ar gyfer gosodiad neu uwchraddiad "
"(%d> %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5347,35 +5561,35 @@ msgstr ""
"Dewiswch llwytho neu ddewis cadw pecyn ar ddisg meddal.\n"
"Mae'r fformat yr un ar ddisgiau meddal wedi eu cynhyrchu drwy auto_install."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Llwytho o o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Llwytho o ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Dewis pecynnau"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Cadw ar ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
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:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5383,15 +5597,15 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
@@ -5410,11 +5624,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5423,21 +5637,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Ffurfweddiad ōl osod"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5512,7 +5726,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5532,177 +5746,186 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
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:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "Estyn Ffontiau Windows"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Dilysu LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Estyn Ffontiau Windows"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Gweinydd NTP"
+msgid "Authentication Windows Domain"
+msgstr "Dilysu LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Enw parth"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5733,19 +5956,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5770,7 +5993,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5784,28 +6007,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:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5819,11 +6042,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5831,15 +6054,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:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5857,17 +6080,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5877,7 +6100,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5909,16 +6132,16 @@ 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:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5933,15 +6156,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -5968,24 +6191,35 @@ msgstr "consolehelper ar goll"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Uwch"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Cynt"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Nesaf"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Dewis gwael, ceisiwch eto\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Eich dewis? (rhagosodedig %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5994,35 +6228,35 @@ msgstr ""
"Gwybodaeth i'w gyflawyno:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Eich dewis? (0/1, rhagosodedig %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Botwm '%s'.%s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Ydych chi eisiau clicio ar y botwm hwn?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Eich dewis? (rhagosodedig `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Mae yna lawer i ddewis o (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6032,7 +6266,7 @@ msgstr ""
"neu wasgwch Enter i barhau.\n"
"Eich dewis?"
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6041,327 +6275,379 @@ msgstr ""
"=>Hysbysiad, mae label wedi newid:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Ail-gyflwyno"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Almaeneg"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spaenaidd"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ffinaidd"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ffrengig"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norwyaidd"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Pwylaidd"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rwsiaidd"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Swedaidd"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Bysellfwrdd DG"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Bysellfwrdd UDA"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albaniaidd"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenaidd (hen)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenaidd (teipiadur)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenaidd (ffonetig)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjan (lladin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgaidd"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "galluogi"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bwlgaraidd (ffonetig)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bwlgaraidd (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasilaidd (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonaidd"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarusaidd"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Swisaidd (gosodiad Almaenig)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Swisaidd (gosodiad Ffrengig)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tsiec (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Almaenaidd (dim bysellau marw)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danaidd"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (UDA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwyaidd)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedaidd)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonaidd"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgaidd (gosodiad \"Rwsiaidd\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgaidd (gosodiad \"Lladinaidd\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Groegaidd"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hwngaraidd"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Croataidd"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelaidd"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelaidd (Ffonetig)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranaidd"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Eislandaidd"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Eidalaidd"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Siapaėaidd 106 bysell"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Bysellfwrdd Coreaidd"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Lladin America"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latfiaidd"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuenaidd AZERTY (hen)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuenaidd AZERTY (newydd)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuenaidd \"rhes rhif\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuenaidd \"ffonetig\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latfiaidd"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedonaidd"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbaidd (cyrilig)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Isalmaenaidd"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Pwylaidd (gosodiad qwerty)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portiwgalaidd"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Canada (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romanaidd (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romanaidd (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rwsiaidd (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slfenaidd"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slofacaidd (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovacaidd (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serbaidd (cyrilig)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Bysellfwrdd Thai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Bysellfwrdd Tajig"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Twrcaidd (model traddodiadol \"F\")"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Twrcaidd (model modern \"Q\")"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Wcranaidd"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Bysellfwrdd UDA (rhyngwladol)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Fietnamėaidd \"rhes rhifol\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Iwgoslafaidd (lladin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Bysell Alt dde"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Y ddwy fysell Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Bysellau Control a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "Bysell CapsLock"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Bysellau Ctrl ac Alt gyda'i gilydd"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Bysellau Alt a Shift gyda'i gilydd"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "Bysell \"Dewislen\""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Bysell \"Windows\" chwith"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Bysell \"Windows\" de"
@@ -6370,37 +6656,37 @@ msgstr "Bysell \"Windows\" de"
msgid "Circular mounts %s\n"
msgstr "Gosodiadau cylch %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Rhif ffōn"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Fformatio rhaniadau"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"Nid oes cefnodgaeth PCIMA yn bodoli bellach ar gyfer cnewyllyn 2.2. "
"Defnyddiwch cnewyllyn 2.4"
@@ -6505,51 +6791,43 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Gorffen"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Nesaf ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Cynt"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ydi hyn yn gywir?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Gwybodaeth"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Estyn y goeden"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Cau'r goeden"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
@@ -6572,6 +6850,10 @@ msgid "Alcatel speedtouch usb"
msgstr "usb Alcatel Speedtouch"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "defnyddiwch dhccp"
@@ -6599,7 +6881,7 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system.\n"
"Nid wyf yn medru gosod y math yma o gysylltiad."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Dewiswch rhag wyneb y rhwydwaith"
@@ -6613,7 +6895,7 @@ msgstr ""
msgid "no network card found"
msgstr "heb ganfod cerdyn rhwydwaith"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -6629,7 +6911,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Enw gwesteiwr"
@@ -6657,7 +6939,7 @@ msgstr "Pa fath o gysylltiad IDSN?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6783,43 +7065,43 @@ msgstr "Dewiswch ba borth cyfresol mae eich modem wedi cysylltu iddo."
msgid "Dialup options"
msgstr "Dewisiadau cyswllt ffōn"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Enw'r cysylltiad"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Rhif ffōn"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Dynodiad Mewngofnodi"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Seiliedig ar sgript"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Seiliedig ar derfynnell"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Enw parth"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
@@ -6932,13 +7214,13 @@ msgstr "Dewiswch broffil i'w ffurfweddu"
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
@@ -7055,7 +7337,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:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7067,7 +7349,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:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7077,43 +7359,43 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7125,40 +7407,40 @@ msgstr ""
"megis \"fymlwch.fynesg.fyngho.com\".\n"
"Medrwch hefyd gynnig eich cyfeiriad IP os oes gennych un"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Dylai rhif porth fod yn ftp://..."
@@ -7170,7 +7452,7 @@ msgstr "Ffurfweddiad rhyngrwyd"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Hoffech chi gysylltu ā'r Rhyngrwyd nawr?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Profi eich cysylltiad..."
@@ -7198,43 +7480,43 @@ msgstr "Ffurfweddiad y Cysylltiad"
msgid "Please fill or check the field below"
msgstr "Llanwch neu diciwch y maes islaw"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ y cerdyn"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Cof Cerdyn (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO'r Cerdyn"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_O y cerdyn"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 y cerdyn"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Eich rhif ffōn personol"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Enw darparwr (eng. darparwr.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Rhif ffōn y darparwr"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 y darparwr (dewisol)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 y darparwr (dewisol)"
@@ -7242,28 +7524,28 @@ msgstr "Dns 2 y darparwr (dewisol)"
msgid "Choose your country"
msgstr "Dewiswch eich gwlad"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Modd deialu"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Cyflymder y cysylltiad"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Oediad yn y cysylltiad (mewn eiliadau)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Mewngofnod Cyfrif (enw defnyddiwr)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Cyfrinair y Cyfrif"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7299,7 +7581,7 @@ msgstr "Ffeil wrth gefn gwallus"
msgid "Error writing to file %s"
msgstr "Gwall wrth ysgrifennu i ffeil %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7345,7 +7627,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7373,7 +7655,7 @@ msgstr "Argraffydd pell"
msgid "Printer on remote CUPS server"
msgstr "Argraffydd ar wasanaethwr CUPS pell"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Argraffydd ar wasanaethwr lpd pell"
@@ -7389,7 +7671,7 @@ msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Argraffydd ar wasanaethwr NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Rhowch URI dyfais argraffydd"
@@ -7397,110 +7679,110 @@ msgstr "Rhowch URI dyfais argraffydd"
msgid "Pipe job into a command"
msgstr "Peipio'r gwaith i orchymyn"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Model anhysbys"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Argraffyddion Lleol"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Argraffyddion Pell"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", argraffydd USB \\/\"%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dyfais amlbwrpas ar borth paralel \\/\"%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", dyfais amlbwrpas ar USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", dyfais amlbwrpas ar HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ",dyfais amlbwrpas"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", argraffu i %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr LPD \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "ar wasanaethwr Novell \"%s\", argraffydd \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", defnyddio gorchymyn %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Argraffydd crai (dim gyrrwr)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(ar %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(ar y peiriant hwn)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ar wasanaethwr CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr "(Rhagosodedig)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Dewiswch Gysylltiad Argraffydd"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Sut mae'r argraffydd wedi ei gysylltu?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7510,15 +7792,19 @@ msgstr ""
"Nid oes angen ffurfweddu argraffyddion ar wasanaethwyr CUPS pell: byddant yn "
"cael eu canfod yn awtomatig."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "Furfweddiad CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Enwch wasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7537,7 +7823,7 @@ msgstr ""
"dderbyn gwybodaeth am yr argraffydd gan y gwasanaethwr, neu gadewch y "
"meysydd yn wag."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7554,32 +7840,32 @@ msgstr ""
"cupsd.conf gyda llaw. Peidiwch anghofio ailgychwyn CUPS eto (gorchymyn: "
"\"service cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "Dylai cyfeiriad IP edrych fel 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Dylai rhif porth fod yn gyfanrif!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP gwasanaethwr CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Porth"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Furfweddiad CUPS Awtomatig"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7602,48 +7888,67 @@ msgstr ""
"yn rhoi mynediad i'r holl yrwyr argraffyddion sydd ar gael, dewisiadau "
"gyrwyr a mathau o gysylltiadau argraffyddion."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Argraffydd Lleol"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Croeso i Ddewin Gosod Argraffydd\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Bydd y dewin yn eich cynorthwyo i osod eich argraffydd(ion) sy'n "
-"gysylltiedig ā'r cyfrifiadur hwn.\n"
-"Cysylltwch yr argraffydd(ion) i'r cyfrifiadur a'i(u) troi mlaen. Cliciwch "
-"\"Nesaf\" pan rydych yn barod, ac ar \"Diddymu\"pan nad ydych am osod eich "
-"argraffydd(ion) ar hyn o bryd.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-"Sylwch fod rhai cyfrifiaduron yn medru methu yn ystod awto ganfod "
-"argraffydd, diffoddwch \"Awto ganfod argraffyddion\" i osod argraffydd heb "
-"awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am osod "
-"argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Awto ganfod argraffyddion"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Argraffydd Lleol"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7663,56 +7968,50 @@ msgstr ""
"gosodiadau dewis rhagosodedig (mewnflwch papur, ansawdd y printiad,...0, "
"dewiswch \"Argraffydd\" yn adran \"Caledwedd\" Canolfan Rheoli Mandrake."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Awto ganfod Argraffyddion"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Mae Printerdrake yn medru awto ganfod eich argraffyddion paralel ac USB "
-"lleol, ond sylwch fod awto ganfod yn MEDRU RHEWI EICH SYSTEM AC ARWAIN AT "
-"SYSTEMAU FFEIL LLWGR! Gwnewch hyn AR EICH MENTER EICH HUN!\n"
-"\n"
-"Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Defnyddio awto ganfod"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Gosod argraffydd gyda llaw"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Profwch y pyrth"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Canfyddwyd %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Argraffydd ar borth paralel \\/\"%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "Argraffydd USB \\/\"%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Argraffydd rhwydwaith (TCP/Soced)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Argraffydd ar wasanaethwr SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7724,35 +8023,23 @@ msgstr ""
"dev/,...., cyfatebol i LPT1:, LPT2,..., argraffydd USB 1af: /dev/usb/lp0, "
"ail argraffydd USB: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Rhaid cynnig enw dyfais neu ffeil!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Heb ganfood argraffydd lleol!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Dim ond ar ōl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
-"Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli Mandrake"
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
-"Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Argraffydd lleol"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7760,7 +8047,7 @@ msgstr ""
"Cafodd yr argraffydd canlynol ei awto ganfod, os nad hwn yw'r un rydych am "
"ei ffurfweddu, rhowch enw dyfais/enw ffeil ar y llinell mewnbwn."
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7769,7 +8056,7 @@ msgstr ""
"argraffydd rydych am ei osod neu rhowch enw dyfais/ffeil yn y llinell "
"mewnbwn."
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7781,7 +8068,7 @@ msgstr ""
"byddai'n well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7794,7 +8081,7 @@ msgstr ""
"well gennych ffurfweddiad unigryw i'ch argraffydd, cychwynnwch "
"\"Ffurfweddiad gyda Llaw\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7802,11 +8089,11 @@ msgstr ""
"Dewiswch y porth y mae eich argraffydd wedi cysylltu iddo neurhowch enw "
"dyfais/ffeil ar y ninell mewnbwn"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Dewiswch y porth mae'r argraffydd wedi cysylltu iddo."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7814,65 +8101,19 @@ msgstr ""
" (Pyrth paralel: /dev/lp0, /dev/lp1, ..., yn cyfateb i LPT1:, LPT2:, ..., "
"argraffydd USB cyntaf: /dev/usb/lp0, ail argraffydd USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Rhaid dewis/rhoi argraffydd/dyfais!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Ffurfweddiad gyda llaw"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
-"PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Gosod pecynnau HPOJ"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Gosod pecynnau SANE"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Gosod pecynnau..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Sganio eich dyfais HP aml bwrpas"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Darllen cronfa ddata argraffydd..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Dewisiadau Argraffydd lpd Pell"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7880,27 +8121,47 @@ msgstr ""
"I ddefnyddio argraffydd lpd pell, rhaid darparu enw gwesteiwr gwasanaethwr "
"yr argraffydd ac enw'r argraffydd ar y gwasanaethwr hwnnw."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Enw gwesteiwr pell"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Enw'r argraffydd pell"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Mae enw'r gwesteiwr pell ar goll!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Mae enw'r argraffydd pell ar goll!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Canfyddwyd %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Cychwyn y rhwydwaith..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "ar wasanaethwr Windows \"%s\", rhannu \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Argraffu ar argraffydd \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dewisiadau Argraffydd SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7913,35 +8174,46 @@ msgstr ""
"rydych am gael mynediad iddo ac unrhyw enw defnyddiwr, cyfrinair a "
"gwybodaeth am grwp gwaith perthynol."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Gwasanaethwr gwesteiwr SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP Gwasanaethwr SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Rhannu enw"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Grwp gwaith"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Rhaid rhoi un ai enw'r gwasanaethwr neu IP'r gwasanaethwr!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Mae enw rhannu Samba ar goll!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7965,7 +8237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7974,7 +8246,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7982,11 +8254,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Dewisiadau Argraffydd NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7998,51 +8270,70 @@ msgstr ""
"ā'r rhes waith argraffu am yr argraffydd rydych am gael mynediad iddo ac "
"unrhyw enw defnyddiwr a chyfrinair perthnasol."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Enw Rhes Argraffu"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Mae enw gwasanaethwr NCP ar goll!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Mae enw rhes NCP ar goll"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", gwesteiwr TCP/IP \"%s\", porth %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Dewisiadau Argraffydd TCP/Soced"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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 ""
"I argraffu i argraffydd TCP neu soced, rhaid i chi ddarparu enw gwesteiwr yr "
"argraffydd ac yn ddewisol rhif y porth. Ar wasanaethwyr HP JetDirect rhif y "
"porth, fel rheol, yw 9100, gall amrywio ar wasanaethwyr eraill. Gweler "
"llawlyfr eich caledwedd"
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Enw'gwesteiwr yr argraffydd"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Mae enw'r gwesteiwr argraffu ar goll!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Enw'gwesteiwr yr argraffydd"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI Dyfais Argraffu"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8052,11 +8343,11 @@ msgstr ""
"gyflawni manylyn un ai CUPS neu Foomatic. Sylwer nad yw pob math o URI cyn "
"cael eu cynnal gan bob sbwlydd ."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Rhaid cynnig URI dilys!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8064,23 +8355,27 @@ msgstr ""
"Mae pob argraffydd angen enw (e.e. \"argraffydd\". Nid oes angen llanw "
"meysydd Disgrifiad a Lleoliad. Lle ar gyfer sylwadau'r defnyddiwr sydd yma."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Enw'r argraffydd"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Lleoliad"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Darllen cronfa ddata argraffydd..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Paratoi cronfa ddata argraffydd..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Model eich argraffydd"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8106,24 +8401,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Mae'r model yn gywir"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Dewiswch y model gyda llaw"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Dewis model yr argraffydd"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Pa fath o argraffydd sydd gennych?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8137,7 +8432,7 @@ msgstr ""
"Chwiliwch am y model cywir pan fo'r cyrchwr yn sefyll ar y model anghywir "
"neu ar \"Argraffydd bras\"."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8145,11 +8440,11 @@ msgstr ""
"Nid yw eich argraffydd wedi ei rhestri, dewiswch un cyfatebol (gw. llawlyfr "
"eich argraffydd) neu un tebyg."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Ffurfweddiad OKI winprinter "
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8166,11 +8461,11 @@ msgstr ""
"brawf. Os na wnewch chi hynny, ni fydd yr argraffydd yn gweithio. Bydd eich "
"gosodiad ynghylch ymath o gysylltiad yn cael ei anwybyddu gan y gyrrwr."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Ffurfweddiad inkjet Lexmark"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8181,7 +8476,7 @@ msgstr ""
"argraffyddion lleol, yn unig. Cysylltwch eich argraffydd i borth lleol neu "
"ffurfweddwch ef i'r peiriant mae'n gysylltiedig ag ef."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8203,7 +8498,7 @@ msgstr ""
"dudalennau'r alinio'r pen argraffu gyda \"lexmarkmaintain\" a newid "
"gosodiadau aliniad y pen gyda'r rhaglen."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8220,22 +8515,22 @@ msgstr ""
"argraffiad ansawdd/cydraniad uchel iawn yn medru arafu'r argraffu'n "
"sylweddol.."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Rhaid i ddewis %s fod yn gyfanrif"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Rhaid i ddewis %s fod yn rhif!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Dewis %s allan o amrediad!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8244,11 +8539,11 @@ msgstr ""
"Ydych chi am osod argraffydd (\"%s\")\n"
"fel yr argraffydd rhagosodedig?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Tudalennau prawf"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8260,39 +8555,39 @@ msgstr ""
"ei argraffu ac ar argraffydd laser heb lawer o gof mae'n bosibl na ddaw o "
"gwbl. Yn y rhan fwyaf o achosion, mae'r prawf tudalen safonol yn ddigonol."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Dim tudalennau prawf"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Argraffu"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Tudalen prawf safonnol"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Prawf tudalen arall (Llythyr)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Prawf tudalen arall (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Tudalen prawf llun"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Peidiwch argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Argraffu tudalen(nau) prawf..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8307,7 +8602,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8315,15 +8610,15 @@ msgstr ""
"Mae tudalen(nau) prawf wedi eu hanfon at yr argraffydd.\n"
"Gall gymryd amser cyn i'r argraffydd gychwyn.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "A weithiodd hwnnw'n iawn?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Argraffydd bras"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8336,7 +8631,7 @@ msgstr ""
"\"xpp <file>\" neu \"kprinter <file>\". Mae'r offeryn graffigol yn caniatįu "
"chi ddefnyddio'r argraffydd ac i newid gosodiadau dewis yn hawdd.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8346,8 +8641,8 @@ msgstr ""
"deialogau argraffu mewn nifer o raglenni, ond yma nid ydynt yn darparu'r "
"enw ffeil am fod y ffeil i'r argraffydd yn cael ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8360,7 +8655,7 @@ msgstr ""
"tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r llinell "
"gorchymyn, e.e \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8372,7 +8667,7 @@ msgstr ""
"dewis argraffu\"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8381,7 +8676,7 @@ msgstr ""
"presennol:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8390,8 +8685,8 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch "
"orchymyn \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8401,7 +8696,7 @@ msgstr ""
"nifer o raglenni. Ond peidiwch ā rhoi'r enw ffeil yma oherwydd bod y ffeil "
"i'w argraffu wedi ei ddarparu gan y rhaglen.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8409,7 +8704,7 @@ msgstr ""
"I edrych ar y rhestr o'r dewisiadau sydd ar gael ar gyfer yr argraffydd "
"cyfredol cliciwch ar fotwm \"Rhestr dewisiadau argraffu\"."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8418,7 +8713,7 @@ msgstr ""
"I argraffu ffeil o'r llinell orchymyn (ffenestr terfynnell) defnyddiwch y "
"gorchymyn \"%s <file>\" or \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8435,7 +8730,7 @@ msgstr ""
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8448,45 +8743,45 @@ msgstr ""
"ar gyfer tasg argraffu penodol. Ychwanegwch y gosodiadau angenrheidiol i'r "
"llinell gorchymyn, e.e \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Argraffu/Sganio ar \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Argraffu ar argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Cau"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Rhestr ddewis argraffu"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8504,9 +8799,9 @@ msgstr ""
"\n"
"Peidiwch defnyddio \"scannerdrake\" ar gyfer y ddyfais hon."
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8517,17 +8812,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Darllen data argraffydd..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8542,7 +8837,7 @@ msgstr ""
"cael eu trosi, ond ni fydd y gwaith argraffu'n cael eu trosi.\n"
"Ni fydd yr holl waith argraffu'n cael eu trosi, am y rhesymau canlynol:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8550,18 +8845,18 @@ msgstr ""
"Nid yw CUPS yn cefnogi argraffyddion ar wasanaethwyr Novell neu "
"argraffyddion sy'n anfon data mewn gorchymyn ffurf -rhydd.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"Mae PDQ yn cynnal argraffyddion lleol, LDP pell, a Socket/TCP, yn unig.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Nid yw LPD na LPRng yn cynnal argraffyddion IPP.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8569,7 +8864,7 @@ msgstr ""
"Yn ogystal, nid oes modd trosglwyddo rhesi grewyd gan y rhaglen hon na "
"\"foomatic-configure\"."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8579,7 +8874,7 @@ msgstr ""
"Hefyd nid oes modd trosglwyddo argraffyddion ffurfweddwyd gyda ffeiliau PPD "
"ddarparwyd gan eu gwneuthurwyr na gyrrwyr CUPS brodorol."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8589,15 +8884,15 @@ msgstr ""
"Nodwch yr argraffydd rydych am ei drosglwddo a chliciwch\n"
"\"Trosglwyddo\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Peidio trosglwyddo argraffydd"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Trosglwyddo"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8608,12 +8903,12 @@ msgstr ""
"Cliciwch \"Trosglwyddo\" i ysgrifennu drosto.\n"
"Mae modd i chi osod enw newydd arno neu ei hepgor."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Dylai enw'r argraffydd gynnwys llythrennau, rhifau a'r tanlinellu, yn unig"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8622,16 +8917,16 @@ msgstr ""
"Mae argraffydd \"%s\" yn bodoli eisoes,\n"
"ydych chi wir eisiau ailysgrifennu ei ffurfweddiad?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Enw'r argraffydd newydd"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Trosglwyddo %s..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8641,29 +8936,29 @@ msgstr ""
"(\"%s\"). A ddylai fod yn argraffydd rhagosodedig y system argraffu newydd %"
"s ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Adnewyddu data'r argraffydd..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Ffurfweddiad argraffydd pell"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Cychwyn y rhwydwaith..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Ffurfweddwch y rhwydwaith"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Nid yw swyddogaethau'r rhwydwaith wedi ei ffurfweddu"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8675,11 +8970,11 @@ msgstr ""
"fynd ymlaen heb ffurfweddiad rhwydwaith, ni bydd modd i chi ddefnyddio'r "
"argraffydd rydych yn ei ffurfweddu ar hyn o bryd. Beth ydych am ei wneud?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Mynd yn eich blaen heb ffurfweddu'r rhwydwaith"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8695,7 +8990,7 @@ msgstr ""
"argraffydd, eto gan ddefnyddio Canolfan Rheoli Mandrake, adran \"Caledwedd\"/"
"\"Argraffydd\""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8705,24 +9000,24 @@ msgstr ""
"Gwiriwch eich ffurfweddiad a'ch caledwedd. Yna ceisiwch ail ffurfweddi eich "
"argraffydd."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Ailgychwyn system argraffu..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "uchel"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "Paranoia"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Gosod system argraffu yn lefel diogelwch %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8746,11 +9041,11 @@ msgstr ""
"\n"
"Ydych chi wir eisiau ffurfweddu argraffu ar y peiriant hwn?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Cychwyn y system argraffu wrth gychwyn y cyfrifiadur"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8772,63 +9067,63 @@ msgstr ""
"\n"
"Ydych chi am i'r cychwyn awtomatig gael ei droi ymlaen eto?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Gwirio'r meddalwedd sydd wedi ei osod..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Tynnu LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Tynnu LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Dewiswch Sbwlydd Argraffydd"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pa system argraffu(sbwlydd) ydych chi am ei ddefnyddio?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ffurfweddu argraffydd \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Gosod Foomatic..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Dewisiadau argraffydd"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Paratoi PrinterDrake..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Ffurfweddi'u rhaglenni"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Hoffech chi ffurfweddu argraffu?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "System argraffu."
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8840,7 +9135,7 @@ msgstr ""
"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8849,33 +9144,29 @@ msgstr ""
"Mae'r argraffyddion canlynol wedi eu ffurfweddi. Cliciwch ar un i newid ei "
"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth amdano."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Adnewyddu rhestr argraffyddion (dangos pob argraffydd CUPS pell sydd ar gael)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Newidiwch y system argraffu"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modd Arferol"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Ydych chi eisiau ffurfwedu argraffydd arall?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Newid ffurfweddiad yr argraffydd"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8884,69 +9175,69 @@ msgstr ""
"Argraffydd %s\n"
"Beth ydych am ei newid ar yr argraffydd hwn?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Gwna!!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Math o gyswllt argraffydd"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Enw'r argraffydd, disgrifiad, lleoliad"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Gwneuthurwr yr argraffydd, model, gyrrwr"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Gwneuthurwr yr argraffydd, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Gosod yr argraffydd fel y rhagosodedig"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ychwanegwchyr argraffydd hwn i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Tynnwch yr argraffydd hwn o Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Argraffu tudalennau prawf"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Gwybod sut i ddefnyddio'r argraffydd"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Tynnu argraffydd"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Tynnu hen argraffydd \"%s\"..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Mae argraffydd \"%s\" wedi ei osod fel yr argraffydd rhagosodedig."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ychwanegu argraffydd i Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -8954,17 +9245,17 @@ msgstr ""
"Mae argraffydd \"%s\" wedi ei ychwanegu'n llwyddiannus i Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Wedi methu ag ychwanegu argraffydd \"%s\" i Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Tynnu'r argraffydd o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -8972,17 +9263,17 @@ msgstr ""
"Cafodd argraffydd \"%s\" ei dynnu'n llwyddiannus o Star Office/OpenOffice."
"org."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Methwyd ā thynnu argraffydd \"%s\" o Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ydych chi wir eisiau tynnu argraffydd \"%s\""
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Tynnu argraffydd \"%s\"..."
@@ -9037,8 +9328,9 @@ msgstr ""
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Dylai'r URL ddechrau gyda \"http:\""
#: ../../proxy.pm_.c:79
msgid ""
@@ -9087,45 +9379,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
-"ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel peiriant "
-"i'w\n"
-"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
-"bosibl.\n"
-"Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
-"derbyn\n"
-"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
-"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Dewisiadau Uwch"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Dewisiadau"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernļaeth Sain Linux Uwch)"
@@ -9441,7 +9694,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "System"
@@ -9569,7 +9822,7 @@ msgstr ""
"gcc GNU yn ogystal ag amgylcheddau datblygiadol Cod Agored gorau oll"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Canolfan Rheoli Mandrake"
@@ -9687,20 +9940,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9708,174 +9961,174 @@ msgstr ""
"Methu darllen eich tabl rhaniadau. Mae'n rhy lwgr i mi :[\n"
"Af ymlaen i flancio rhaniadau gwael"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Trosglwyddo ffurfweddiad yr argraffydd"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Gwasanaethwr Cronfa Ddata"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Gwasanaethwr Cronfa Ddata"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "Gwasanaethwr NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "Gwasanaethwr NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Ychwanegu defnyddiwr"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "Cleient DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Cymorth"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Heb gysylltu"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Dileu"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Dewis Popeth"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Ychwanegu defnyddiwr"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "Cleient DHCP"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "ailffurfweddu"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Mewnosodwch y disg meddal Cychwyn ddefnyddiwyd yn gyrrwr %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Does dim gyrrwr disg meddal ar gael"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Gwall!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Methu canfod ffeil delwedd angenrheidiol '%s'."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Ffurfweddwr Awto-Osod"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9899,11 +10152,11 @@ msgstr ""
"Ydych chi eisiau parhau?\n"
"?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "FFurfweddiad Camau Awtomatig"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9911,12 +10164,12 @@ msgstr ""
"Dewiswch ar gyfer pob cam a fydd yn ail chwarae fel eich gosodiad, neu a "
"fydd gyda llaw"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9928,12 +10181,12 @@ msgstr ""
"\n"
"Mae paramedrau'r awto osod i'w cael yn yr adran ar y chwith"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Llongyfarchiadau!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9941,19 +10194,32 @@ msgstr ""
"Mae'r disg meddal wedi ei gynhyrchu'n llwyddiannus. \n"
"Medrwch ail chwarae eich gosodiad."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Awto Gosod"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Ychwanegu eitem"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Tynnu'r eitem olaf"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9963,7 +10229,7 @@ msgstr ""
" Adroddiad DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9975,7 +10241,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9987,31 +10253,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Defnyddiwch dāp i gadw wrth gefn"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -10019,7 +10349,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -10028,7 +10358,7 @@ msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -10039,35 +10369,39 @@ msgstr ""
"(!) anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth "
"gefn drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10075,26 +10409,27 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10102,40 +10437,61 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad FTP i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Trosglwyddo"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10144,43 +10500,68 @@ msgstr ""
"Rhowch y cyfeiriadur i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Dewiswch eich gofod CD"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Gwiriwch os ydych am gynnwys\n"
-" cychwyn gosod ar eich CD"
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Trosglwyddo"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10188,21 +10569,36 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Dewiswch ffeil"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Defnyddiwch dāp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
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:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10210,57 +10606,57 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatįu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Math"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10268,7 +10664,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10276,7 +10672,7 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10285,59 +10681,71 @@ msgid ""
msgstr ""
"Gwnewch yn siwr bod daemon cron yn cael ei gynnwys yn eich gwasanaethau"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10345,7 +10753,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10353,7 +10761,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10361,7 +10769,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10369,7 +10777,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10378,22 +10786,32 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Dyfais llygoden: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10402,12 +10820,12 @@ msgstr ""
"\n"
"- Cadw ar FTP ar y gwesteiwr: %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10416,7 +10834,7 @@ msgstr ""
"\n"
"- Cadw ar FTP ar y gwesteiwr: %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10425,7 +10843,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10433,19 +10851,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10454,41 +10872,41 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10496,7 +10914,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10504,137 +10922,134 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
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:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
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:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Nesaf"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10642,9 +11057,9 @@ msgstr ""
"Crėwch gadw wrth gefn cyn ei adfer...\n"
" neu gwiriwch fod eich llwybr i'w gadw'n gywir."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10652,14 +11067,14 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Mae'r pecynnau canlynol i'w gosod"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10668,19 +11083,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10688,75 +11103,60 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Rhestr data i'w gynnwys ar CDROM"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Rhowch gyflymder yr ysgrifennydd CD"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10767,7 +11167,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10814,7 +11214,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10823,7 +11223,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10847,7 +11247,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10900,21 +11300,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10949,18 +11349,18 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10992,7 +11392,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11068,7 +11468,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11087,7 +11487,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11109,7 +11509,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11184,96 +11584,123 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Mae gosod %s wedi methu. Digwyddodd y gwall canlynol:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Offer y Consol"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakeConsulting"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Llygoden"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Argraffydd pell"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Rhannu enw"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Dilysu"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Dewis pecynnau"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Arhoswch"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11285,47 +11712,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Wedi'r dad osod"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "porth"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Wedi'r dad osod"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Bydd lluniau o'r sgrin ar gale ar ōl gosod yn %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Ffurfweddiad y rhwydwaith (%d addasydd)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Proffil:"
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Proffl dileu"
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Proffil i'w ddileu:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Proffil newydd..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11333,95 +11760,95 @@ msgstr ""
"Enw'r proffil i'w greu ( mae'r proffil newydd yn cael ei greu fel copi o'r "
"un cyfredol):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Enw gwesteiwr:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Mynediad i'r Rhyngrwyd"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Math: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Mynedfa:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Rhyngwyneb:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Statws"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Arhoswch"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Ffurfweddu Mynediad i'r We..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Ffurfweddiad y Rhwydwaith Lleol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Gyrrwr"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Rhyngwyneb"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protocol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Stad"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Ffurfweddu'r Rhwydwaith Lleol..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Cliciwch yma i gychwyn y dewin ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Dewin..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Gosod"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Arhoswch...Gosod y ffurfweddiad"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Wedi cysylltu"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Heb gysylltu"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Cysylltu..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Dadgysylltu..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11429,7 +11856,7 @@ msgstr ""
"Rhybudd, mae cysylltiad arall gyda'r rhyngrwyd wedi ei ganfod, efallai'n "
"defnyddio eich rhwydwaith."
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11438,36 +11865,36 @@ msgstr ""
"eu ffurfweddio. Ffurfweddwch nhw'n gyntaf\n"
"drwy glicio ar 'Ffurfweddu'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Ffurfweddiad Rhwydwaith Lleol (LAN)"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Addasydd %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protocol Cychwyn"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Cychwyn y peiriant"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Cleient DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "cychwyn nawr"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "dad weithredu nawr"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11475,7 +11902,7 @@ msgstr ""
"Nid yw'r rhag wyneb hwn wedi ei ffurfweddu eto.\n"
"Cychwynnwch y dewin ffurfweddi yn y brif ffenestr."
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11483,121 +11910,121 @@ msgstr ""
"Nid oes gennych cysylltiad ā'r rhyngrwyd.\n"
"Crėwch un drwy glicio ar 'Ffurfweddu'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Ffurfweddiad cysylltiad ā'r Rhyngrwyd"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Ffurfweddu Cysylltiad ā'r Rhyngrwyd"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Math o gyswllt:"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Paramedrau"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Mynedfa"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Cerdyn Ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Cleient DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "defnydd: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Enw'r modiwl"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Maint"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "creu disg cychwyn"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "rhagosodedig"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Gwall Drakfloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "fersiwn cnewyllyn"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Cyffredinol"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Maes Uwch"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "ymresymiad dewisol mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Ychwanegu modiwl"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "grym"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "os oes angen"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "peidio cynnwys modiwlau scsi"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "peidio cynnwys modiwlau raid"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Tynnu modiwl"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Allbwn"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Adeiladu'r ddisg"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11606,12 +12033,12 @@ msgstr ""
"Does dim cyfrwng i'r dyfais %s.\n"
"Rhowch un i mewn.."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Methu fforchio: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11622,99 +12049,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Chwilio am ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Tynnu ffontiau wedi eu gosod"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "pob ffont"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "heb ganfod ffontiau"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "gorffen"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "methu canfod unrhyw ffont yn eich rhaniad gosodedig"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ailddewis y ffontiau cywir"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "methu cnafod unrhyw ffontiau.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Chwilio am ffontiau yn y rhestr gosod"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Copļo ffontiau"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Gosod ffontiau True Type"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "arhoswch yn ystod ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Wedi gosod True Type"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Trosiad ffontiau"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "adeiladu math 1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "cyfeirio Ghostscript"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "trosi ffontiau ttf "
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "trosi ffontiau pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Llethu ffeiliau dros dro"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Ail gychwyn XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Llethu ffeiliau Ffontiau"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "ail gychwyn xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11728,107 +12155,111 @@ msgstr ""
"- Medrwch osod y ffontiau yn y dull arferol. Mewn achosion prin, gall "
"ffontiau ffug rewi eich Gwasanaethwr X"
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Mewnforio Ffontiau"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Estyn Ffontiau Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Dad osod Ffontiau"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Dewisiadau Uwch"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Rhestr Ffontiau"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Dewiswch y rhaglenni fydd yn cynnal ffontiau:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Argraffyddion Generig"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Dewiswch ffeil neu gyfeiriadur y ffont a chlicio 'Ychwanegu'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Gosod Rhestr"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "cliciwch yma os ydych yn siwr."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "yma os nad."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Dewis Popeth"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Rhestr Tynnu"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Prawf Init"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Copļo'r ffontiau ar eich system!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Gosod a throsi ffontiau"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Wedi'r Gosod"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Tynnu ffontiau oddi ar eich system!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Wedi'r dad osod"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Rhannu Cysylltiad ā'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Mae Rhannu Cysylltiad ā'r Rhyngrwyd wedi ei alluogi"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11840,31 +12271,31 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "dymunol"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "gwrthod"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "ailffurfweddu"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Analluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Mae rhannu cysylltiad ā'r Rhyngrwyd wedi ei analluogi."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Mae Rhannu Cysylltiad a'r Rhyngrwyd wedi ei analluogi"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11876,19 +12307,19 @@ msgstr ""
"\n"
"Beth hoffech ei wneud?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "galluogi"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Galluogi gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Mae rhannu cysylltiad ā'r Rhyngrwyd wedi ei alluogi."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11905,21 +12336,21 @@ msgstr ""
"Sylwer: bydd angen Addasydd Rhwydwaith un-pwrpas i greu Rhwydwaith Lleol "
"(LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Rhagwyneb %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nid oes addasydd rhwydwaith ar eich system!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11927,11 +12358,11 @@ msgstr ""
"Nid oes addasydd rhwydwaith ethernet wedi ei ganfod ar eich system. Rhedwch "
"yr offeryn ffurfweddu caledwedd."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Rhyngwyneb rhwydwaith"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11946,7 +12377,7 @@ msgstr ""
"\n"
"Rwyf ar fin gosod eich Rhwydwaith Lleol gyda'r addasydd hwnnw.."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11954,11 +12385,11 @@ msgstr ""
"Dewiswch ba addasyddion rhwydwaith fydd yn cael eu cysylltu ā'ch Rhwydwaith "
"Lleol."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Mae rhag wyneb y rhwydwaith wedi ei ffurfwedu eisoes"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11974,15 +12405,15 @@ msgstr ""
"Medrwch ei wneud gyda llaw ond mae'n rhaid i chi wybod beth ydych yn ei "
"wneud."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Ail ffurfweddiad awtomatig"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Dangoswch y ffurfweddiad rhag wyneb cyfredol"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11999,7 +12430,7 @@ msgstr ""
"Priodweddau IP: %s\n"
"Gyrrwr: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12018,33 +12449,33 @@ msgstr ""
"Neu, medraf ail ffurfweddu eich rhag wyneb ac (ail)ffurfweddi gwasanaethwr "
"DHCP ar eich cyfer.\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Rhwydwaith Lleol Dosbarth C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "Gwasanaethwr DHCP IP (Hwn)"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Ail ffurfweddi rhag wyneb a gwasanaethwr DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Nid yw'r Rhwydwaith Leol yn terfynnu gyda '.0', tynnu allan."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Canfuwyd gwrthdaro posib yng nghyfeiriad LAN ffurfweddiad presennol %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Wedi canfod ffurfweddiad mur gwarchod!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -12052,20 +12483,20 @@ msgstr ""
"Rhybudd! Mae ffurfweddiad mur gwarchod wedi ei ganfod. Efallai bydd angen "
"atgyweirio gyda llaw ar ōl y gosodiad."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Ffurfweddu..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ffurfweddio sgriptiau, gosod meddalwedd, cychwyn gwasanaethwyr..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Anhawster wrth osod pecyn %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12075,23 +12506,23 @@ msgstr ""
"Gallwch rannu cysylltiad ā'r Rhyngrwyd gyda chyfrifiaduron eraill ar eich "
"Rhwydwaith Lleol gan ddefnyddio ffurfweddiad rhwydwaith awtomatig (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei anallluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Mae'r gosodiad wedi ei gyflawnu, mae wedi ei allluogi ar hyn o bryd."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nid oes Rhannu Cysylltiad ā'r Rhyngrwyd wedi eu ffurfweddu o'r blaen."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Ffurfweddiad rhannu cysylltiad ā'r Rhyngrwyd"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12106,20 +12537,13 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Canolfan Rheoli"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12128,106 +12552,110 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Canada (cabl)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "UDA (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "UDA (cabl)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "UDA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "Tseina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "Siapan (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Siapan (cable)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Dwyrain Ewrop"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Ffrainc"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Iwerddon"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Gorllewin Ewrop"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Awstralia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Zeland Newydd"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "De Affrica"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Yr Ariannin"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Rhowch eich safon teledu a gwlad"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Safon Teledu:"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Ardal:"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Wrthi'n sganio am sianeli Teledu ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Sganio am Sianel Teledu"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Digwyddodd gwall wrth osod pecyn"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -12251,11 +12679,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Dewiswch gynllun alweddell"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Ydych chi eisiau i'r Backspace ddychwelyd Dileu yny consol?"
@@ -12281,7 +12709,7 @@ 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:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12389,22 +12817,25 @@ msgstr "Calendr"
msgid "Content of the file"
msgstr "Cynnwys y ffeil"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Rhybudd E-bost/SMS"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "arhoswch, dosbarthu ffeil: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Rhybudd ffurfweddiad E-bost/SMS"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12412,122 +12843,123 @@ msgstr ""
"\n"
"Yma bydd modd i chi osod y system rhybuddio.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Enw parth"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "Gwasanaethwr NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Gwasanaethwr e-bost Postfix, gwasanaethwr newyddion Inn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "Gwasanaethwr NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "Gwasanaethwr NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Gwasanaethau"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Gwasanaethwr Argraffydd"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "gosodiad gwasanaeth"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Byddwch yn derbyn rhybudd os na fydd un o'r gwasanaethu hyn yn rhedeg"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "gosodiad llwyth"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Byddwch yn derbyn rhybudd os yw'r llwyth yn uwch na'r gwerth hwn"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "ffurfweddiad rhybudd"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Cadw fel..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Dewiswch math eich llygoden"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "neb ganfod serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Efelychu'r trydydd botwm?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Darllen data argraffydd..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Canfod dyfeisiadau..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Profwch y pyrth"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "Wedi canfod %s ar %s, ei ffurfweddi?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Dewiswch sganiwr"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Nid yw sganiwr %s yn cael ei gynnal"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Dyfais cychwyn"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12537,7 +12969,7 @@ msgstr ""
"Rhaid i sganiwr %s gael ei ffurfweddu gan printerdrake.\n"
"Medrwch gychwyn printerdrake o adran Galedwedd Canolfan Rheoli Mandrake"
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12557,15 +12989,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Ffurfweddiad Mur Gwarchod"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Ffurfweddiad Mur Gwarchod"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12577,7 +13009,7 @@ msgstr ""
"Rydych eisoes wedi gosod mur gwarchod\n"
"Cliciwch Ffurfweddu i newid neu dynnu'r mur gwarchod"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12826,48 +13258,48 @@ msgstr "Methu agor %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Methu agor %s ar gyfer ysgrifennu: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Nid wyf angen DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Rwyf eisiau DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Nid wyf angen NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Rwyf eisiau NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Peidio Cadw"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Cadw a Gadael"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Mur Cadarn"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Na ((rhowch hwn tu nōl i fur cadarn rhag y rhyngrwyd)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Iawn (caniatewch hwn drwy'r mur cadarn)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Arhoswch,... Gwirio'r pecynnau sydd wedi eu gosod"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12876,6 +13308,10 @@ msgstr ""
"Wedi methu gosod y pecynnau angenrheidiol: %s a Bastille.\n"
" Ceisiwch eu gosod gyda llaw."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Gwe/FTP"
@@ -12926,6 +13362,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Offer Sain: mp3 neu chwarewyr midi, cymysgwyr, ag ati"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llyfrau a Howto's ar Linux a Meddalwedd Rhydd"
@@ -13016,10 +13456,6 @@ msgid "Office Workstation"
msgstr "Gweithfan Swyddfa"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Gwasanaethwr"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, ag ati"
@@ -13084,6 +13520,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Clientiaid ar gyfer protocolau amrywiol yn cynnwys ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Porth i'r rhyngrwyd"
@@ -13115,6 +13555,193 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Rhaid defnyddio'r lefel hwn a gofal. Mae'n gwneud eich system yn haws ei\n"
+#~ "ddefnyddio ond mae'n sensitif iawn: rhaid peidio ei ddefnyddio fel "
+#~ "peiriant i'w\n"
+#~ "gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
+#~ "bosibl.\n"
+#~ "Mae diogelwch yn ddigon uchel i ddefnyddio'r system fel gwasanaethwr sy'n "
+#~ "derbyn\n"
+#~ "cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw "
+#~ "eich peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Dewisiadau"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Diogelwch"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Rhestr data i'w gynnwys ar CDROM"
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Dewiswch eich gofod CD"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Rhowch gyflymder yr ysgrifennydd CD"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Gwiriwch os ydych am ddileu eich CDRW cyn"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Rhowch enw dyfais eich Ysgrifennydd CD (ex: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Ticiwch os ydych eisiau cynnwys cychwyn gosod ar eich CD."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Dylai'r URL ddechrau gyda 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Gwiriwch os ydych am gynnwys\n"
+#~ " cychwyn gosod ar eich CD"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Gweinydd NTP"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Croeso i Ddewin Gosod Argraffydd\n"
+#~ "\n"
+#~ "Bydd y dewin yn eich cynorthwyo i osod eich argraffydd(ion) sy'n "
+#~ "gysylltiedig ā'r cyfrifiadur hwn.\n"
+#~ "Cysylltwch yr argraffydd(ion) i'r cyfrifiadur a'i(u) troi mlaen. Cliciwch "
+#~ "\"Nesaf\" pan rydych yn barod, ac ar \"Diddymu\"pan nad ydych am osod "
+#~ "eich argraffydd(ion) ar hyn o bryd.\n"
+#~ "\n"
+#~ "Sylwch fod rhai cyfrifiaduron yn medru methu yn ystod awto ganfod "
+#~ "argraffydd, diffoddwch \"Awto ganfod argraffyddion\" i osod argraffydd "
+#~ "heb awto ganfod. Defnyddiwch \"Modd Arbenigwr\" printdrake pan fyddwch am "
+#~ "osod argraffydd pell os nad yw printerdrake yn ei restri'n awtomatig."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Awto ganfod Argraffyddion"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Mae Printerdrake yn medru awto ganfod eich argraffyddion paralel ac USB "
+#~ "lleol, ond sylwch fod awto ganfod yn MEDRU RHEWI EICH SYSTEM AC ARWAIN AT "
+#~ "SYSTEMAU FFEIL LLWGR! Gwnewch hyn AR EICH MENTER EICH HUN!\n"
+#~ "\n"
+#~ "Ydych eisiau i'ch argraffydd gael ei awto ganfod?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Gosod argraffydd gyda llaw"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Dim ond ar ōl cwblhau'r gosodiad mae modd gosod argraffyddion rhwydwaith. "
+#~ "Dewiswch \"Caledwedd\" ac yna \"Argraffydd\" yng Nghanolfan Rheoli "
+#~ "Mandrake"
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "I osod argraffyddion rhwydwaith, cliciwch \"Diddymu\", trowch i \"Modd "
+#~ "Arbenigwr\", clicio \"Ychwanegu argraffydd newydd\" eto."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "A yw eich argraffydd yn ddyfais amlbwrpas gan HP (OfficeJet, PSC, "
+#~ "PhotoSmart LaserJet 1100/1200/1220/3200/3300 gyda sganiwr)"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Gosod pecynnau HPOJ"
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Gwirio a ffurfweddu dyfais HPOJ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Gosod pecynnau SANE"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Gosod pecynnau..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Sganio eich dyfais HP aml bwrpas"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Sganio eich dyfais HP aml bwrpas"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Gwneud porth argraffydd ar gael ar gyfer CUPS"
+
+#~ msgid "Control Center"
+#~ msgstr "Canolfan Rheoli"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Dewiswch yr offeryn rydych am ei ddefnyddio"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Ffurfweddiwch y ffordd mae'r system yn eich rhybuddio"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "neb ganfod serial_usb\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
@@ -13226,9 +13853,6 @@ msgstr "Gweithfan Gwyddonol"
#~ msgid "Setting security level"
#~ msgstr "Gosod y lefel diogelwch"
-#~ msgid "Graphics card"
-#~ msgstr "Cerdyn graffig"
-
#~ msgid "Select a graphics card"
#~ msgstr "Dewiswch gerdyn graffig"
@@ -13315,6 +13939,3 @@ msgstr "Gweithfan Gwyddonol"
#~ msgid "Percentage of packages to install"
#~ msgstr "Cyfanswm y pecynnau i'w gosod"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Dewiswch lefel diogelwch"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 183a924d1..d207d57f4 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -7,9 +7,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2002-07-28 15:07+0200\n"
+"Project-Id-Version: drakbootdisk 0.43\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-08-17 15:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
@@ -60,11 +60,11 @@ msgstr "Vęlg en X-server"
msgid "X server"
msgstr "X-server"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Flerskęrms-konfiguration"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,44 +72,44 @@ msgstr ""
"Dit system understųtter konfiguration af flere skęrme\n"
"Hvad vil du gųre?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Vęlg hukommelsesmęngde for dit grafikkort"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree konfiguration"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Hvilken konfiguration af XFree ųnsker du?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Konfigurér alle skęrme uafhęngigt"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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 understųttet af XFree %s som kan have bedre understųttelse i 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Dit kort kan have 3D hardware accelerations-understųttelse med XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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 understųttet af XFree %s som kan have bedre understųttelse i 2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,11 +151,56 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan få din maskine til at låse eller gå "
"ned."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skęrmdriver)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Tilpasset"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Grafikkort"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Skęrm"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Oplųsning"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Afprųv"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "O.k."
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Afslut"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -168,31 +213,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Vęlg en skęrmtype"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Skęrm"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Tilpasset"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Standard"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
msgstr "Producent"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -216,11 +257,11 @@ msgstr ""
"Hvis du er i tvivl, bųr du vęlge en opsętning, som du med SIKKERHED ved\n"
"at din skęrm kan klare."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Vandret opdateringsfrekvens"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Lodret opdateringsfrekvens"
@@ -244,57 +285,42 @@ msgstr "16 millioner (24 bit)"
msgid "4 billion colors (32 bits)"
msgstr "4 milliarder farver (32 bit)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Oplųsninger"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Oplųsning"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Vęlg oplųsning og farvedybde"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Annullér"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "O.k."
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ųnsker du at afprųve konfigurationen?"
@@ -303,71 +329,71 @@ msgstr "Ųnsker du at afprųve konfigurationen?"
msgid "Test of the configuration"
msgstr "Test konfigurationen"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastatur-type: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muse-type: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muse-enhed: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Skęrm: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Skęrms vandrette frekvens: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Skęrms lodrette frekvens: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafikkort: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Grafik-hukommelse: %s kb\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Farvedybde: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Oplųsninger %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86-server: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -376,167 +402,191 @@ msgstr ""
"Jeg kan sętte din maskine op til automatisk at starte X ved\n"
"opstart. Ųnsker du at starte X hver gang du genstarter?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Grafikkortet ser ud til at have en TV-UD-forbindelse.\n"
+"Den kan konfigureres så den fungerer med billeddbuffer.\n"
+"\n"
+"Til dette skal du tilslutte grafikkortet til tv'et inden du starter "
+"maskinen.\n"
+"Vęlg dernęst indgangen \"TVout\" i starthåntereren.\n"
+"\n"
+"Har du denne funktion?"
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "Hvilken standard bruger dit tv?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Fųrste sektor af opstartspartition"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Fųrste sektor på disken (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO-installering"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub-installering"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO med grafisk menu"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Start fra DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Systemopstarterens installation"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Opstartsenhed"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (virker ikke med gamle BIOS'er)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Videoindstilling"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Ventetid fųr opstart af forvalgt styresystem"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Begręns kommandolinie-indstillinger"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "begręns"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pręcis RAM-męngde, hvis påkręvet (fandt %d Mb)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Aktivér multiprofiler"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Angiv RAM-stųrrelse i Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Indstillingen ``Begręns kommandolinie-indstillinger'' er intet vęrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Prųv igen"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Init-besked"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Åben firmwareforsinkelse"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Ventetid fųr kerneopstart"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Skal det vęre muligt at starte fra CD?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Skal det vęre muligt at starte fra OF?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -550,7 +600,7 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -558,147 +608,148 @@ msgstr ""
"Her er fųlgende typer indgange.\n"
"Du kan tilfųje flere eller ęndre de eksisterende."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilfųj"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Fęrdig"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Ęndr"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ųnsker du at tilfųje"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Vedhęft"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lęs-skriv"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Męrkat"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Forvalgt"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-stųrrelse"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Ingen video"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Fjern indgang"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Tom męrkat er ikke tilladt"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Denne męrkat er allerede brugt"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s gręnsesnit"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Har du én til?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s gręnsesnit?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -707,7 +758,7 @@ msgstr ""
"Du kan nu angive parametre til modul %s.\n"
"Bemęrk at alle adresser bųr indtastes med foranstillet 0x, fx '0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -718,17 +769,17 @@ msgstr ""
"Parametrene er i formatet ``navn=vęrdi navn2=vęrdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modulindstillinger:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prųve?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -748,15 +799,15 @@ msgstr ""
"burde\n"
"ikke forårsage nogen skader."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Specificér parametre"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -765,53 +816,53 @@ msgstr ""
"Indlęsning af modul %s mislykkedes.\n"
"Ųnsker du at prųve igen med andre parametre?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "adgang til rpm-vęrktųjer"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfųjet %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet må kun indeholde små bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Tilfųj bruger"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -820,32 +871,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -853,19 +904,19 @@ msgstr ""
"Jeg kan sętte din maskine op til automatisk at logge en bestemt bruger på.\n"
"Ųnsker du at bruge denne finesse?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Vęlg den forvalgte bruger:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Vęlg den vindueshåndtering du ųnsker at benytte:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Vęlg det sprog, der skal bruges."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -873,35 +924,35 @@ msgid ""
msgstr ""
"Du kan vęlge andre sprog der vil vęre tilgęngelige efter installationen"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakken %s skal vęre installeret. Ųnsker du at installere den?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Kręvet pakke %s mangler"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -914,11 +965,11 @@ msgstr ""
"Tilladelse af dette vil sętte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -926,31 +977,31 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilfųje en bruger til denne gruppe."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Hųj"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Hųjere"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -961,7 +1012,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -969,7 +1020,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvęrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -977,7 +1028,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -985,7 +1036,7 @@ msgstr ""
"Der er allerede nogle begręnsninger, og flere automatiske kontroller bliver "
"kųrt hver nat."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -999,7 +1050,7 @@ msgstr ""
"forbindelser fra mange klienter. Bemęrk: hvis din maskine kun er en klient "
"på internettet bųr du hellere vęlge et lavere niveau."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1007,30 +1058,48 @@ msgstr ""
"Baseret på det foregående niveau, men systemet er nu helt lukket.\n"
"Sikkerhedsfaciliteterne er nu på deres hųjeste niveau."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "Basale valgmuligheder for DrakSec"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "Vęlg det ųnskede sikkerhedniveau"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Et bibliotek som beskytter mod angreb via bufferoverlųb og formatstrenge."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
+#: ../../any.pm_.c:1189
+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 ""
+"Her kan du vęlge tasten eller tastekombinationen som \n"
+"lader dig skifte mellem forskellige tastaturlayouter\n"
+"(dvs latinsk eller ikke-latinsk)."
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1055,109 +1124,207 @@ 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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Velkommen til GRUB styresystemsvęlgeren!"
#. -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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Brug tasterne %c og %c til at vęlge 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "kommandoerne fųr 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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Den fremhęvede mulighed vil blive startet automatisk om %d sekunder."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlęseren på en %s-partition\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjęlp implementeret.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fil"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<Ctrl>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Katergoriserende oversigt i ny stil"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Oversigt i ny stil"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Traditionel oversigt"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Traditionel Gtk+-oversigt"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Start Aurora ved opstart"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub modus"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot modus"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Installér temaer"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "Visningstema under konsol"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "Kan ikke lave smugkig af opstartsskęrm"
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Fejl"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "Sikkerhedskopiér %s til %s.old"
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "kunne ikke lave sikkerhedskpoi af lilo-besked"
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "Kopiér %s til %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "kan ikke ęndre lilo-besked"
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "Lilo-besked ikke fundet"
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "Skriv %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+"Kan ikke skrive /etc/sysconfig/bootsplash\n"
+"Fil ikke fundet."
+
+#: ../../bootlook.pm_.c:233
+#, 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:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr "Lav initrd 'mkinird -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+"Kan ikke genstarte LiLo!\n"
+"Start \"lilo\" som root på kommandolinjen for at fęrdiggųre installationen "
+"af Lilo-tema."
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "Genstart 'lilo'"
+
+#: ../../bootlook.pm_.c:248
+msgid "Notice"
+msgstr "Bemęrk"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Problemfri installation af temaer for LiLo- og opstartsskęrm"
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "Installation af tema mislykkedes"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1166,42 +1333,73 @@ msgstr ""
"Du bruger for ųjeblikket % som opstartshåndterer.\n"
"Klik på Konfigurér for at starte opsętnings-vejlederen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfigurér"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "Valg af opstartsskęrm"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Temaer"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+"\n"
+"Vęlg et tema for\n"
+"Lilo og opstartskęrmen,\n"
+"du kan vęlge\n"
+"dem separat"
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "Lilo-skęrm"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "Opstartsskęrm"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
-msgstr "Systemmodus"
+msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Nej, jeg ųnsker ikke automatisk login"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg ųnsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke lęse /etc/inittab: %s"
@@ -1245,61 +1443,108 @@ msgstr "Kan ikke lave ųjebliksbilleder fųr partitionering"
msgid "Screenshots will be available after install in %s"
msgstr "Ųjebliksbilleder vil vęre tilgęngelige efter installation i %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankrig"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Tjekkiet"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Tyskland"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grękenland"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norge"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Sverige"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italien"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Ųstrig"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "U.S.A."
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Ukendt model"
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Ny"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+msgid "Please enter the WebDAV server URL"
+msgstr "Indtast LRL for WebDAV-serveren"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr "URL'en skal begynde med http:// or https://"
+
+#: ../../diskdrake/dav.pm_.c:92
+msgid "Server: "
+msgstr "Server: "
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Monteringssti: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Valg: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Lav gerne en sikkerhedkopi af dine data fųrst"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lęs omhyggeligt!"
@@ -1312,15 +1557,6 @@ msgstr ""
"Hvis du planlęgger at bruge Yaboot, skal du huske at efterlade fri plads på\n"
"begyndelsen af disken (2048 sektorer skulle vęre nok)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fejl"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Vejleder"
@@ -1346,7 +1582,7 @@ msgid "Please click on a partition"
msgstr "Klik på en partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detaljer"
@@ -1374,13 +1610,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Tom"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Andet"
@@ -1388,12 +1624,12 @@ msgstr "Andet"
msgid "Filesystem types:"
msgstr "Filsystems-typer:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Opret"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1403,7 +1639,7 @@ msgstr "Type"
msgid "Use ``%s'' instead"
msgstr "Benyt ``%s'' i stedet"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Slet"
@@ -1411,79 +1647,79 @@ msgstr "Slet"
msgid "Use ``Unmount'' first"
msgstr "Benyt ``Afmontér'' fųrst"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Efter type-ęndring af partition %s vil alle data på denne partition gå tabt"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Vęlg en partition"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Vęlg en ny partition"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Afslut"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Normal -> Ekspert"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ekspert -> Normal"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Fortryd"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Fortsęt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ųnsker du at gemme /etc/fstab-ęndringerne?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Allokér automatisk"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Slet alt"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mere"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Drev-information"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Alle primęre partitioner er brugt"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Kan ikke tilfųje flere partitioner"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1491,31 +1727,31 @@ msgstr ""
"For at du kan få flere partitioner, skal du slette én, så der kan oprettes "
"en udvidet partition"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Gem partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Genskaber partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Redder partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Genindlęs partitionstabel"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Automontering af flytbare medier"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Vęlg fil"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1523,11 +1759,11 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme stųrrelse\n"
"Fortsęt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Advarsel"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1535,129 +1771,115 @@ msgstr ""
"Indsęt en diskette i diskettedrevet\n"
"Alle data på disketten vil blive slettet"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Forsųger at redde partitionstabellen"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Detaljeret information"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Monteringssti"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Valg"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Stųrrelsesęndring"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Flyt"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatér"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montér"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Tilfųj til RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Tilfųj til LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Afmontér"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Fjern fra RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Fjern fra LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Ęndr RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Loopback anvendelse"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Opret en ny partition"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Startsektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Stųrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Filsystemstype: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Monteringssti: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Pręference: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Du kan ikke oprette en ny partition\n"
+"(fordi du er oppe på det maksimale antal primęre partitioner)\n"
+"Fjern fųrst en primęr partition og opret en udvidet partition."
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Fjern loopback-filen?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Skift partitionstype"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hvilket filsystem ųnsker du at bruge?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Skifter fra ext2 til ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvor ųnsker du at montere loopback-fil %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvor ųnsker du at montere partitionen %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1666,132 +1888,137 @@ msgstr ""
"loopback.\n"
"Fjern loopback fųrst"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Hvor ųnsker du at montere %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Udregner FAT-filsystemets gręnser"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ęndrer stųrrelsen"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Stųrrelsen på denne partition kan ikke ęndres"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Det bųr laves en backup af alle data på denne partition"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Efter ęndring af stųrrelsen af partition %s vil alle data på denne partition "
"gå tabt"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Vęlg den nye stųrrelse"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ny stųrrelse i Mb: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Hvilken disk ųnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Hvilken sektor ųnsker du at flytte den til?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Flytter"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Flytter partition..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Vęlg en eksisterende RAID som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "ny"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Vęlg en eksisterende LVM som skal udvides"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM-navn?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vęlg en anden fil"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Modulindstillinger"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Diverse"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "enhed"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "niveau"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "enhedsstųrrelse"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Vęr forsigtig: denne operation er farlig."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakken %s kręves. Ųnsker du at installere den?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1803,7 +2030,7 @@ msgstr ""
"fungere, eller du kan undlade at benytte LILO, hvilket vil betyde, at du "
"ikke har brug for /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1815,7 +2042,7 @@ msgstr ""
"partition. Hvis du ųnsker at benytte LILO, skal du oprette en /boot "
"partition indenfor 1024-cylinder gręnsen."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1825,45 +2052,45 @@ msgstr ""
"Ingen systemopstarter kan håndtere dette uden en /boot partition.\n"
"Så vęr omhyggelig med at tilfųje en /boot partition"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ęndringerne"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formaterer"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formaterer loopback-fil %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formaterer partition %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Skjul filer"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1872,83 +2099,83 @@ msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Enhed: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gęt)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Type: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Navn: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Stųrrelse: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Monteret\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1957,7 +2184,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1965,27 +2192,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gęlder kun MS-DOS-opstart, ikke LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Enhedsstųrrelse %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1997,7 +2224,7 @@ msgstr ""
"en driver-partition, du skal\n"
"sandsynligvis lade den vęre.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2009,63 +2236,58 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Stųrrelse: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
msgid "on channel %d id %d\n"
msgstr "på kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Valg: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Krypteringsnųgle for filsystem"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Vęlg din krypteringsnųgle for filsystemet"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnųgle er for nem at gętte (skal mindst vęre på %d tegn)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Krypteringsnųglerne stemmer ikke overens"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Krypteringsnųgle"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Krypteringsnųgle (igen)"
@@ -2113,23 +2335,23 @@ msgstr "Domęne"
msgid "Search servers"
msgstr "Sųg efter servere"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2146,33 +2368,33 @@ msgstr "med /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Monteringsstier skal begynde med /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Der findes allerede en partition med monterings-sti %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Dette katalog bųr ligge på rod-filsystemet"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2180,25 +2402,25 @@ msgstr ""
"Du skal have et rigtigt filsystem (ext2/ext3, reiserfs, xfs eller jfs) til "
"dette monteringspunkt\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Du kan ikke bruge et krypteret filsystem for monteringspunkt %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Ikke nok fri plads til at tildele nye partitioner automatisk"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Ingenting at lave"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved åbning af %s for skrivning: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2207,249 +2429,255 @@ msgstr ""
"der kan oprettes nye filsystemer. Undersųg din maskine for at finde årsagen "
"til problemet"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Du har ikke nogen partitioner!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-msgid "Auto-detect"
-msgstr "Automatisk detektion"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr "Ukendt|generisk"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Ukendt|CPH05X (bt878) [mange leverandųrer]"
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Ukendt|CPH06X (bt878) [mange leverandųrer]"
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
-"automatisk finde de rette parametre.\n"
-"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
-"korttyper her. Bare vęlg dit tv-korts parametre om nųdvendigt"
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr "Kortmodel:"
-
-#: ../../harddrake/bttv.pm_.c:197
-msgid "PLL setting :"
-msgstr "PLL-opsętning:"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr "Antal fangningsbuffere:"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Antal fangningsbuffere for mmap-fangning"
-
-#: ../../harddrake/bttv.pm_.c:199
-msgid "Tuner type :"
-msgstr "Tuner-type:"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr "Radio-understųttelse:"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr "aktivér radio-understųttelse"
-
-#: ../../harddrake/ui.pm_.c:12
-msgid "/_Quit"
-msgstr "/_Afslut"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hjęlp"
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr "/_Hjęlp..."
-
#: ../../harddrake/ui.pm_.c:15
-msgid "/_About..."
-msgstr "/_Om..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
-msgstr "Modul"
+msgstr "Model"
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
-msgstr "Kort mem (DMA)"
+msgstr "Disk-model"
-#: ../../harddrake/ui.pm_.c:23
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
-msgstr "Annullér"
+msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI-kanal"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "Dette er den fysiske bus som enheden er tilsuttet (fx PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "modulet i GNU/Linux-kernen som håndterer denne enhed"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr "Medieklasse"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
-msgstr ""
+msgstr "Klasse af maskinenhed"
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Beskrivelse"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
-msgstr ""
+msgstr "Dette felt beskriver enheden"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
msgstr "Bus-identifikation"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
+"- PCI- og USB-enheder: dette viser producenten, enheden, underproducent og "
+"underenhed PCI/USB id'er"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
-msgstr "Sted på bussen"
+msgstr "Plads på bussen"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
+"kort\n"
+"- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
+"- scsi-enheder: scsi-bussen og scsi enheds-id'er"
-#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:31
msgid "Old device file"
-msgstr "Vęlg fil"
+msgstr "Gammel enhedsfil"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "gammel statisk enhedsnavn brugt i dev-pakke"
-#: ../../harddrake/ui.pm_.c:40
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:33
msgid "New devfs device"
-msgstr "Gateway enhed"
+msgstr "Ny devfs-enhed"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "Nyt dynamisk enhedsnavn genereret af den kųrende kernes devfs"
-#: ../../harddrake/ui.pm_.c:42
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
-msgstr "2 knapper"
+msgstr "Antal knapper"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
+msgstr "navnet på producenten af enheden"
+
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Afslut"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hjęlp"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Hjęlp..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "Harddrake hjęlp"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
+"Beskrivelse af felterne:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_Om..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "Om Harddrake"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Dette er HardDrake, et Mandrake-vęrktųj for konfigurering af maskinel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Forfatter:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Konfigurér modul"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
msgstr "Informationer"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr "Kųr konfigurationsvęrktųj"
-#: ../../harddrake/ui.pm_.c:158
-msgid "Configure module"
-msgstr "Konfigurér modul"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr "Sųgning udfųres"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Vent venligst"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr "primęr"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
msgstr "sekundęr"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr "Du kan konfigurere hver parameter for modulet her."
+
+#: ../../harddrake/ui.pm_.c:192
#, c-format
msgid "Running \"%s\" ..."
msgstr "Kųrer \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr "Om Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Automatisk detektion"
-#: ../../harddrake/ui.pm_.c:280
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
-msgstr ""
-"Dette er HardDrake, et Mandrake-vęrktųj for konfigurering af maskinel.\n"
-"Version:"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Ukendt|generisk"
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
-msgstr "Forfatter:"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ukendt|CPH05X (bt878) [mange leverandųrer]"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr "Harddrake hjęlp"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ukendt|CPH06X (bt878) [mange leverandųrer]"
-#: ../../harddrake/ui.pm_.c:287
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"Description of the fields:\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
+"For de fleste moderne tv-kort vil bttv-modulet fra GNU/Linux-kernen blot "
+"automatisk finde de rette parametre.\n"
+"Hvis dit kort ikke findes korrekt, kan du gennemtvinge den rette tuner og "
+"korttyper her. Bare vęlg dit tv-korts parametre om nųdvendigt"
+
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Kortmodel:"
+
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Tuner-type:"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "Antal fangningsbuffere:"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Antal fangningsbuffere for mmap-fangning"
+
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "PLL-opsętning:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Radio-understųttelse:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "aktivér radio-understųttelse"
#: ../../help.pm_.c:13
msgid ""
@@ -4219,7 +4447,7 @@ msgstr ""
"Klik på 'Annulér' for at anullere denne handling uden at tabe nogen data og "
"partitioner der er tilstede på dette diskdrev."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4230,7 +4458,7 @@ msgstr ""
"mangler), dette betyder normalt at din opstartsdiskette ikke stemmer overens "
"med installationsmediet (lav en nyere opstartsdiskette)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Du skal også formatere %s"
@@ -4259,20 +4487,20 @@ msgstr ""
"\n"
"Ųnsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domęne"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Indsęt en tom diskette i diskette-drev %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4280,7 +4508,7 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fejl ved lęsning af filen %s"
@@ -4319,7 +4547,7 @@ msgstr ""
"\n"
"Fortsęt alligevel?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Du skal have en FAT-partition monteret under /boot/efi"
@@ -4496,12 +4724,12 @@ msgstr ""
"pęn måde.\n"
"Fortsęt på eget ansvar!"
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikér monterings-sti %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4513,12 +4741,12 @@ msgstr ""
"Tjek cdrom'en på en fęrdiginstalleret maskine ved brug af \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Intet tilgęngeligt diskettedrev"
@@ -4528,7 +4756,7 @@ msgstr "Intet tilgęngeligt diskettedrev"
msgid "Entering step `%s'\n"
msgstr "Går til trin `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4540,79 +4768,79 @@ msgstr ""
"i stedet\n"
"Dette gųres ved at trykke 'F1' ved opstart fra cdrommen, og så skrive 'text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Installationsmetode"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Vęlg en af de fųlgende installations-måder:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Total stųrrelse: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Dårlig pakke"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Navn: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Stųrrelse: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Vigtighed: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Du kan ikke vęlge denne pakke, da der ikke er nok plads tilbage til at "
"installere den"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "De fųlgende pakker vil blive installeret"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "De fųlgende pakker vil blive afinstalleret"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Du kan ikke vęlge/fravęlge denne pakke"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dette er en nųdvendig pakke, den kan ikke vęlges fra"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Du kan ikke fravęlge denne pakke. Den er allerede installeret"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4620,74 +4848,74 @@ msgstr ""
"Denne pakke skal opgraderes\n"
"Er du sikker på at du vil fravęlge den?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Du kan ikke fravęlge denne pakke. Den skal opgraderes"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Vis automatisk valgte pakker"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installér"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Indlęs/gem på diskette"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Opdaterer pakkevalg"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimal installation"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Vęlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Installerer"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Beregnes"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Resterende tid "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Vent venligst, forbereder installationen"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakker"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installerer pakke %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptér"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Nęgt"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4702,17 +4930,17 @@ msgstr ""
"gjort\n"
"Hvis du ikke har den så tryk på Annullér, så undgås installation fra denne cd"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Fortsęt alligevel?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -4916,8 +5144,8 @@ msgstr ""
"\n"
"1. Licensaftale\n"
"\n"
-"Lęs venligst dette dokument. Dette dokument er en licensaftale mellem dig "
-"og MandrakeSoft S.A., som gęlder til disse programmelprodukter. Ved at "
+"Lęs venligst dette dokument. Dette dokument er en licensaftale mellem dig og "
+"MandrakeSoft S.A., som gęlder til disse programmelprodukter. Ved at "
"installere, kopiere eller bruge disse programmelprodukter accepterer du "
"indirekte og fuldt ud denne licensaftale med dens betingelser og regler. "
"Hvis du er uenig i nogensomhelst del af denne licens, mister du retten til "
@@ -4996,104 +5224,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr "Er du sikker på at du afviser licensen?"
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Vęlg dit tastaturlayout."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Her er den komplette liste over tilgęngelige tastaturer"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Hvilken installations-klasse ųnsker du?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installér/Opdatér"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Er dette en nyinstallation eller en opdatering?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Anbefalet"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Opgradering"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Opgradér kun pakker"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Vęlg muse-type."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Muse-port"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vęlg hvilken seriel port din mus er forbundet til."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulering af knapper"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulering af knap 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulering af knap 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurerer PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Konfigurerer IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ingen ledige partitioner"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Skanner partitioner for at finde monteringspunkter"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Vęlg monterings-stierne"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5110,14 +5338,14 @@ msgstr ""
"\n"
"Er du indforstået med at ųdelęgge alle partitionerne?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake kunne ikke lęse partitionstabellen korrekt. Fortsęt på eget ansvar!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5125,67 +5353,69 @@ msgstr ""
"Det er ikke plads for 1 MB bootstrap! Installationen vil fortsętte, men for "
"at starte dit system op, skal du lave en bootstrap partition i DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Ingen rodpartition fundet til opgradering"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Rod-partition"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Hvilken partition indeholder systemets rod-partition (/)?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ęndringerne i partitionstabellen"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Vęlg partitioner der skal formateres"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Led efter beskadigede blokke?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formaterer partitioner"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Opretter og formaterer fil %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"Kontrol af filsystem %s mislykkedes. Ųnsker du at reparere fejlene (bemęrk, "
+"du kan miste data)"
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ikke nok swap-plads til at gennemfųre installationen, tilfųj mere"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Leder efter tilgęngelige pakker og genopbygger rpm-database..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Leder efter tilgęngelige pakker"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Leder efter pakker som skal opgraderes"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
msgid "Looking at packages already installed..."
msgstr "Leder efter pakker der allerede er installeret..."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Leder efter pakker som skal opgraderes"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5194,7 +5424,7 @@ msgstr ""
"Dit system har ikke nok plads tilbage til en installation eller opgradering "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5202,35 +5432,35 @@ msgstr ""
"Vęlg indlęs eller gem pakkevalg på diskette.\n"
"Formatet er det samme som for auto_install-genererede disketter."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Indlęs fra diskette"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Indlęser fra diskette"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Valg af pakker"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Indsęt en diskette med pakkevalget"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Gem på diskette"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Valgt stųrrelse er stųrre end tilgęngelig plads"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5238,15 +5468,15 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vęlg den minimale installation du ųnsker"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
@@ -5265,11 +5495,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5278,21 +5508,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Indsęt opstartsdisketten i diskette-drevet %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Indsęt Opdater moduler-disketten i drev %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5360,7 +5590,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5379,176 +5609,196 @@ msgstr ""
"\n"
"Ųnsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontakter Mandrake Linux netsted for at hente listen over tilgęngelige spejle"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Vęlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontakter spejlet for at hente listen af tilgęngelige pakker"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjęlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Kųr \"sndconfig\" efter installation for at konfigurere dit lydkort"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Intet lydkort genkendt. Prųv at kųre \"harddrake\" efter installation"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr "Windows PDC"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Windows Domain"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sęt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Dette kodeord er for nemt at gętte (det skal mindst vęre på %d tegn)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP grundlęggende dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS-domęne"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS-server"
#: ../../install_steps_interactive.pm_.c:1138
-msgid "Authentication Windows PDC"
-msgstr "Autentificering Windows PDC"
-
-#: ../../install_steps_interactive.pm_.c:1139
-msgid "Windows Domain"
-msgstr "Windows Domain"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+"For at dette kan virke på en W2K PDC skal du nok have administratoren til "
+"atkųre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add og genstarte serveren.\n"
+"Du skal også have et brugernavn og en adgangskode for at maskinen kan "
+"tilsluttes Windows(TM)-domęnet.\n"
+"Hvis netvęrket ikke er aktiveret vil Drakx prųve at slutte til domęnet efter "
+"trinnet med opsętning af netvęrk.\n"
+"Skulle denne opsętning fejle af nogen årsag, og domęneautentifikation ikke "
+"virke, så kųr 'smbpasswd -j DOMAIN -U USER%PASSWORD' med dit Windows(tm) "
+"domęne og administrators brugernavn/adgangskode, efter genstart af "
+"systemet.\n"
+"Kommandoen 'wbinfo -t' vil afprųve om dine hemmelige autentifikationsdata er "
+"i orden."
#: ../../install_steps_interactive.pm_.c:1140
-msgid "PDC Server Name"
-msgstr "Navn på PDC-server"
+msgid "Authentication Windows Domain"
+msgstr "Autentifikations Windowsdomęne"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
-msgstr ""
-"For at få dette til at virke på en W2K PDC skal du nok have administratoren "
-"til at kųre: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
-"everyone /add - og genstarte serveren"
+msgid "Domain Admin User Name"
+msgstr "Brugernavn for domęneadministrator"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
+msgstr "Adgangskode for domęneadministrator"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5576,19 +5826,19 @@ msgstr ""
"Hvis du ųnsker at lave en opstartsdiskette til dit system, indsęt en "
"diskette i dit fųrste diskettedrev og tryk 'Ok'."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Fųrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5613,7 +5863,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5627,28 +5877,28 @@ msgstr ""
"oprettelse af en opstartsdiskette på en 1.44 Mb diskette vil formentlig\n"
"mislykkes, fordi XFS kręver en meget stor driver)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Der er desvęrre ikke noget tilgęngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Vęlg det diskette-drev, du vil benytte til at lave boot-disketten"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsęt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
-msgstr "Oprette opstartsdiskette"
+msgstr "Opretter opstartsdiskette..."
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
-msgstr "Forbereder opstarter"
+msgstr "Forbereder opstarter..."
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5659,11 +5909,11 @@ msgstr ""
"opstartsindlęseren vil ikke virke for dig. Installationen vil fortsętte, men "
"du skal bruge BootX for at starte din maskine."
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Ųnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5672,15 +5922,15 @@ msgstr ""
"forsųg at gennemtvinge installation selv om dette kan ųdelęgge den fųrste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den fųlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5697,17 +5947,17 @@ msgstr ""
" Skriv så: shut-down\n"
"Ved nęste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Indsęt en tom diskette i drev %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5717,7 +5967,7 @@ msgstr ""
"\n"
"Er du sikker på du ųnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5749,16 +5999,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:1345
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1347
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:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5772,15 +6021,15 @@ msgstr ""
"\n"
"Du foretrękker måske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -5807,24 +6056,35 @@ msgstr "konsolhjęlper mangler"
msgid "Choose a file"
msgstr "Vęlg en fil"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Avanceret"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Basal"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Forrige"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Nęste"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Dårligt valg, prųv igen\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Dit valg? (standard %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5833,35 +6093,35 @@ msgstr ""
"Indgange som du skal udfylde:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Dit valg? (0/1, standard '%s') "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Knap '%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Ųnsker du at klikke på denne knap?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr " indtast 'void' for tom indgang"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Dit valg? (standard '%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Der er mange ting at vęlge imellem (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5871,7 +6131,7 @@ msgstr ""
"Eller tryk retur for at fortsętte.\n"
"Dit valg? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5880,327 +6140,379 @@ msgstr ""
"=> Bemęrk, en etikette ęndredes:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Indsend igen"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tjekkisk (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Tysk"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spansk"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Fransk"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Russisk"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Svensk"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Britisk"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Amerikansk"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albansk"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armensk (gammel)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armensk (skrivemaskine)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armensk (fonetisk)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidiansk (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgisk"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "aktivér"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bulgarsk (fonetisk)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgarsk (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliansk (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estisk"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Hviderussisk"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Schweizisk (Tysk layout)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Schweizisk (Fransk layout)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tjekkisk (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Tysk (ingen dųde taster)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Dansk"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norsk)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (svensk)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estisk"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgisk (russisk layout)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgisk (Latin layout)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Gręsk"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungarsk"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroatisk"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelsk"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelsk (Fonetisk)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iransk"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italiensk"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japansk 106 taster"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreansk tastatur"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latinamerikansk"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Lettisk"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litauisk AZERTY (gammel)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litauisk AZERTY (ny)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauisk \"talrękke\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauisk \"fonetisk\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Lettisk"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedonisk"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbisk (kyrillisk)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollandsk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polsk (polsk layout)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugisisk"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Canadisk (Québec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Russisk (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Russisk (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Russisk (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovensk"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakisk (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakisk (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serbisk (kyrillisk)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thailandsk"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajik tastatur"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkisk (traditionel \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkisk (moderne \"Q\" model)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrainsk"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Amerikansk (internaltionalt)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamesisk \"talrękke\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslavisk (latinsk)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Hųjre alt-tast"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Begge taster samtidigt"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol- og skiftetaster samtidigt"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock-tast"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl- og alt-taster samtidigt"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt og Shift-taster samtidigt"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "'Menu'-tast"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Venstre Windows-tast"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Hųjre Windows-tast"
@@ -6209,35 +6521,35 @@ msgstr "Hųjre Windows-tast"
msgid "Circular mounts %s\n"
msgstr "Cirkulęre monteringer %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver fųrst\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
msgid "a number"
msgstr "et tal"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "%d kommaseparerede tal"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr "%d kommaseparerede strenge"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr "kommaseparerede tal"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
msgstr "kommaseparerede strenge"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"PCMCIA-understųttelse eksisterer ikke lęngere for 2.2-kerner. Brug en 2.4-"
"kerne."
@@ -6342,51 +6654,43 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PÅ HJULET!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Afslut"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Nęste ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Forrige"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Er dette korrekt?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Udvid trę"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Sammenfold trę"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
@@ -6409,6 +6713,10 @@ 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
msgid "use dhcp"
msgstr "brug dhcp"
@@ -6436,7 +6744,7 @@ msgstr ""
"Der blev ikke fundet nogen ethernet netvęrksadapter på dit system.\n"
"Kan ikke sętte denne forbindelsetype op."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Vęlg netvęrksgręnsesnit"
@@ -6451,7 +6759,7 @@ msgstr ""
msgid "no network card found"
msgstr "kunne ikke finde noget netkort"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Konfigurerer netvęrk"
@@ -6467,7 +6775,7 @@ msgstr ""
"Dit vęrtsnavn bųr vęre et fuldt kvalificeret vęrtsnavn,\n"
"fx 'minpc.mitfirma.dk'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Vęrtsnavn"
@@ -6495,7 +6803,7 @@ msgstr "Hvad slags type er din ISDN-forbindelse?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6622,43 +6930,43 @@ msgstr "Angiv hvilken seriel port dit modem er forbundet til."
msgid "Dialup options"
msgstr "Opkaldsindstillinger"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Navn på forbindelsen"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Brugernavn"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skript-baseret"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-baseret"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domęnenavn"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Fųrste DNS-server (valgfri)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
@@ -6772,13 +7080,13 @@ msgstr "Vęlg profilen der skal konfigureres"
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
@@ -6894,7 +7202,7 @@ msgstr ""
"Afprųv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prųve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6906,7 +7214,7 @@ msgstr ""
"Ved kun at trykke på OK beholder du den nuvęrende konfiguration.\n"
"Ęndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6915,42 +7223,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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvęrksenheden %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Start ved opstart"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6962,40 +7270,40 @@ msgstr ""
"f.eks. minpc.mitfirma.dk. Hvis du ikke har nogen ekstra navne-servere,\n"
"så lad navne-server-felterne vęre blanke."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvęrt (proxy)"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Fųlg id for netvęrkskort (nyttigt for bęrbare)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy skal vęre http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy skal vęre ftp://..."
@@ -7007,7 +7315,7 @@ msgstr "Internet-konfiguration"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ųnsker du at forsųge at skabe forbindelse til Internettet nu?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Tester din forbindelse..."
@@ -7035,43 +7343,43 @@ msgstr "Forbindelses-konfiguration"
msgid "Please fill or check the field below"
msgstr "Udfyld eller markér feltet nedenunder"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kort IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kort mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kort IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kort IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kort IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Dit personlige telefonnummer"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Navn på udbyder (f.eks. udbyder.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Udbyders telefonnummer"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Udbyder DNS 1 (valgfri)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Udbyder DNS 2 (valgfri)"
@@ -7079,28 +7387,28 @@ msgstr "Udbyder DNS 2 (valgfri)"
msgid "Choose your country"
msgstr "Vęlg dit land"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Opringningsmåde"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Opkoblingshastighed"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Opkoblingens tidsudlųb (i sekunder)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Konto-login (brugernavn)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Kodeord for konto"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr "Storbritannien"
@@ -7136,7 +7444,7 @@ msgstr "Fejl i sikkerhedskopien"
msgid "Error writing to file %s"
msgstr "Fejl ved skrivning til fil %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7182,7 +7490,7 @@ msgstr "LPD - Line Printer Dęmon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7210,7 +7518,7 @@ msgstr "Ekstern printer"
msgid "Printer on remote CUPS server"
msgstr "Printer på ekstern CUPS server"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Printer på ekstern lpd server"
@@ -7226,7 +7534,7 @@ msgstr "Printer på SMB/Windows 95/98/NT server"
msgid "Printer on NetWare server"
msgstr "Printer på en NetWare server"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Indtast en printerenheds-URI"
@@ -7234,110 +7542,110 @@ msgstr "Indtast en printerenheds-URI"
msgid "Pipe job into a command"
msgstr "kanalisér opgave ind i kommando"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Ukendt model"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Lokale printere"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Eksterne printere"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " på parallelport \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB printer \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funktions-enhed på parallel port \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", multi-funktions-enhed på USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funktions-enhed på HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", multi-funktions-enhed"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", skriver til %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "på LPD-server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " på LPD-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP vęrt \"%s\", port %s"
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "på Windows-server \"%s\", deling \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " på Windows-server \"%s\", deling \"%s\""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "på Novell-server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " på Novell-server \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", med kommando %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Rå printer (ingen driver)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(på %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(på denne maskine)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "På CUPS-server '%s'"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Forvalgt)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Vęlg printer-forbindelse"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Hvordan er printeren tilsluttet?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7347,15 +7655,20 @@ msgstr ""
"Eksterne CUPS-servere behųver du ikke at konfigurere her: \n"
"disse printere vil automatisk blive fundet."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+"Automatisk identifikation af printere (Lokal, TCP/Socket og SMB-skrivere)"
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS-Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Angiv CUPS server"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7373,7 +7686,7 @@ msgstr ""
"eventuelle portnummer for at få printerinformation fra serveren, ellers kan "
"du lade disse felter vęre blanke."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7389,32 +7702,32 @@ msgstr ""
"CUPS-konfiguration' og redigér din fil /etc/cups/cupsd.conf selv. Glem ikke "
"at genstarte CUPS bagefter. (kommando: 'service cups restart')."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adressen bųr se ud som 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Port-nummeret bųr vęre et heltal!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-serverens IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Automatisk CUPS-konfiguration"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Tilfųj en ny printer"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7436,49 +7749,100 @@ msgstr ""
"giver dig adgang til alle tilgęngelige printerdrivere, drivermuligheder og "
"opkoblingstyper for printere."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Lokal printer"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Velkommen til guiden for printerinstallation\n"
+"\n"
+"Denne guide lader dig installere printere sluttet til denne maskine, direkte "
+"til netvęrket eller til en ekstern Windows-maskine.\n"
+"\n"
+"Hvis du har printere sluttet til denne maskine, så sęt dem på nu så de kan "
+"identificeres automatisk. Netvęrksprinterne og Windows-maskinerne skal også "
+"vęre tilsluttede og tęndte.\n"
+"\n"
+"Bemęrk at det tager lęngere tid at identificere netvęrksprintere end at "
+"identificere lokalt tilsluttede printere. Hvis du ųnsker at det skal gå "
+"hurtigere at identificere printere kan du deaktivere identifikation af "
+"netvęrksprintere og/eller printere sluttede til Windows-maskiner.\n"
+"\n"
+"Klik på \"Nęste\" når du er klar og på \"Afbryd\" hvis du ikke vil "
+"installere printere nu."
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
-"Velkommen til vejlederen for printeropsętning\n"
+"Velkommen til guiden for printerinstallation\n"
"\n"
-"Denne vejleder vil hjęlpe dig med at installere dine printere tilsluttet "
-"denne maskine.\n"
+"Denne guide lader dig installere printere sluttet til denne maskine eller "
+"direkte til netvęrket.\n"
"\n"
-"Tilslut dine printere til maskinen og tęnd dem. Klik på \"Nęste\" når du er "
-"klar, eller på \"Annullér\" hvis du ikke vil opsętte dine printere nu.\n"
+"Hvis du har printere sluttet til denne maskine, så sęt dem på nu så de kan "
+"identificeres automatisk. Netvęrksprinterne og Windows-maskinerne skal også "
+"vęre tilsluttede og tęndte.\n"
"\n"
-"Bemęrk at nogen maskiner kan gå ned under den automatiske sųgning efter "
-"printere; slå 'Auto-opdagelse af printere' fra for at lave en printer "
-"installation uden auto-sųgning. Brug printerdrakes 'Ekspert-udgave' hvis du "
-"ųnsker at opsętte udskrift på en ekstern printer og Printerdrake ikke lister "
-"denne automatisk."
+"Bemęrk at det tager lęngere tid at identificere netvęrksprintere end at "
+"identificere lokalt tilsluttede printere. Hvis du ųnsker at det skal gå "
+"hurtigere at identificere printere kan du deaktivere identifikation af "
+"netvęrksprintere.\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
-msgstr "Auto-opdagelse af printere"
+#: ../../printerdrake.pm_.c:213
+msgid "Auto-detect printers connected to this machine"
+msgstr "Auto-opdagelse af printere tilsluttet denne maskine"
+
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Auto-opdagelse af printere tilsluttet direkte til det lokale netvęrk"
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Auto-opdagelse af printere tilsluttet maskiner der kųre Microsoft Windows"
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Lokal printer"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7501,57 +7865,49 @@ msgstr ""
"ųnsker at ęndre på standard-indstillingerne (papirbakke, printkvalitet ...), "
"så vęlg 'Printer' i 'Udstyr'-afsnittet i Mandrake Kontrolcentret."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Printer auto-detection"
msgstr "Auto-opdagelse af printere"
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake er i stand til at automatisk opdage dine lokalt forbundne "
-"parallelle og USB-printere for dig, men bemęrk at på nogen systemer KAN DEN "
-"AUTOMATISKE OPDAGELSE FRYSE DIT SYSTEM OG ENDOG ŲDELĘGGE DINE FILSYSTEMER! "
-"Så gųr det på EGET ANSVAR!\n"
-"\n"
-"Ųnsker du virkeligt at få dine printere automatisk opdaget?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
-msgstr "Udfųr automatisk detektion"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Opsęt printer manuelt"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", netvęrksprinter \"%s\", port %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Afprųv porte"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", printer \"%s\" på SMB/Windows-server \"%s\""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Fandt %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer på parallel port \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-printer \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netvęrksprinter '%s', port %s"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Printer '%s' på SMB/Windows server '%s'"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7563,35 +7919,19 @@ msgstr ""
"dev/lp1 ..., svarende til LPT1:, LPT2: ..., fųrste USB-printer: /dev/usb/"
"lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Du skal indtaste en enhed eller et filnavn!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Ingen lokal printer fundet!\n"
-"\n"
-
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Netvęrksprintere kan kun installeres efter installeringen. Vęlg 'Udstyr' og "
-"dernęst 'Printer' i Mandrake kontrolcentret."
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "Ingen printer fundet!"
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"For at installere netvęrksprintere skal du klikke på 'Annullér', skifte til "
-"'Ekspert-version' og klikke på 'Tilfųj en ny printer' igen."
+#: ../../printerdrake.pm_.c:485
+msgid "Available printers"
+msgstr "Tilgęngelige printer"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7599,7 +7939,7 @@ msgstr ""
"Den fųlgende printer blev opdaget automatisk. Hvis det ikke er den du ųnsker "
"at opsętte så indtast et enhedsnavn/filnavn på inddatalinjen"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7607,7 +7947,7 @@ msgstr ""
"Her er en liste over alle automatisk opdagede printere. Vęlg den printer du "
"ųnsker at opsętte eller indtast et enhedsnavn/filnavn på inddatalinjen"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7619,7 +7959,7 @@ msgstr ""
"eller hvis du foretrękker en tilpasset printerkonfiguration, så slå 'Manuel "
"konfiguration' til."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7632,7 +7972,7 @@ msgstr ""
"foretrękker en tilpasset printerkonfiguration, så slå 'Manuel konfiguration' "
"til."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7640,11 +7980,11 @@ msgstr ""
"Angiv hvilken port din printer er forbundet til eller indtast et enhedsnavn/"
"filnavn på inddatalinjen"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Angiv hvilken port din printer er forbundet til."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7652,65 +7992,19 @@ msgstr ""
"(parallelporte: /dev/lp0, /dev/lp1 ..., svarende til LPT1:, LPT2: ..., "
"fųrste USB-printer: /dev/usb/lp0, 2. USB-printer: /dev/usb/lp1 ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Du skal vęlge eller indtaste en printer/enhed!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Manuel konfiguration"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 med skanner)?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Installerer HPOJ-pakke..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Tjekker enhed og konfigurerer HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Installerer SANE-pakke..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Installerer pakker..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Skanner på din HP multi-funktionsenhed"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Skanner på din HP multi-funktionsenhed"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Gųr printerport tilgęngelig for CUPS ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Lęser database over printere ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Parametre til ekstern lpd"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7718,27 +8012,46 @@ msgstr ""
"For at bruge en ekstern printer, skal du opgive vęrtsnavnet\n"
"for printerserveren og navnet på printeren på denne server."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Eksternt vęrtsnavn"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Eksternt printernavn"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Eksternt vęrtsnavn mangler"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Det eksterne vęrtsnavn mangler!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "Fandt model: %s %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Scanning network..."
+msgstr "Skanner netvęrk ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", printer \"%s\" på server \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Printer \"%s\" på server \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT)-printer indstillinger"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7750,35 +8063,47 @@ msgstr ""
"IP-adressen på printerserveren, så vel som delenavnet for printeren du vil "
"bruge samt nųdvendig information om brugernavn, adgangskode og arbejdsgruppe."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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 ""
+" Hvis den ųnskede printer blev fundet, så vęlg den fra listen og tilfųj "
+"dernęst brugernavn, adgangskode og/eller arbejdsgruppe om nųdvendigt."
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "SMB-servervęrt"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB-serverens IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Dele-navn"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Arbejdsgruppe"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+msgid "Auto-detected"
+msgstr "Auto-detekteret"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Enten servernavnet eller serverens IP skal angives!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Samba-delenavn mangler!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "SIKKERHEDSADVARSEL!"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7821,7 +8146,7 @@ msgstr ""
"Opsęt dernęst udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7833,7 +8158,7 @@ msgstr ""
"protokollen, og opsęt udskrift fra denne maskine med '%s'-opkoblingstypen i "
"Printerdrake.\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7845,11 +8170,11 @@ msgstr ""
"\n"
"Ųnsker du virkelig at fortsętte med at opsętte din printer som du gųr nu?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare printer-parametre"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7861,50 +8186,69 @@ msgstr ""
"navnet!) såvel som kųnavnet for den printer du vil benytte samt om "
"nųdvendigt et brugernavn og en adgangskode."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Printer-server"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Printerkų-navn"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP-servernavn mangler!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP-kųnavn mangler!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", vęrt \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "Vęrt \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/Sokkel-printer-parametre"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-"For at skrive til en TCP eller sokkel-printer skal du angive vęrtsnavnet på "
-"printeren, og eventuelt portnummer. På HP JetDirect-servere er portnummeret "
-"normalt 9100, på andre servere varierer det. Tjek manualen for dit udstyr."
+"Vęlg en af de fundne printere fra listen eller angiv vęrtsnavnet eller IP-"
+"adressen og eventuelt portnummer (standard er 9100) i indtastningsfelterne."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "printer-vęrtsnavn"
+#: ../../printerdrake.pm_.c:978
+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 ""
+"For at skrive til en TCP eller sokkel-printer skal du angive vęrtsnavnet "
+"eller IP-adressen på printeren, og eventuelt portnummer (standard er 9100). "
+"På HP JetDirect-servere er portnummeret normalt 9100, på andre servere "
+"varierer det. Tjek manualen for dit udstyr."
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr "printer-vęrtsnavn mangler!"
+#: ../../printerdrake.pm_.c:983
+msgid "Printer host name or IP missing!"
+msgstr "Vęrtsnavn eller IP-adresse på printer mangler!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+msgid "Printer host name or IP"
+msgstr "Vęrtsnavn eller IP-adresse på printer mangler!"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Printer-enheds URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7914,11 +8258,11 @@ msgstr ""
"CUPS- eller Foomatic-standarden. Bemęrk at ikke alle typer URIer "
"understųttes af alle kų-behandlere."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "En korrekt URI skal opgives!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7927,23 +8271,27 @@ msgstr ""
"Beskrivelsen og lokaliseringsfelterne behųver ikke \n"
"udfyldes. De er kommentarer til brugerne."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Navn på printer"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Placering"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Lęser database over printere ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Forbereder printerdatabase: ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Din printermodel"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7968,24 +8316,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Modellen er korrekt"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Vęlg model manuelt"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Valg af printermodel"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Hvilken printermodel har du?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8001,7 +8349,7 @@ msgstr ""
"når markųren står på en forkert model, eller\n"
"på 'Rå printer'."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8009,11 +8357,11 @@ msgstr ""
"Hvis din printer ikke er listet, så vęlg en kompatibel (se printermanual) "
"eller en lignende printer."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI konfiguration af winprinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8029,11 +8377,11 @@ msgstr ""
"parallelle port fųr du udskriver en prųveside. Ellers vil printeren ikke "
"virke. Din opsętning af forbindelsestype vil blive ignoreret af driveren."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguration"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8045,7 +8393,7 @@ msgstr ""
"din printer til en lokal port eller konfigurér den på den maskine, den er "
"forbundet til."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8067,7 +8415,7 @@ msgstr ""
"'lexmarkmaintain', og justér opsętningen af justeringen af hovedet med dette "
"program."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8083,22 +8431,22 @@ msgstr ""
"enhed, ekstra bakker) er sat rigtigt. Bemęrk at en meget god "
"udskriftskvalitet kan gųre udskriften betydeligt langsommere."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valg %s skal vęre et helt tal!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Valg %s skal vęre et tal!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Valg %s er udenfor område!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8107,11 +8455,11 @@ msgstr ""
"Ųnsker du fremover at bruge printeren \"%s\"\n"
"som standard?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Testsider"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8123,39 +8471,39 @@ msgstr ""
"laserprintere med for lidt hukommelse vil den måske ikke skrives ud i det "
"hele taget. Som regel vil det vęre nok at udskrive standard-testsiden."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Ingen testsider"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Udskriv"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standard testside"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternativ testside (letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternativ testside (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Fototestside"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Udskriv ikke nogen testsider"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Udskriver testsider..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8170,7 +8518,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8178,15 +8526,15 @@ msgstr ""
"Testsider er sendt til printeren.\n"
"Det kan tage lidt tid fųr printeren starter.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Fungerer det korrekt?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Rå printer"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8199,7 +8547,7 @@ msgstr ""
"'kprinter <fil>'. De grafiske vęrktųjer lader dig vęlge printeren og ęndre "
"indstillingerne på en nem måde.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8209,8 +8557,8 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vęre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8223,19 +8571,19 @@ msgstr ""
"bestemt udskriftsjob. Tilfųj blot de ųnskede indstillinger til "
"kommandolinjen, fx '%s <fil>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#, 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 ""
"Hvilke muligheder der er for den aktuelle printer kan du enten lęse på "
-"listen vist nedenfor, eller klikke på knappen 'liste med printermuligheder'%"
-"s.\n"
+"listen vist nedenfor, eller klikke på knappen 'liste med printermuligheder'%s"
+"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8243,7 +8591,7 @@ msgstr ""
"Her er en liste over tilgęngelige printmuligheder for den aktuelle printer:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8252,8 +8600,8 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8263,7 +8611,7 @@ msgstr ""
"udskriftsdialogerne i mange programmer, men lad vęre med at angive filnavnet "
"her, fordi filen der skal udskrives leveres af programmet.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8271,7 +8619,7 @@ msgstr ""
"For at få en liste af tilgęngelige muligheder for den aktuelle printer kan "
"du klikke på knappen 'Liste med printermuligheder'."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8280,7 +8628,7 @@ msgstr ""
"For at udskrive en fil fra kommandolinjen (terminalvinduet) brug da "
"kommandoen '%s <fil>' eller '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8296,7 +8644,7 @@ msgstr ""
"ųjeblikkeligt når du klikker på den. Dette er fx nyttigt hvis papiret "
"krųller sammen.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8309,45 +8657,45 @@ msgstr ""
"for et bestemt udskriftsjob. Tilfųj blot de ųnskede indstillinger til "
"kommandolinjen, fx '%s <fil>'.\n"
-#: ../../printerdrake.pm_.c:1773
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2153
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Udskriver eller skanner på '%s'"
+msgstr "Udskriver/Skanner/Fotokort på '%s'"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr "Udskriver eller skanner på '%s'"
+msgstr "Udskriver/Skanner på '%s'"
-#: ../../printerdrake.pm_.c:1776
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2156
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Udskriver eller skanner på '%s'"
+msgstr "Udskriver/Adgang til fotokort på '%s'"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Udskriver på printeren '%s'"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Luk"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Liste med printermuligheder"
-#: ../../printerdrake.pm_.c:1802
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2182
+#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8355,18 +8703,18 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne skanne. "
-"Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at angive "
-"skanneren hvis du har mere end én) fra kommandolinjen eller med den grafiske "
-"gręnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP kan du også "
-"skanne ved at vęlge det passende punkt i menuen 'Filer/Hent'. Brug også 'man "
-"scanimage' og 'man sane-hp' på kommandolinjen for at få mere information\n"
+"Din multifunktionsenhed blev konfigureret automatisk til at kunne skanne. Nu "
+"kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at angive skanneren "
+"hvis du har mere end én) fra kommandolinjen eller med de grafiske "
+"gręnseflader 'xscanimage' eller 'xsane'. Hvis du bruger GIMP kan du også "
+"skanne ved at vęlge det rigtige punkt i menuen 'Filer/Hent'. Brug også 'man "
+"scanimage' på kommandolinjen for at få mere information\n"
"\n"
"Brug ikke \"scannerdrake\" på denne enhed!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8376,18 +8724,26 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
-
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+"Din printer blev konfigureret automatisk til at give dig adgang til fotokort-"
+"drevene fra din PC. Nu kan du få adgang til dine fotokort med det grafiske "
+"program 'MtoolsFM' (Menu: 'Programmer' -> 'Filvęrktųjer' -> 'Mtools "
+"Filadministration') eller kommandolinjevęrktųjet 'mtools' (indtast 'man "
+"mtools' på kommandolinjen for mere information). Du finder kortets filsystem "
+"under drevbogstavet 'p:', eller fųlgende drevbogstaver hvis du har mere end "
+"én HP-printer med fotokortdrev. I 'MtoolsFM' kan du skifte mellem "
+"drevbogstaver med feltet i de ųverste hųjre hjųrner af fillisterne."
+
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Lęser printerdata ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Overfųr printerkonfiguration"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8402,7 +8758,7 @@ msgstr ""
"opgaver.\n"
"Ikke alle kųer kan overfųres på grund af:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8410,7 +8766,7 @@ msgstr ""
"CUPS understųtter ikke printere på Novellservere eller printere som sender "
"dataene ind i en frit-formet kommando.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8418,11 +8774,11 @@ msgstr ""
"PDQ understųtter kun lokale printere, eksterne LPD printere, og Sokkel/TCP "
"printere.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD og LPRng understųtter ikke IPP printere.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8430,7 +8786,7 @@ msgstr ""
"Desuden kan kųer lavet med dette program eller \"foomatic -configure\" ikke "
"overflyttes."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8440,7 +8796,7 @@ msgstr ""
"Printere konfigureret med PPD-filerne, som producenten har lavet, eller med "
"CUPS egne drivere kan heller ikke overflyttes."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8450,15 +8806,15 @@ msgstr ""
"Vęlg printerene som du vil overflytte og klik\n"
"\"Overfųr\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Overfųr ikke printere"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Overfųr"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8469,11 +8825,11 @@ msgstr ""
"Klik \"Overfųr\" for at overskrive.\n"
"Du kan også give et nyt printernavn, eller overspringe denne printer."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Navn på printer bųr kun indeholde bogstaver, tal og understregen _"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8482,16 +8838,16 @@ msgstr ""
"Printeren \"%s\" eksisterer allerede,\n"
"ųnsker du virkelig at overskrive dens konfiguration?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nyt printernavn"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Overfųrer %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8500,29 +8856,29 @@ msgstr ""
"Du har overfųrt din tidligere standard-printer '%s', skal den også vęre "
"standard-printer under det nye printersystem %s?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Opfrisker printerdata ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Konfiguration af en ekstern printer"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Starter netvęrk ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Konfigurér netvęrket nu"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Netvęrksfunktionalitet ikke konfigureret"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8534,11 +8890,11 @@ msgstr ""
"fortsętte uden en netvęrkskonfiguration, vil du ikke kunne bruge printeren "
"som du konfigurerer nu. Hvordan ųnsker du at fortsętte?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Fortsęt med konfigurering af netvęrk"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8553,7 +8909,7 @@ msgstr ""
"'Forbindelse', og konfigurér derefter printeren også med Mandrake "
"Kontrolcenter, afsnittet om 'Maskinel'/'Printer'"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8562,24 +8918,24 @@ msgstr ""
"Netvęrksadgangen kųrte ikke og kunne ikke startes. Tjek din konfiguration og "
"dit udstyr. Prųv derefter at konfigurere din eksterne printer igen."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Genstarter printsystemet ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "hųj"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoid"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installerer et printersystem på sikkerhedsniveauet %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8604,11 +8960,11 @@ msgstr ""
"\n"
"Ųnsker du virkelig at konfigurere udskrivning på denne maskine?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Starter printsystemet ved opstart"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8628,63 +8984,63 @@ msgstr ""
"\n"
"Ųnsker du at have den automatiske opstart af printsystemet slået til igen?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Tjekker installeret programmel..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Fjerner LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Fjerner LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Vęlg printerkų-behandler"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvilket printersystem (spooler) ųnsker du at bruge?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurerer printer '%s'..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Installerer Foomatic..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Printer-muligheder"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Forbereder PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Konfigurerer programmer..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Vil du gerne konfigurere udskrivning?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Printsystem: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8696,7 +9052,7 @@ msgstr ""
"information om den; eller for at gųre en ekstern CUPS-printer tilgęngelig "
"for Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8706,33 +9062,29 @@ msgstr ""
"dens indstillinger, for at gųre den til standard-printer, eller for at se "
"information om den."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Opfrisk printerliste (for at vise alle tilgęngelige eksterne CUPS-printere)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Ęndr printsystemet"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normal udgave"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Afslut"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Ųnsker du at konfigurere en anden printer?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Ęndr printerkonfiguration"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8741,101 +9093,101 @@ msgstr ""
"Printer %s\n"
"Hvad ųnsker du at forandre på, på denne printer?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Gųr det!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Printeropkoblingstype"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Printernavn, beskrivelse, sted"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Printerproducent, model, driver"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Printerproducent, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Sęt printeren som standard-printer"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tilfųj denne printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Fjern denne printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Udskriver testsider"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Véd hvordan denne printer bruges"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Fjern printer"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Fjerner gammel printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Standard printer"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printeren '%s' er nu sat som standard-printer."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Tilfųjer printer til Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev tilfųjet til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Kunne ikke tilfųje printeren \"%s\" til Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Fjerner printer fra Star Office/OpenOffice.org.org"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printeren \"%s\" blev fjernet fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Kunne ikke fjerne printeren \"%s\" fra Star Office/OpenOffice.org.org."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ųnsker du virkelig at fjerne printeren \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Fjerner printer \"%s\"..."
@@ -8890,15 +9242,15 @@ msgstr ""
"Lad det vęre blankt hvis du ikke ųnsker en ftp-proxy"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url burde begynde med 'ftp:'"
+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"
"Leave it blank if you don't want login/passwd"
msgstr ""
-"Indtast brugernavn og adgangskode på proxy, hvis nųdvendigt.\n"
+"Indtast brugernavn og adgangskode på proxy, om nųdvendigt.\n"
"Lad det vęre blankt hvis du ikke ųnsker brugernavn/adgangskode"
#: ../../proxy.pm_.c:80
@@ -8940,43 +9292,6 @@ msgstr "mkraid fejlede (måske mangler raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Dette niveau skal bruges med omtanke. Det gųr dit system nemmere at bruge, "
-"men er meget sårbart: det må ikke bruges til en maskine der er i et netvęrk "
-"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
-"adgangskoder."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Med dette sikkerhedsniveau kan brug som server komme på tale.\n"
-"Sikkerheden er nu hųj nok til at systemet kan bruges som server som tillader "
-"forbindelser fra mange klienter. Bemęrk: hvis din maskine kun er en klient "
-"på internettet bųr du hellere vęlge et lavere niveau."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Avancerede muligheder"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Valg"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -9279,7 +9594,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "System"
@@ -9377,7 +9692,7 @@ msgid ""
msgstr ""
"Mandrake Linux 8.2 giver dig det bedste programmel til at få adgang til alt "
"hvad internettet har at tilbyde. Surf på nettet og se animationer med "
-"Mozilla og Konqueror, udveksl post og organiser dine personlige "
+"Mozilla og Konqueror, udveksl post og organisér dine personlige "
"informationer med Evolution og Kmail, og meget mere."
#: ../../share/advertising/03-graphic.pl_.c:9
@@ -9392,7 +9707,7 @@ msgid ""
msgstr ""
"Mandrake Linux 8.2 vil kunne presse din mulitimediemaskine til det yderste! "
"Brug det nyeste programmel til at afspille musik og lydfiler, redigér og "
-"organiser dine billeder eller foto, se tv, og videoer, og meget mere"
+"organisér dine billeder eller foto, se tv og videoer, og meget mere"
#: ../../share/advertising/04-develop.pl_.c:9
msgid "Development"
@@ -9408,7 +9723,7 @@ msgstr ""
"gcc-oversętteren og de bedste Åben Kildekode-udviklingsmiljųer"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolcenter"
@@ -9526,20 +9841,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log ud og tryk herefter på Ctrl-Alt-Bak"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log ind i %s igen for at aktivere ęndringerne"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9547,159 +9862,158 @@ msgstr ""
"Jeg kan ikke lęse din partitionstabel, den er for ųdelagt :(\n"
"Jeg vil forsųge mig med at slette de beskadigede partitioner"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Konfiguration af Mandrake Terminalserver"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
msgstr "Aktivér server"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
msgstr "Deaktivér server"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
msgstr "Start server"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
msgstr "Stop server"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr "Etherboot diskette/ISO"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr "Opstartsbilleder for netopstart"
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
msgstr "Tilfųj/slet brugere"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr "Tilfųj/slet klienter"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Hjęlp"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Start fra sdiskette"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr "Start fra ISO"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr "Opbyg hele kernen -->"
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr "Dette vil tage nogle få minutter."
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr "Ingen kerne valgt!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr "Byg enkel NIC -->"
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Ingen NIC valgt!"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr "Byg alle kerner -->"
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
msgstr "<-- Slet"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
msgstr "Slet alle NBI'er"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
msgstr "Tilfųj bruger -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr "<-- Slet bruger"
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr "Tilfųj klient -->"
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr "<-- Slet klient"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
msgstr "Konfigurér dhcpd..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr "Udskriv konfiguration"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
msgstr "Indsęt diskette:"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr "Kunne ikke få adgang til disketten!"
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr "Diskette kan fjernes nu"
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
msgstr "Intet tilgęngeligt diskettedrev!"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO-aftryk er %s"
-#: ../../standalone/drakTermServ_.c:964
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Noget gik galt!"
+msgstr "Noget gik galt! - er mkisofs installeret?"
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Skal oprette /etc/dhcpd.conf fųrst!"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Fejl!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Jeg kan ikke finde filen '%s' som jeg behųver."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Autoinstallationskonfigurering"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9725,11 +10039,11 @@ msgstr ""
"\n"
"Ųnsker du at fortsętte?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Konfiguration af automatiske skridt"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9737,11 +10051,11 @@ msgstr ""
"Vęlg for hvert skridt om det skal vęre som under installationen, eller "
"manuelt"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9753,12 +10067,12 @@ msgstr ""
"\n"
"Parametrene for autokonfigurationen kan ses i afsnittene til venstre"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Tillykke!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9766,19 +10080,32 @@ msgstr ""
"Disketten er blevet genereret.\n"
"Du kan nu gennemfųre installationen igen."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Autoinstallation"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Tilfųj et element"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Fjern det sidste element"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9788,7 +10115,7 @@ msgstr ""
" DrakBackup Rapport \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9800,7 +10127,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9812,49 +10139,124 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
-msgstr "total fremdrift"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+msgid "Total progess"
+msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"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-existerer, tage bort?\n"
+"\n"
+"Advarsel: Hvis du allerede har lavet denne proces behųver du formodentlig\n"
+" at fjerne posten fra authorized_keys på serveren."
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr "Det kan tage lidt tid at generere nųglerne."
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr "Fejl: Kan ikke starte %s."
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Overfųrsel klar.\n"
+"Du vil måske kontrollere at du kan logge ind på serveren med:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"uden at blive spurgt om en adgangskode."
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr "Det kan tage lidt tid at slette mediet."
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "brug bånd til sikkerhedskopieringen"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup aktiviteter via %s:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:880
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1289
+#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-"filliste sending via FTP: %s\n"
+"filliste sendt via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -9864,34 +10266,44 @@ msgstr ""
"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup aktiviteter via CD:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup aktiviteter via bånd:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Vęlg filerne eller katalogerne og klik på 'Tilfųj'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9899,26 +10311,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behųver.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Lav sikkerhedkopi af dine systemfiler. ( /etc kataloget)"
+#: ../../standalone/drakbackup_.c:1527
+msgid "Backup your System files. (/etc directory)"
+msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9926,85 +10338,129 @@ msgstr ""
"Med denne valgmulighed vil du vęre i stand til at kunne genskabe\n"
"enhver version af dit /etc katalog."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Markér alle brugere som du vil have med i din sikkerhedskopi."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlęser"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1700
msgid "Use network connection to backup"
-msgstr "Brug FTP forbindelse til sikkerhedskopiering"
+msgstr "Brug netvęrksforbindelse til sikkerhedskopiering"
+
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+"Opret/overfųr\n"
+"sikkerhedskopieringsnųgler for SSH"
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Overfųr \n"
+"Nu"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr "Nųglerne findes allerede"
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Indtast vęrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:1269
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Indtast kataloget hvori\n"
+"Indtast kataloget (eller modulet) hvori\n"
" sikkerhedskopien skal lęgges på denne maskine."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr "Behųver vęrtsnavn, brugernavn og adgangskode!"
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
-msgstr "Vęlg din cd-plads"
+#: ../../standalone/drakbackup_.c:1844
+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 ""
+"Vęlg cd/dvd-enhed.\n"
+"(Tryk Enter for at overfųre indstillinger til andre felter.\n"
+"Dette felt behųves ikke, det er kun et vęrktųj for at udfulde formularen.)"
+
+#: ../../standalone/drakbackup_.c:1849
+msgid "Please choose your CD/DVD media size"
+msgstr "Vęlg cd/dvd-mediastųrrelse"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+msgid "Please check for multisession CD"
+msgstr "Markér om du bruger en multisessions-cd"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Markér om du vil slette din CDRW fųr ny skrivning"
+#: ../../standalone/drakbackup_.c:1867
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Markér om du vil slette dit CDRW-medie (1. session"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Markér om du ųnsker at medtage\n"
-" installeringsopstart på din cd."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
+msgstr " Slet nu "
+
+#: ../../standalone/drakbackup_.c:1874
+msgid "Please check if you are using a DVDR device"
+msgstr "Markér om du bruger en CDRW-enhed"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Markér om du bruger en DVDRAM-enhed"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10012,21 +10468,32 @@ msgstr ""
"Indtast din CD-bręnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+msgid "No CD device defined!"
+msgstr "Ingen cd-enhed defineret!"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "brug bånd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1446
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1983
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Markér om du vil bruge den ikke-tilbagespolende enhed."
+
+#: ../../standalone/drakbackup_.c:1989
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Markér om du vil slette din CDRW fųr ny skrivning"
+msgstr "Markér om du vil slette dit bånd fųr sikkerhedskopi laves"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Markér om du vil udskyde dit bånd fųr sikkerhedskopi laves"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10034,57 +10501,55 @@ msgstr ""
"Indtast den maksimale stųrrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2066
msgid "Please enter the directory to save to:"
-msgstr "Indtast kataloget der skal gemmes:"
+msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Netvęrk"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2161
msgid "Tape"
-msgstr "Type"
+msgstr "Bånd"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "månedligt"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Brug dęmon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10092,7 +10557,7 @@ msgstr ""
"Vęlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10100,67 +10565,80 @@ msgstr ""
"Vęlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:1648
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2214
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 "Forsikr dig gerne at cron-dęmonen er med i dine tjenester."
+msgstr ""
+"Forsikr dig gerne om at cron-dęmonen er med i dine tjenester.\n"
+"Bemęrk at alle 'net'-medier også bruger disken for nęrvęrende."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Hvornår"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Vęlg hvor du ųnsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "på diskdrev"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "over netvęrk"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr "på cd-rom"
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr "på båndenhed"
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Vęlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Håndpluk bruger"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10168,7 +10646,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10176,7 +10654,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10184,7 +10662,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10192,7 +10670,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10201,45 +10679,57 @@ msgstr ""
"\n"
"- Gem til diskdrev på stien: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- Bręnd på CD"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:1978
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2526
+#, c-format
msgid " on device : %s"
-msgstr "Muse-enhed: %s\n"
+msgstr " på enhed: %s"
-#: ../../standalone/drakbackup_.c:1979
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
+#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
"\n"
-"- Gem via FTP på vęrt : %s\n"
+"- Gem på bånd på enhed: %s"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2532
+#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Gem via FTP på vęrt : %s\n"
+"- Gem via %s på vęrt: %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10248,7 +10738,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t på sti: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10256,19 +10746,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10277,41 +10767,39 @@ msgstr ""
"\n"
"- Dęmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvęrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvęrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
-msgstr "\t-Netvęrk via FTP.\n"
+msgstr "\t-Netvęrk via rsync.\n"
-#: ../../standalone/drakbackup_.c:2001
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
-msgstr "\t-Netvęrk via FTP.\n"
+msgstr "\t-Netvęrk via webdav.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik på Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10319,7 +10807,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10327,133 +10815,128 @@ msgstr ""
"Liste over data der er ųdelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne nęste gang."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er ųdelagte"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl på %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fųr:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Vęlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP forbindelse"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Sikker forbindelse"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Vęlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr "vęlg sti at genskabe (i stedet for / )"
+#: ../../standalone/drakbackup_.c:3168
+msgid "select path to restore (instead of /)"
+msgstr "vęlg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fųr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fųr genskabning."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Nęste"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10461,9 +10944,9 @@ msgstr ""
"Lav sikkerhedskopieringen fųr genskablesen af den...\n"
" eller efterse at stien til gemning er korrekt."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10471,15 +10954,13 @@ msgstr ""
" din rapport blev ikke sendt\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:2933
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3598
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "De fųlgende pakker vil blive installeret"
+msgstr "De fųlgende pakker vil blive installeret @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:2956
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10487,19 +10968,19 @@ msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Udvęlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Vęlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Vęlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10507,75 +10988,59 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik på Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Dataliste som skal medtages på cdrom."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Indtast hastighed på cd-bręnder"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Indtast navnet på enheden for din cd-bręnder (fx: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Markér om du ųnsker at medtage installeringsopstart på din cd."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10586,7 +11051,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10635,7 +11100,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10649,7 +11114,7 @@ msgstr ""
" sętte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10673,7 +11138,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10725,21 +11190,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10774,18 +11239,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10817,7 +11284,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10891,7 +11358,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10909,7 +11376,7 @@ msgstr ""
"fųr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10931,7 +11398,7 @@ msgstr ""
"Det er vigtigt at vęre forsigtig og ikke ęndre sikkerhedskopieringens\n"
"datafiler i hånden.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11004,85 +11471,118 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Installationen af %s mislykkedes. Fųlgende fejl opstod:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+"Drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Dette er frit programmel og må distribueres ifųlge vilkårene i GNU GPL.\n"
+"\n"
+"brug: drakbug [FLAG] [PROGRAMNAVN]\n"
+"\n"
+"Flag:\n"
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr " --help - vis denne hjęlpebesked.\n"
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr " --report - programmet bųr vęre et af Mandrakes vęrktųjer\n"
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr " --report - programmet bųr vęre et af Mandrakes vęrktųjer\n"
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake vęrktųj til fejlrapportering"
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr "Fųrstegangshjęlper"
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr "Synkroniseringsvęrktųj"
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr "Fritstående vęrktųjer"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
msgstr "Mandrake Online"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
msgstr "Menudrake"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
msgstr "Msek"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
msgstr "Ekstern kontrol"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr "Programmeladministration"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr "Migrationsvęrktųj for MS Windows"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
msgstr "Userdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
msgstr "Vejledere til konfiguration"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
msgstr "Applikation:"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr "Pakke: "
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr "Kerne:"
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
msgstr "Udgave: "
-#: ../../standalone/drakbug_.c:87
-#, fuzzy
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11101,45 +11601,44 @@ msgstr ""
"vil blive overfųrt til den server\n"
"\n"
-#: ../../standalone/drakbug_.c:101
-msgid "Not installed"
-msgstr "Ikke installeret"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "Ikke installeret"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../standalone/drakbug_.c:129
-#, fuzzy
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
-msgstr "Ingen netlęser til stede! Installér venligts én"
+msgstr "Ingen netlęser til stede! Installér venligst én"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Netvęrkskonfiguration (%d adaptorer)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Slet profil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profil der skal slettes:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Ny profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11147,95 +11646,95 @@ msgstr ""
"Navnet på profilen der skal oprettes (den nye profil oprettes som en \n"
"kopi af den nuvęrende) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Vęrtsnavn: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internetadgang"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Type:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Gręnseflade:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Vent venligst"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Konfigurér Internetadgang..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN konfiguration"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Drivprogram"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Gręnseflade"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Status"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Konfigurér lokalnetvęrk..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Klik her for at starte vejlederen ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Vejleder..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Anvend"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Vent venligst... Sętter konfigurationen i anvendelse"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Tilsluttet"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Ikke tilsluttet"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Tilslut..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Afbrud..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11243,7 +11742,7 @@ msgstr ""
"Advarsel, en anden internetforbindelse er blevet fundet, der måske bruger "
"dit netvęrk"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11251,36 +11750,36 @@ msgstr ""
"Du har ingen konfigurerede gręnsesnit.\n"
"Konfigurér disse fųrst ved at klikke på 'Konfigurér'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN konfiguration"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapter %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Opstartsprotokol"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Startede med opstart"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP-klient"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "aktivér nu"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "deaktivér nu"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11288,7 +11787,7 @@ msgstr ""
"Dette gręnsesnit er ikke blevet konfigureret endnu.\n"
"Start konfigurationsvejlederen i hovedvinduet"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11296,121 +11795,121 @@ msgstr ""
"Du har ingen internet-opkobling.\n"
"Opret én fųrst ved at klikke på 'Konfigurér'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Konfiguration af Internetforbindelse"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Konfiguration af Internetforbindelse"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Type af forbindelse"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametre"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet-kort"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-Klient"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "brug: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulnavn"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Stųrrelse"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "fremstilling af opstartsdiskette"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "standard"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy fejl: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "kerne-version"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Generelt"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ekspertområde"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd valgfrie argumenter"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Tilfųj et modul"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "tving"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "hvis nųdvendigt"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "undgå scsi-moduler"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "undgå raid-moduler"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Fjern et modul"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Uddata"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Opbyg disken"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11419,12 +11918,12 @@ msgstr ""
"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
"Indsęt venligst noget."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Kan ikke fork(): %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11435,99 +11934,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Sųg efter installerede skrifttyper"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Fravęlg installerede skrifttyper"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "fortolk alle skrifttyper"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "kunne ikke finde nogen skrifttyper"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "fęrdig"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "Kunne ikke finde nogen skrifttyper i dine monterede partitioner"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Genvęlg korrekte skrifttyper"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "Kunne ikke finde nogen skrifttyper.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Sųg efter skrifttyper i installeret liste"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Kopi af skrifttyper"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Installation af True Type-skrifttyper"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "Vent venligst på ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Installation af True Type fęrdig"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Konvertering af skrifttyper"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "opbyg type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript referencer"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "Konvertering af ttf-skrifttyper"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "Konvertering af pfm-skrifttyper"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Undertryk midlertidige filer"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Genstart XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Undertryk skrifttypefiler"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "genstart af xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11541,107 +12040,111 @@ msgstr ""
"-Du kan installere skrifttyperne på normal måde. I sjęldne tilfęlde kan "
"fejlbehęftede skrifttyper få din X-server til at hęnge."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Import af skrifttyper"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Hent skrifttyper fra Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Afinstallér skrifttyper"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Avancerede muligheder"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Liste over skrifttyper"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Vęlg de programpakker som vil understųtte skrifttyperne:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Generelle printere"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vęlg skrifttypefilen eller -kataloget oh klik på 'Tilfųj'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Installationsliste"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "Klik her hvis du er sikker."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "Her hvis ikke."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Fravalgte alt"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Valgte alt"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Fjern liste"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Begyndelsestester"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Kopiér skrifttyper på dit system"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Installér og konvertér skrifttyper"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Efterbehandling for installering"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Fjern skrifttyper på dit system"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Efterbehandling for afinstallering"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Desvęrre, vi understųtter kun 2.4-kerner."
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Deling af internetforbindelse er slået til"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11653,31 +12156,31 @@ msgstr ""
"\n"
"Hvad ųnsker du at gųre?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "deaktivér"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "forkast"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "genkonfigurér"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Slår servere fra..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Deling af internetforbindelse er nu slået fra"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Deling af internetforbindelse er slået fra"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11688,19 +12191,19 @@ msgstr ""
"Den er de-aktiveret for nęrvęrende\n"
"Hvad ųnsker du at gųre?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "aktivér"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Aktiverer servere..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Deling af internetforbindelse er nu slået til"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11716,21 +12219,21 @@ msgstr ""
"Bemęrk: du skal bruge en dediceret netvęrksadapter, for at lave et lokalt "
"netvęrk (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Gręnseflade %s (benytter modul %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Gręnseflade %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Ikke nogen netvęrksadapter i dit system!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11738,11 +12241,11 @@ msgstr ""
"Ingen ethernet netvęrksadapter er blevet fundet på dit system. Kųr venligst "
"vęrktųjet til maskinel konfiguration."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Netvęrksgręnsesnit"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11757,17 +12260,17 @@ msgstr ""
"\n"
"Jeg skal til at sętte dit lokalnet på med den adapter."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vęlg hvilken netvęrksadapter som skal forbindes til dit lokalnet."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Netvęrksgręnsesnit allerede konfigureret"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11782,15 +12285,15 @@ msgstr ""
"\n"
"Du kan gųre det i hånden, men du skal vide hvad du gųr."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automatisk rekonfiguration"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Vis aktuelle gręnsesnitskonfiguration"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11807,7 +12310,7 @@ msgstr ""
"IP-attribut: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11828,32 +12331,32 @@ msgstr ""
"server for dig.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C-klasse lokalnetvęrk"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "(Denne) DHCP-servers IP-adresse"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Rekonfigurér gręnsesnit og DHCP-server"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalnetvęrket endte ikke med `.0', står af."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Mulig LAN-adresse konflikt fundet i konfigurationen til %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Brandmurkonfiguration fundet!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11861,20 +12364,20 @@ msgstr ""
"Advarsel! En eksisterende brandmurkonfiguration er blevet fundet. Du skal "
"muligvis lave manuelle rettelser efter installationen."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigurerer..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Konfigurerer skript, installerer programmel, starter servere..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problemer med installation af %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11884,23 +12387,23 @@ msgstr ""
"Du kan nu dele din internetforbindelse med andre maskiner på dit lokale "
"netvęrk, ved at bruge DHCP."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Indstilling er allerede gjort. men er de-aktiveret for nęrvęrende."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Indstilling er allerede gjort. og er for nęrvęrende aktiv."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Deling af Internetforbindelse har aldrig vęret konfigureret."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Konfiguration af deling af internetforbindelse"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11915,20 +12418,13 @@ msgstr ""
"Klik på Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolcenter"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Vęlg det vęrktųj du ųnsker at benytte"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11940,7 +12436,8 @@ msgstr ""
"\n"
"\n"
"Hvis du har et tv-kort, men DrakX hverken har fundet det (intet bttv\n"
-"modul i \"/etc/modules\") eller installeret xawtv, så indsend venligst\n"
+"eller saa7134 modul i \"/etc/modules\") eller installeret xawtv, så indsend "
+"venligst\n"
"resultaterne af \"lspcidrake -v -f\" til \"install\\@mandrakesoft.com\"\n"
"med emnet \"undetected TV card\".\n"
"\n"
@@ -11948,101 +12445,105 @@ msgstr ""
"Du kan installere det ved at indtaste \"urpmi xawtv\" som root, på en "
"kommandolinje."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Canada (kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Kina (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Japan (broadcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japan (kabel)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Ųsteuropa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "Frankrig [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Vesteuropa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "New Zealand"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Sydafrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr "Australsk Optus kabel-tv"
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Indtast din tv-standard og land"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Tv-standard:"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Område:"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Skanning for tv-kanaler i gang..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Skanner for tv-kanaler"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "Der opstod en fejl ved skanninge efter tv-kanaler"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV er ikke installeret!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Hav det godt!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Nu kan du kųre xawtv (under X Window!)!\n"
@@ -12074,11 +12575,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Vęlg tastaturlayout."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Vil du have at Bak-tasten giver Delete i konsollen?"
@@ -12102,7 +12603,7 @@ msgstr "Kan ikke starte levende opgradering!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Ęndringen er fortaget, men for at vęre effektiv skal du logge ud"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12210,133 +12711,126 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Indhold af filen"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr "Post og SMS påmindelse"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "Post-påmindelse"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "vent venligst, fortolker filen: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
-msgstr "Post og SMS påmindelseskonfiguration"
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "Konfiguration af postpåmindelse"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Velkommen til programmet for post og SMS-konfigurering.\n"
+"Velkommen til programmet for postkonfigurering.\n"
"\n"
"Her vil du kunne opsętte påmindelsessystemet\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web Server"
-#: ../../standalone/logdrake_.c:418
-#, fuzzy
+#: ../../standalone/logdrake_.c:417
msgid "Domain Name Resolver"
-msgstr "Domęnenavn"
+msgstr "Lųser for domęnenavn"
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
-msgstr "NIS-server"
+msgstr "FTP-server"
-#: ../../standalone/logdrake_.c:420
-#, fuzzy
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
-msgstr "Postfix postserver, Inn nyhedsserver"
+msgstr "Postfix postserver"
-#: ../../standalone/logdrake_.c:421
-#, fuzzy
+#: ../../standalone/logdrake_.c:420
msgid "Samba Server"
-msgstr "Start server"
+msgstr "Samba-server"
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
+#: ../../standalone/logdrake_.c:421
msgid "SSH Server"
-msgstr "NIS-server"
+msgstr "SSH-server"
-#: ../../standalone/logdrake_.c:423
-#, fuzzy
+#: ../../standalone/logdrake_.c:422
msgid "Webmin Service"
-msgstr "Tjenester"
+msgstr "Webmin-tjeneste"
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
+#: ../../standalone/logdrake_.c:423
msgid "Xinetd Service"
-msgstr "Printer-server"
+msgstr "Xinetd-tjeneste"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
-msgstr "Opsętning af tjenester"
+msgstr "opsętning af tjenester"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Du vil modtage en advarsel hvis en af de valgte tjenester ikke lęngere kųrer"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "indlęs opsętning"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Du vil modtage en advarsel hvis belastningen er hųjere end denne vęrdi"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "advarsels-konfiguration"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Konfigurerer måden systemet vil advare dig på"
+#: ../../standalone/logdrake_.c:458
+msgid "Please enter your email address below "
+msgstr "Indtast din adgangskode for epost nedenfor"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Gem som..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Vęlg muse-type."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "ingen seriel_usb fundet\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emulering af tredje knap?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Lęser printerdata ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Sųger efter enheder..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Afprųv porte"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s fundet på %s, skal det konfigureres?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Vęlg en skanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Denne %s-skanner er ikke understųttet"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12345,11 +12839,11 @@ msgstr ""
"Scannerdrake kunne ikke genkende din %s-skanner.\n"
"Vęlg venligst den enhed hvor din skanner er isat"
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "vęlg enhed"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12359,7 +12853,7 @@ msgstr ""
"Denne %s-skanner skal vęre konfigureret af printerdrake.\n"
"Du kan starte printerdrake fra Mandrake Kontrolcenter i Udstyr-afsnittet."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12383,15 +12877,15 @@ msgstr ""
"\n"
"Nogen enheder i maskinelklassen '%s' blev tilfųjet:\n"
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Konfiguration af brandmur"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Brandmurskonfiguration"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12403,7 +12897,7 @@ msgstr ""
"Du har allerede indstillet en brandmur.\n"
"Klik på Konfigurér for at ęndre eller fjerne brandmuren"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12600,7 +13094,7 @@ msgid ""
"\n"
msgstr ""
"Kųrer du en POP- eller IMAP-tjeneste her? Dette kan bruges til at betjene "
-"ikke-webbaserede postkonti for folk via denne maskine.\n"
+"ikke-webaserede postkonti for folk via denne maskine.\n"
"\n"
#: ../../tinyfirewall.pm_.c:56
@@ -12650,48 +13144,48 @@ msgstr "Kan ikke åbne %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Kan ikke åbne %s for skrivning: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Nej, jeg har ikke brug for DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Ja, jeg har brug for DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Nej, jeg har ikke brug for NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Ja, jeg har brug for NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Gem ikke"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Gem og afslut"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Vejleder til brandmurskonfiguration"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Nej (sęt en brandmur op mod internettet)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Nej (tillad dette gennem brandmuren)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Vent venligst..., kontrollerer installerede pakker"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12700,6 +13194,10 @@ msgstr ""
"Kunne ikke installere de kręvede pakker: %s og Bastille.\n"
" Prųv at installere dem manuelt."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -12749,6 +13247,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Lyd-relaterede vęrktųjer: mp3 eller midi-afspillere, mixere o.lign."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Understųttelse for tredjeparts-programmer"
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Bųger og vejledninger om Linux og Frit Programmel"
@@ -12837,10 +13339,6 @@ msgid "Office Workstation"
msgstr "Kontor-arbejdsstation"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, o.lign."
@@ -12862,7 +13360,7 @@ msgstr "Netvęrksmaskine server"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Post/diskussionsgrupper"
+msgstr "Post/nyhedsgrupper"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12903,6 +13401,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Klienter for forskellige protokoller inklusiv ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr "LSB"
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetadgang"
@@ -12934,304 +13436,72 @@ msgstr "Multimedie - CD-bręnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "fsck afsluttet med fejlkode %d eller signal %d"
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "Grafikkort identifikation: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "Vęlg server-indstillinger"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "Skęrm ikke konfigureret"
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "Grafikkort er endnu ikke konfigureret"
+#~ msgid "\n"
+#~ msgstr "\n"
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "Oplųsninger ikke valgt endnu"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
#~ msgid ""
#~ "\n"
-#~ "try to change some parameters"
-#~ msgstr ""
+#~ "Drakbackup activities via $net_proto:\n"
#~ "\n"
-#~ "prųv at ęndre nogle parametre"
-
-#~ msgid "An error occurred:"
-#~ msgstr "En fejl opstod:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "Vender tilbage om %d sekunder"
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "Er dette den korrekte indstilling?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "En fejl opstod, prųv at ęndre nogle parametre"
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "XFree86-server: %s"
-
-#~ msgid "Show all"
-#~ msgstr "Vis alle"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "Forbereder konfiguration af X"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "Hvad ųnsker du at gųre?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "Skift skęrmtype"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "Skift grafikkort"
-
-#~ msgid "Change Server options"
-#~ msgstr "Foretag ęndringer i server-indstillinger"
-
-#~ msgid "Change Resolution"
-#~ msgstr "Skift oplųsning"
-
-#~ msgid "Show information"
-#~ msgstr "Vis information"
-
-#~ msgid "Test again"
-#~ msgstr "Test igen"
-
-#~ msgid ""
-#~ "Description of the fields:\n"
-#~ "\n"
-#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
-#~ "USB, ...)\n"
-#~ "\n"
-#~ "Bus identification: \n"
-#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
-#~ "ids\n"
-#~ "\n"
-#~ "Description: this field describe the device\n"
-#~ "\n"
-#~ "Location on the bus: \n"
-#~ "- 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"
-#~ "- scsi devices: the scsi bus and the scsi device ids\n"
-#~ "\n"
-#~ "Media class: class of hardware device\n"
-#~ "\n"
-#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
-#~ "\n"
-#~ "Vendor: the vendor name of the device\n"
#~ msgstr ""
-#~ "Beskrivelse af felterne:\n"
-#~ "\n"
-#~ "Bus: dette er den fysiske bus, som enheden er tilsluttet (fx: PCI, "
-#~ "USB, ...)\n"
-#~ "\n"
-#~ "Bus identifikation: \n"
-#~ "- pci-enheder: dette viser producenten, enheden, underproducent og "
-#~ "underenhed PCI id'er\n"
-#~ "\n"
-#~ "Beskrivelse: dette felt beskriver enheden\n"
-#~ "\n"
-#~ "Placering på bussen: \n"
-#~ "- pci-enheder: dette giver PCI slottet, enheden og funktionen for dette "
-#~ "kort\n"
-#~ "- eide-enheder: enheden er enten en slave- eller mester-enhed\n"
-#~ "- scsi-enheder: scsi-bussen og scsi enheds-id'er\n"
#~ "\n"
-#~ "Medieklasse: maskinelenhedens klasse\n"
+#~ "Drakbackup aktiviteter via $net_proto:\n"
#~ "\n"
-#~ "Modul: modulet i GNU/Linux-kernen som håndterer denne enhed\n"
-#~ "\n"
-#~ "Producent: Navnet på producenten af enheden\n"
#~ msgid ""
-#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or "
-#~ "an HP LaserJet 2200?"
+#~ "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 ""
-#~ "Er din printer en multi-funktionsenhed fra HP (OfficeJet, PSC, LaserJet "
-#~ "1100/1200/1220/3200/3300 med skanner), en HP Photosmart P100 eller en HP "
-#~ "LaserJet 2200?"
+#~ "Dette niveau skal bruges med omtanke. Det gųr dit system nemmere at "
+#~ "bruge, men er meget sårbart: det må ikke bruges til en maskine der er i "
+#~ "et netvęrk eller har forbindelse til Internettet. Der er ikke nogen "
+#~ "kontrol af adgangskoder."
#~ 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\n"
-#~ "\n"
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
#~ msgstr ""
-#~ "Hvilke muligheder der er for den aktuelle printer kan du enten lęse på "
-#~ "listen vist nedenfor, eller klikke på knappen 'liste med "
-#~ "printermuligheder'%s.\n"
-#~ "\n"
+#~ "Med dette sikkerhedsniveau kan brug som server komme på tale.\n"
+#~ "Sikkerheden er nu hųj nok til at systemet kan bruges som server som "
+#~ "tillader forbindelser fra mange klienter. Bemęrk: hvis din maskine kun er "
+#~ "en klient på internettet bųr du hellere vęlge et lavere niveau."
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to "
-#~ "specify the scanner when you have more than one) from the command line or "
-#~ "with the graphical interfaces \"xscanimage\" or \"xsane\". If you are "
-#~ "using the GIMP, you can also scan by choosing the appropriate point in "
-#~ "the \"File\"/\"Acquire\" menu. Call also \"man scanimage\" and \"man sane-"
-#~ "hp\" on the command line to get more information.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
-#~ "skanne. Nu kan du skanne med 'scanimage' ('scanimage -d hp:%s' for at "
-#~ "angive skanneren hvis du har mere end én) fra kommandolinjen eller med "
-#~ "den grafiske gręnseflade 'xscanimage' eller 'xsane'. Hvis du bruger GIMP "
-#~ "kan du også skanne ved at vęlge det passende punkt i menuen 'Filer/Hent'. "
-#~ "Brug også 'man scanimage' og 'man sane-hp' på kommandolinjen for at få "
-#~ "mere information\n"
-#~ "\n"
-#~ "Brug ikke \"scannerdrake\" på denne enhed!"
+#~ msgid "Basic Options"
+#~ msgstr "Basale valgmuligheder"
-#~ msgid ""
-#~ "Your HP multi-function device was configured automatically to be able to "
-#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
-#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
-#~ "yet for your device. More information you will find in the \"/usr/share/"
-#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
-#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
-#~ "installed.\n"
-#~ "\n"
-#~ "Do not use \"scannerdrake\" for this device!"
-#~ msgstr ""
-#~ "Din HP-multifunktionsenhed blev konfigureret automatisk til at kunne "
-#~ "skanne. Nu kan du skanne med 'ptal-hp %s scan ...' fra kommandolinjen. "
-#~ "Skanning via en grafisk gręnseflade eller fra GIMP er endnu ikke "
-#~ "understųttet for din enhed. Du kan finde mere information i filen \"/usr/"
-#~ "share/doc/hpoj-0.8/ptal-hp-scan.html\" på dit system. Hvis du har en HP "
-#~ "LaserJet 1100 eller 1200 kan du kun skanne når du har skannermuligheden "
-#~ "installeret på udstyret.\n"
-#~ "\n"
-#~ "Brug ikke \"scannerdrake\" på denne enhed!"
+#~ msgid "Security Checks"
+#~ msgstr "Sikkerhedkontroller"
-#~ msgid ""
-#~ "Please enter the directory to\n"
-#~ " put the backup on this host."
-#~ msgstr ""
-#~ "Indtast kataloget hvori\n"
-#~ " sikkerhedskopien skal lęgges på denne maskine."
+#~ msgid "WARNING: $warning"
+#~ msgstr "Advarsel: $warning"
-#~ msgid "Use Hard Drive with daemon"
-#~ msgstr "Brug diskdrev med dęmon"
+#~ msgid "$descr"
+#~ msgstr "$descr"
-#~ msgid "Use FTP with daemon"
-#~ msgstr "Brug FTP med dęmon"
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Dataliste som skal medtages på cdrom."
-#~ msgid "Please be sure that the cron daemon is included in your services."
-#~ msgstr "Forsikr dig gerne at cron-dęmonen er med i dine tjenester."
+#~ msgid "Please choose your CD space"
+#~ msgstr "Vęlg din cd-plads"
-#~ msgid "Package List to Install"
-#~ msgstr "Pakkeliste til installation"
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Indtast hastighed på cd-bręnder"
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Indstiller sikkerhedsniveau"
-
-#~ msgid "Graphics card"
-#~ msgstr "Grafikkort"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "Vęlg et grafikkort"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "Vęlg en X-driver"
-
-#~ msgid "X driver"
-#~ msgstr "X-driver"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr ""
-#~ "Advarsel: afprųvning af dette grafikkort kan få din maskine til at låse"
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "Standard-VGA, 640x480 ved 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "Super-VGA, 800x600 ved 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "8514 kompatibel, 1024x768 ved 87 Hz interlaced (ikke 800x600)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "Super VGA, 1024x768 ved 87 Hz interlaced, 800x600 ved 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Udvidet Super-VGA, 800x600 ved 60 Hz, 640x480 ved 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "Non-Interlaced SVGA, 1024x768 ved 60 Hz, 800x600 ved 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "Hųjfrekvens SVGA, 1024x768 ved 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 60 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 74 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "Multi-frekvens, som kan klare 1280x1024 ved 76 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "Skęrm, som kan klare 1600x1200 ved 70 Hz"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "Skęrm, som kan klare 1600x1200 ved 76 Hz"
-
-#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr "Den totale stųrrelse af de grupper du har valg er cirka %d Mb.\n"
-
-#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
-#~ msgstr ""
-#~ "Hvis du ųnsker at installere mindre end denne stųrrelse,\n"
-#~ "så vęlg procentdelen af pakker som du vil installere.\n"
-#~ "\n"
-#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
-#~ "en procentdel på 100%% vil installere alle valgte pakker."
-
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "Du har kun plads på din disk til %d%% af disse pakker.\n"
-#~ "\n"
-#~ "Hvis du ųnsker at installere mindre end denne stųrrelse,\n"
-#~ "så vęlg procentdelen af pakker som du vil installere.\n"
-#~ "En lav procentdel vil kun installere de vigtigste pakker;\n"
-#~ "en procentdel på %d%% vil installere så mange pakker som muligt."
-
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr ""
-#~ "Du har mulighed for at vęlge dem mere pręcist i nęste installationstrin"
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Markér om du vil slette din CDRW fųr ny skrivning"
-#~ msgid "Percentage of packages to install"
-#~ msgstr "Procentandel pakker til installation"
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Indtast navnet på enheden for din cd-bręnder (fx: 0,1,0)"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Vęlg sikkerhedniveau"
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Markér om du ųnsker at medtage installeringsopstart på din cd."
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index fa927b580..465f2f857 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -1,14 +1,14 @@
-# german transltion of drakflopy
-# Copyright (C) 2000, 2001 MandrakeSoft S.A.
-# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001.
+# german transltion of the MandrakeInstaller
+# Copyright (C) 2000, 2001, 2002 MandrakeSoft S.A.
+# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002.
#
msgid ""
msgstr ""
-"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2001-08-20 17:48+0200\n"
+"Project-Id-Version: MandrakeInstaller\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-08-13 23:16+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
-"Language-Team: German <de@li.org>\n"
+"Language-Team: German Translation Team <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -57,11 +57,11 @@ msgstr "WƤhlen Sie einen X Server"
msgid "X server"
msgstr "X Server"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Mehrkarten-Einstellung"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +69,44 @@ msgstr ""
"Ihr System erlaubt die Verwendung einer Mehrkarten Konfiguration.\n"
"Was wollen Sie tun?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "WƤhlen Sie die SpeichergrĆ¶ĆŸe Ihrer Grafikkarte"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree konfigurieren"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Welche XFree-Konfiguration wollen Sie verwenden?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Alle Karten getrennt konfigurieren"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfig/card.pm_.c:379
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:384
+#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nur Karte ā€ž%sā€œ (%s) konfigurieren"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,11 +149,56 @@ msgstr ""
"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FƜHREN."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Grafikkarte"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Auflƶsung"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Test"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Verlassen"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -166,32 +211,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "WƤhlen Sie Ihren Monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n'Play"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generisch"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
-#, fuzzy
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
-msgstr "RĆ¼ckgƤngig"
+msgstr "Hersteller"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -212,11 +252,11 @@ msgstr ""
"kƶnnten. Im Zweifelsfall wƤhlen Sie bitte eine konservativere \n"
"Einstellung."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horizontale Wiederholfrequenz"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikale Wiederholfrequenz"
@@ -240,57 +280,42 @@ msgstr "16 Millionen Farben (24 Bit)"
msgid "4 billion colors (32 bits)"
msgstr "4 Milliarden Farben (32 Bit)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Auflƶsungen"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Auflƶsung"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "WƤhlen Sie bitte Auflƶsung und Farbtiefe"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafikkarte: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr " Abbruch "
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Mƶchten Sie die vorgenommenen Einstellungen prĆ¼fen?"
@@ -299,71 +324,71 @@ msgstr "Mƶchten Sie die vorgenommenen Einstellungen prĆ¼fen?"
msgid "Test of the configuration"
msgstr "PrĆ¼fen der Einstellungen"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tastaturtyp: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Maustyp: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mausschnittstelle: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor Horiz. Frequenz: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor Vert. Frequenz: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafikkarte: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Grafikkartenspeicher: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Farbtiefe: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Auflƶsung: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 Server: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -373,167 +398,191 @@ msgstr ""
"automatisch die grafische OberflƤche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur VerfĆ¼gung steht?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Ihre Grafikkarte scheint einen TV-Ausgang zu haben, der mittels Frame-Buffer "
+"angesprochen werden kann.\n"
+"\n"
+"Wenn Sie das wĆ¼nschen, schlieƟen Sie bitte Ihren Fernseher an die "
+"Grafikkarte an, bevor Sie den Rechner neu starten.\n"
+"WƤhlen Sie ā€žTV-Ausgangā€œ im Betriebssystemstarter.\n"
+"\n"
+"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "Um welche Fernsehnorm handelt es sich?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Erster Sektor der Boot-Partition"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO Installation"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Betriebssystemstarter installiert werden?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/Grub Installation"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO mit TextmenĆ¼"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO mit grafischem MenĆ¼"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot von DOS/Windows aus (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Betriebssystemstarters"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Zu verwendender Betriebssystemstarter"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Installation des Betriebssystemstarters"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot GerƤt"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (funktioniert nicht mit alten BIOS Versionen)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Video Modus"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschrƤnken"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "EinschrƤnken"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Die Partition /tmp bei jedem Systemstart sƤubern"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Geben Sie, falls nƶtig, die genaue RAM GrĆ¶ĆŸe an (%d MB gefunden)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Mehrere Profile einschalten"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Geben Sie die RAM GrĆ¶ĆŸe in MB an"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Die Option ā€žGebrauch der Kommandozeilen-Parameter einschrƤnkenā€œ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Die Passwƶrter stimmen nicht Ć¼berein"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Init Nachricht"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Open Firmware Verzƶgerung"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "BS-Startverzƶgerung fĆ¼r den Kern"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "BS-Start von CD erlauben"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Open Firmware Start erlauben"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Standard BS"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -548,7 +597,7 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -556,156 +605,157 @@ msgstr ""
"Hier sind die verschiedenen EintrƤge.\n"
"Sie kƶnnen weitere hinzufĆ¼gen oder existierende Ƥndern."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "HinzufĆ¼gen"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Ƅndern"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufĆ¼gen?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Ɯbergeben"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "GrĆ¶ĆŸe der Init-RamDisk"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Eintrag lƶschen"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Leere EintrƤge sind nicht erlaubt"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Sie MĆ¼ssen ein Kern-Abbild angeben"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Sie mĆ¼ssen die Verzeichnisbaumwurzel festlegen"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "VerfĆ¼gen Sie Ć¼ber weitere?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "VerfĆ¼gen Sie Ć¼ber %s Schnittstellen?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers fĆ¼r die Karte %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
-#: ../../any.pm_.c:697
-#, fuzzy, c-format
+#: ../../any.pm_.c:689
+#, 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 ""
-"Sie mĆ¼ssen nun die Optionen fĆ¼r Modul %s angeben.\n"
-"Bedenken Sie, dass Adressen alle mit ā€ž0xā€œ beginnen mĆ¼ssen, etwa ā€ž0x300ā€œ"
+"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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -716,17 +766,17 @@ msgstr ""
"Optionen haben die Form ā€žname=wert name2=wert2ā€œ.\n"
"Beispielsweise: ā€žio=0x300 irq=7ā€œ"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modul-Optionen:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -744,15 +794,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:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -761,56 +811,55 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "ā€žsuā€œ erlauben"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefĆ¼gt)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
-#, fuzzy
+#: ../../any.pm_.c:766
msgid "The user name is too long"
-msgstr "Dieses Benutzerkennzeichen existiert bereits"
+msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Benutzer hinzufĆ¼gen"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -819,32 +868,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -853,19 +902,19 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "WƤhlen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "WƤhlen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Bitte wƤhlen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -874,37 +923,37 @@ msgstr ""
"Sie kƶnnen andere Sprachen auswƤhlen, die nach der Installation zur "
"VerfĆ¼gung stehen."
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benƶtigte Paket ā€ž%sā€œ fehlt."
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -919,11 +968,11 @@ msgstr ""
"Mit ā€žBenutzerdefiniertā€œ kƶnnen Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -932,31 +981,31 @@ msgstr ""
"Sie kƶnnen UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Hƶher"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -967,7 +1016,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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -975,7 +1024,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -983,7 +1032,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene fĆ¼r Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -991,7 +1040,7 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgefĆ¼hrt."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1008,7 +1057,7 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1016,22 +1065,40 @@ 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:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "DrakSec Grundeinstellungen"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "WƤhlen Sie Ihre Sicherheitsebene"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "ā€žlibsafeā€œ bei Servern verwenden"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
+
+#: ../../any.pm_.c:1189
+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 ""
+"Hier kƶnnen Sie die Taste, bzw Tastenkombination wƤhlen, \n"
+"mit der Sie zwischen verschiedenen Tastaturbelegugen \n"
+"umschalten kƶnnen, etwa zwischen deutschem und US-Layout."
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
@@ -1039,7 +1106,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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1063,111 +1130,207 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "ArbeitsoberflƤche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start-MenĆ¼"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "Es steht noch keine Hilfe zur VerfĆ¼gung.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datei"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datei/B_eenden"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Neuer kategorisierter Monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Neuer Stil"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Herkƶmmlicher Stil"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Herkƶmmlicher Gtk+ Stil"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Aurora beim Hochfahren starten"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "LILO/GRUB Modus"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot Modus"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Themen installieren"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "Bildschirm-Thema fĆ¼r die Konsole"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Fehler"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "Anlegen einer Sicherheitskopie von ā€ž%sā€œ unter ā€ž%s.oldā€œ."
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "Kopiere ā€ž%sā€œ nach ā€ž%sā€œ"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "Ich kann die LILO-Nachricht nicht Ƥern."
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "Ich kann die LILO Nachricht nicht finden."
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Ich kann ā€ž/etc/sysconfig/bootsplashā€œ nicht anlegen."
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "Schreiben von %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr "Ich kann ā€ž/etc/sysconfig/bootsplashā€œ nicht anlegen."
+
+#: ../../bootlook.pm_.c:233
+#, 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:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr "Erstellen der RamDisk: ā€žmkinitrd -f /boot/initrd-%s.img %sā€œ."
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+"Ich kann LILO nicht ausfĆ¼hren!FĆ¼hren Sie bitte mit dem privilegierten "
+"Benutzerkennzeichen ā€žliloā€œ in einer Konsole aus, um die Themen-Installation "
+"zu beenden."
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "LILO ausfĆ¼hren"
+
+#: ../../bootlook.pm_.c:248
+msgid "Notice"
+msgstr "Anmerkung"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Installation des LILO- und Start-Themas erfolgreich."
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "Die Installation des Themas schlug fehl!"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1176,42 +1339,76 @@ msgstr ""
"Sie verwenden momentan ā€ž%sā€œ als Betriebssystemstarter.\n"
"WƤhlen Sie ā€žKonfigurierenā€œ, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfigurieren"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "Startschirmauswahl"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Themen"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+"\n"
+"WƤhlen Sie sich\n"
+"das Aussehen von\n"
+"LILO und dem\n"
+"Startschirm.\n"
+"Sie kƶnnen\n"
+"unterschiedliche\n"
+"Varianten wƤhlen."
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "LILO-MenĆ¼"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "Startschirm"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "System-Modus"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Nein ich will kein Autologin"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser OberflƤche"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr " Ok "
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ich kann ā€ž/etc/inittabā€œ nicht zum lesen ƶffnen: %s"
@@ -1256,61 +1453,111 @@ msgstr ""
msgid "Screenshots will be available after install in %s"
msgstr "Die Bildschim-SchnappschĆ¼sse liegen nach der Installation unter ā€ž%sā€œ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankreich"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgien"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Tschechische Republik"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Deutschland"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Griechenland"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norwegen"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Schweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Holland"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italien"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Ɩstereich"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Unbekanntes Modell"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "Neu"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "EinhƤngpunkt: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Optionen: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"
@@ -1323,15 +1570,6 @@ msgstr ""
"Wenn Sie aboot verwenden wollen, mĆ¼ssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Fehler"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Assistent"
@@ -1357,7 +1595,7 @@ msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Details"
@@ -1385,13 +1623,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Auslagerung"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Leer"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Andere"
@@ -1399,12 +1637,12 @@ msgstr "Andere"
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Erzeugen"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Typ"
@@ -1414,7 +1652,7 @@ msgstr "Typ"
msgid "Use ``%s'' instead"
msgstr "Verwenden Sie stattdessen ā€ž%sā€œ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Lƶschen"
@@ -1422,7 +1660,7 @@ msgstr "Lƶschen"
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst ā€žumountā€œ"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1430,72 +1668,72 @@ msgstr ""
"Nach Ƅnderung des Partitionstyps von %s, werden sƤmtliche Daten darauf "
"gelƶscht"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "WƤhlen Sie eine Partition"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "WƤhlen Sie eine andere Partition"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Verlassen"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "RĆ¼ckgƤngig"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Beenden ohne speichern"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mƶchten Sie die vorgenommenen Ƅnderungen in ā€ž/etc/fstabā€œ speichern?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Automatisches Erstellen"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Alles lƶschen"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mehr"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Festplatten-Informationen"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Alle PrimƤrpartitionen sind in Gebrauch"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ich kann keinen weiteren Partitionen hinzufĆ¼gen"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1503,31 +1741,31 @@ msgstr ""
"Um mehr Partitionen einrichten zu kƶnnen, mĆ¼ssen Sie zunƤchst eine Partition "
"lƶschen und anschlieƟend eine erweiterte Partition erzeugen"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Partitionstabelle retten"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Wechselmedien automatisch EinhƤngen"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Datei auswƤhlen"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1535,11 +1773,11 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe GrĆ¶ĆŸe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Warnung"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1547,129 +1785,116 @@ msgstr ""
"Legen Sie eine Diskette in das Laufwerk\n"
"Alle Daten auf dieser Diskette werden gelƶscht!"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Ich Versuche, die Partitionstabelle zu retten"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "AusfĆ¼hrliche Informationen"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "EinhƤngpunkt"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Optionen"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "GrĆ¶ĆŸe verƤndern"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Bewegen"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatieren"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "EinhƤngen"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Zum RAID hinzufĆ¼gen"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Zum LVM hinzufĆ¼gen"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "AushƤngen"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Lƶschen aus dem RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Lƶschen aus dem LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAID modifizieren"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Als Loopback verwenden"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Erzeuge eine neue Partition"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Anfangssektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "GrĆ¶ĆŸe in MB:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "EinhƤngpunkt: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Einstellung: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Sie kƶnnen keine weiteren Partitionen anlegen (da Sie die maximale \n"
+"Anzahl primƤrer Partitionen erstellt haben). Bitte lƶschen Sie \n"
+"eine primƤre Partioion und legen Sie stattdessen eine erweiterte \n"
+"Partition an."
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Partitionstyp Ƥndern"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhƤngen?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das GerƤt %s einhƤngen?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1677,135 +1902,140 @@ msgstr ""
"Ich kann diesen EinhƤngpunkt nicht zurĆ¼cksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Wo wollen Sie das GerƤt %s einhƤngen?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT Dateisystems"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Neuberechnen der GrĆ¶ĆŸe"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Die GrĆ¶ĆŸe dieser Partition kann ich nicht Ƥndern"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten ein Backup sƤmtlicher Daten dieser Partition erstellen"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch VerƤnderung der PartitionsgrĆ¶ĆŸe von %s, gehen sƤmtliche Daten darauf "
"verloren"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "WƤhlen Sie die neue GrĆ¶ĆŸe"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Neue GrĆ¶ĆŸe in MB:"
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Zu welcher Platte wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Zu welchem Sektor wollen Sie wechseln?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "wechsele"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Bewege Partition..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "WƤhlen Sie einen vorhandenen RAID"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "Neu"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "WƤhlen Sie einen vorhandenen LVM"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM Name?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Dateinamen angeben"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-VerknĆ¼pfung verwendet, "
"wƤhlen Sie eine andere Datei."
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr ""
"Es existiert bereits eine Datei mit diesem Namen. Soll ich sie verwenden?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "EinhƤng-Optionen"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Verschiedene"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "GerƤt"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "Level"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "BlockgrĆ¶ĆŸe"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht: Diese Aktion ist gefƤhrlich."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"
-#: ../../diskdrake/interactive.pm_.c:953
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:955
+#, c-format
msgid "The package %s is needed. Install it?"
-msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"
+msgstr "Das Paket %s wird benƶtigt. Soll ich es installieren?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1818,7 +2048,7 @@ msgstr ""
"verwenden \n"
"LILO nicht, dann benƶtigen Sie keine ā€ž/bootā€œ Partition."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1831,7 +2061,7 @@ msgstr ""
"Betriebssystemstarter einsetzen wollen, vergessen Sie bitte nicht, eine ā€ž/"
"bootā€œ Partition anzulegen!"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1843,46 +2073,46 @@ msgstr ""
"ā€ž/bootā€œ-Partition arbeiten. Sie sollten also daran denken, eine solche \n"
"Partition zu erstellen."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte ā€ž%sā€œ wird gespeichert!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie mĆ¼ssen Ihren Rechner neu starten, damit die VerƤnderungen wirksam werden"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sƤmtliche Daten darauf gelƶscht"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatiere"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiere Loopback-Datei %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Dateien verstecken"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1891,83 +2121,83 @@ msgstr ""
"Das Verzeichnis ā€ž%sā€œ enthƤlt bereits Daten\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Dateien auf die neue Partition verschieben."
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Kopiere: %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Entferne: %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "Die Partition %s heiƟt nun %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "GerƤt: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Typ:"
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Name: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "GrĆ¶ĆŸe: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "EingehƤngt\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1976,7 +2206,7 @@ msgstr ""
"Loopback Datei(en):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1984,27 +2214,27 @@ msgstr ""
"Partition wird standardmƤƟig geladen\n"
" (fĆ¼r MS-DOS Boot, nicht jedoch fĆ¼r LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "BlockgrĆ¶ĆŸe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2017,7 +2247,7 @@ msgstr ""
"Partition handelt. Sie sollten sie\n"
"daher unverƤndert lassen.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2030,63 +2260,58 @@ msgstr ""
"Betriebssysteme auf dem selben\n"
"Rechner.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "GrĆ¶ĆŸe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s Kƶpfe, %s Sektoren\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM Platten %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellen Typ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
-#, fuzzy, c-format
-msgid "on channel %d id %d\n"
-msgstr "auf Bus %d ID %d\n"
-
-#: ../../diskdrake/interactive.pm_.c:1157
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
-msgid "Options: %s"
-msgstr "Optionen: %s"
+msgid "on channel %d id %d\n"
+msgstr "auf Kanal %d ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Dateisystem-SchlĆ¼ssel"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "WƤhlen Sie Ihren Dateisystem-SchlĆ¼ssel (Passwort)"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Die Passwƶrter stimmen nicht Ć¼berein"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "SchlĆ¼ssel"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "SchlĆ¼ssel (erneut)"
@@ -2101,20 +2326,17 @@ msgstr "Bitte wƤhlen Sie ein Medium"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgstr "Ich mich unter ā€ž%sā€œ micht anmelden! Stimmt das Passwort?"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "Authentifizierung"
+msgstr "DomƤnen-Authentifizierung nƶtig"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Internet"
+msgstr "Anderer"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
msgstr "Benutzerkennzeichen"
@@ -2122,40 +2344,39 @@ msgstr "Benutzerkennzeichen"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"Bitte geben Sie Benutzerkennzeichen, Passwort und DomƤne des Rechners an."
#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
msgid "Username"
msgstr "Benutzerkennzeichen"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "NIS Domain"
+msgstr "DomƤne"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, 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:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim AushƤngen von %s: %s"
@@ -2172,66 +2393,65 @@ msgstr "mit ā€ž/usrā€œ"
msgid "server"
msgstr "Server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Sie kƶnnen JFS nicht fĆ¼r Partitionen verwenden, die kleiner als 16MB sind!"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie kƶnnen ReiserFS nicht fĆ¼r Partitionen verwenden, die kleiner als 32MB "
"sind!"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "EinhƤngpunkte mĆ¼ssen mit einem / beginnen."
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem EinhƤngpunkt %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Sie kƶnnen kein logisches LVM Medium fĆ¼r den EinhƤngpunkt %s verwenden."
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss in der Verzeichnisbaumwurzel bleiben"
-#: ../../fsedit.pm_.c:500
-#, fuzzy
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"Sie benƶtigen ein echtes GNU/Linux Dateisystem (Ext2, ReiserFS) fĆ¼r \n"
-"diesen EinhƤngpunkt.\n"
+"Sie benƶtigen ein echtes GNU/Linux Dateisystem (Ext2/Ext3, ReiserFS, XFS "
+"oder JFS) fĆ¼r diesen EinhƤngpunkt.\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Sie kƶnnen kein verschlĆ¼sseltes Medium fĆ¼r den EinhƤngpunkt %s verwenden."
# ../../diskdrak1
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Nicht genug freier Platz, damit ich selbst Partition anlegen kann."
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Nichts zu tun."
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Ɩffnen von %s zum Schreiben: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2240,261 +2460,246 @@ msgstr ""
"denen neue Dateisysteme erstellt werden kƶnnen. Bitte Ć¼berprĆ¼fen Sie Ihre "
"Hardware(-Konfiguration) auf mƶgliche Fehler und falsche Einstellungen."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Sie haben keine Partitionen!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Autoerkennung durchfĆ¼hren"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generisch"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Karten Mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Einstellungen laden"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Typ Ƥndern"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Verlassen"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Hilfe"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Hilfe"
-
#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
-msgid "/_About..."
-msgstr "/Hilfe/_Ɯber ..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
-msgstr "Maus"
+msgstr "Modell"
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
-msgstr "Karten Mem (DMA)"
+msgstr "Festplattenmodell"
-#: ../../harddrake/ui.pm_.c:23
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
-msgstr " Abbruch "
+msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI Kanal"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
-msgstr ""
+msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
-msgstr "Maus"
+msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Beschreibung"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Authentifizierung"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Datei auswƤhlen"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway GerƤt"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
-msgstr "2 Tasten"
+msgstr "Anzahl Tasten"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
+msgstr "Herstellername des GerƤts"
+
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Beenden"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Hilfe"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Hilfe ..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "HardDrake Hilfe"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_Ɯber ..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "Ɯber HardDrake"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
-msgstr "Festplatten suchen"
+msgstr "HardDrake2 Version "
-#: ../../harddrake/ui.pm_.c:122
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
-msgstr "Hardware Informationen anzeigen"
+msgstr "Gefundene Hardware"
-#: ../../harddrake/ui.pm_.c:136
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Modul konfigurieren"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
-msgstr "Informationen anzeigen"
+msgstr "Informationen"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Maus konfigurieren"
+msgstr "Konfigurationswerkzeug starten"
-#: ../../harddrake/ui.pm_.c:168
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
-msgstr "an Prot %s gefunden"
+msgstr "Erkennung lƤuft"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Bitte warten"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
-msgstr ""
+msgstr "PrimƤr"
-#: ../../harddrake/ui.pm_.c:217
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
-msgstr "%d Sekunden"
+msgstr "SekundƤr"
-#: ../../harddrake/ui.pm_.c:260
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr "Sie kƶnnen alle Modulparamerter hier einstellen."
+
+#: ../../harddrake/ui.pm_.c:192
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Drucker ā€ž%sā€œ entfernen ..."
+msgstr "ā€ž%sā€œ ausfĆ¼hren ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Autoerkennung"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Unbekannt|Generisch"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Unbekannt|CPH05X (bt878) [Zahlreiche Hersteller]"
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Unbekannt|CPH06X (bt878) [Zahlreiche Hersteller]"
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Kartentyp:"
+
+#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Author:"
-msgstr "Automatische Erkennung"
+msgid "Tuner type :"
+msgstr "Tunertyp:"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "PLL-Einstellung:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Radiobetrieb:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "Radiobetrieb aktivieren"
+
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/de/drakx-help.xml
#: ../../help.pm_.c:13
@@ -4441,7 +4646,7 @@ msgstr ""
"WƤhlen Sie ā€žAbbruchā€œ, um die vorhandenen Daten unangetastet zu lassen und\n"
"die Operation abzubrechen."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4453,7 +4658,7 @@ msgstr ""
"Installationsmedium Ć¼bereinstimmt (Bitte erstellen Sie eine neue "
"Startdiskette). "
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Sie mĆ¼ssen auch %s formatieren."
@@ -4483,22 +4688,22 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
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:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4506,7 +4711,7 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: ā€žboot defcfg=floppyā€œ"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
@@ -4544,7 +4749,7 @@ msgstr ""
"\n"
"Wollen Sie trotzdem fortfahren?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sie mĆ¼ssen eine FAT Partition in ā€ž/boot/efiā€œ eingehƤngt haben."
@@ -4731,12 +4936,12 @@ msgstr ""
"Es trat ein Fehler auf. Ich weiƟ jedoch nicht, wie ich damit sinnvoll \n"
"umgehen soll. Sie kƶnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Den EinhƤngpunkt %s kopieren"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4748,12 +4953,12 @@ msgstr ""
"Testen Sie die CD-ROM auf einem Linux-Rechner mittels ā€žrpm -qpl \n"
"Mandrake/rpms/*.rpmā€œ\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfĆ¼gbar"
@@ -4763,7 +4968,7 @@ msgstr "Kein Disketten-Laufwerk verfĆ¼gbar"
msgid "Entering step `%s'\n"
msgstr "Beginn von Schritt ā€ž%sā€œ\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4776,81 +4981,81 @@ msgstr ""
"Installationsstart und geben Sie ā€žtextā€œ an der Eingabeaufforderung \n"
"ein."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Installationsart"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Bitte wƤhlen Sie eine der folgenden Installationsklassen:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "GesamtgrĆ¶ĆŸe: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "UngĆ¼ltiges Paket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Name: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Version: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "GrĆ¶ĆŸe: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Wichtigkeit: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Sie kƶnnen dieses Paket nicht auswƤhlen, da Sie nicht genug Plattenplatz "
"haben."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Die folgenden Pakete werden installiert werden"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Die folgenden Pakete werden entfernt"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Sie kƶnnen dieses Paket nicht auswƤhlen/es aus der Auswahl entfernen."
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Dieses Paket ist existenziell, sie kƶnnen es nicht deselektieren"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr ""
"Sie kƶnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4858,76 +5063,76 @@ msgstr ""
"Dieses Paket muss aktualisiert werden.\n"
"Sind Sie sicher, dass Sie es aus der Auswahl entfernen wollen?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Sie kƶnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es muss aktualisiert werden!"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Anzeige automatisch markierter Pakete"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Laden von/Speichern auf Diskette"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Erneuere Paket Auswahl"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimal-Installation"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswƤhlen"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Installation wird durchgefĆ¼hrt"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "SchƤtzung"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Verbleibende Zeit "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Bitte warten, bereite Installation vor"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d Pakete"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installation des Pakets %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akzeptieren"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "ZurĆ¼ckweisen"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4942,17 +5147,17 @@ msgstr ""
"dann drĆ¼cken Sie OK.\n"
"Falls Sie sie nicht vorliegen haben, drĆ¼cken Sie Abbruch."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -5374,104 +5579,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Bitte wƤhlen Sie Ihren Tastaturtyp."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Hier die Liste aller Tastaturen"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Welche Installationsart wollen Sie durchfĆ¼hren?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installation/Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Handelt es sich um eine Installation oder eine Aktualisierung?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Empfehlenswert"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Experte"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Aktualisierung"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Nur Pakete aktualisieren"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Bitte wƤhlen Sie Ihren Maustyp."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Maus Port"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bitte wƤhlen Sie den seriellen Anschluss, an dem Ihre Maus hƤngt."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Tastenemulation"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulation der 2. Taste"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulation der 3. Taste"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA Karten konfigurieren ..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE konfigurieren"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "Keine Partition verfĆ¼gbar"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Durchsuchen der Partitionen, um die EinhƤngpunkte zu finden."
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "WƤhlen Sie die EinhƤngpunkte"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5489,7 +5694,7 @@ msgstr ""
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lƶsche?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5497,7 +5702,7 @@ msgstr ""
"DiskDrake ist nicht in der Lage, Ihre Partitionstabelle korrekt zu \n"
"interpretieren. Sie kƶnnen fortfahren, jedoch auf eigenes Risiko!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5506,76 +5711,76 @@ msgstr ""
"Installation wird fortgesetzt, Sie mĆ¼ssen jedoch eine Start-Partition mit "
"DiskDrake erstellen."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr ""
"Es wurde keine Verzeichnisbaumwurzel gefunden, die aktualisiert werden kann."
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Verzeichnisbaumwurzel"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Welche Partition ist Ihre Verzeichnisbaumwurzel?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie mĆ¼ssen Ihren Rechner neu starten, um die Ƅnderungen \n"
"der Partitionstabelle wirksam werden zu lassen."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Zu formatierende Partitionen auswƤhlen"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten Blƶcken suchen?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Partitionen formatieren"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und formatieren der Datei %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Der Swap-Bereich ist zu klein, um die Installation zu ermƶglichen! \n"
"Bitte vergrĆ¶ĆŸern Sie den Bereich."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Suche nach vorhandenen Paketen"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Suche nach vorhandenen Paketen"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Finden der zu aktualisierenden Pakete"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr ""
"Sie kƶnnen dieses Paket nicht aus der Auswahl entfernen. \n"
"Es ist bereits installiert!"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Finden der zu aktualisierenden Pakete"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5584,7 +5789,7 @@ msgstr ""
"Es steht auf Ihrem System nicht genĆ¼gend Speicherplatz fĆ¼r die \n"
"Installation bzw. Aktualisierung zur VerfĆ¼gung (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5593,36 +5798,36 @@ msgstr ""
"oder darauf gespeichert werden soll. Es handelt sich um das \n"
"selbe Format, wie die unter ā€žauto_installā€œ erzeugten Disketten."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Von Diskette laden"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Laden von Diskette ..."
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Auswahl der Pakete"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr ""
"Legen Sie eine Diskette ein, auf der Ihre Paketauswahl gespeichert ist."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Auf Diskette speichern"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "GewĆ¼nschte GrĆ¶ĆŸe Ć¼bersteigt den verfĆ¼gbaren Platz"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5630,15 +5835,15 @@ msgstr ""
"Sie haben keine Paketgruppe ausgewƤhlt\n"
"Bitte wƤhlen Sie die minimale Installation, die Sie wĆ¼nschen."
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne ā€žurpmiā€œ)"
@@ -5658,11 +5863,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM ā€ž%sā€œ"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5671,23 +5876,23 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Einstellungen fĆ¼r nach der Installation"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5763,7 +5968,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5783,185 +5988,194 @@ msgstr ""
"\n"
"Mƶchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
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:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "WƤhlen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP Server"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "CUPS-Server auf der Gegenseite"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "VerfĆ¼gen Sie Ć¼ber eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
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:1028
+#: ../../install_steps_interactive.pm_.c:1029
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:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "Windows-Schriften verwenden"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS Server"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP Authentifizierung"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Windows-Schriften verwenden"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP Server"
+msgid "Authentication Windows Domain"
+msgstr "LDAP Authentifizierung"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Name der DomƤne"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5992,19 +6206,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:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Ɯberspringen"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6033,7 +6247,7 @@ msgstr ""
"Mƶchten Sie jetzt eine Startdiskette fĆ¼r Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -6047,31 +6261,31 @@ 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:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthƤllt in das %s "
"ein."
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6085,11 +6299,11 @@ msgstr ""
"ā€žBootXā€œ verwenden mĆ¼ssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Mƶchten Sie ā€žabootā€œ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6098,16 +6312,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die Zerstƶrung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "BS-Starter installieren"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6125,17 +6339,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6145,7 +6359,7 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6175,16 +6389,16 @@ 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:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact/"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6201,15 +6415,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzufĆ¼hren.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6236,24 +6450,35 @@ msgstr "Das Programm ā€žconsolehelperā€œ wurde nicht gefunden."
msgid "Choose a file"
msgstr "WƤhlen Sie eine Datei"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Fortgeschritten"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- ZurĆ¼ck"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Weiter ->"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ihre Wahl? (Standard ā€š%sā€˜) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6262,35 +6487,35 @@ msgstr ""
"Angaben, die Sie machen mĆ¼ssen:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ihre Wahl? (0/1, Standard ā€š%sā€˜) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "SchaltflƤche ā€ž%sā€œ: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Mƶchten Sie diese SchaltflƤche betƤtigen?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ihre Wahl? (Standard ā€ž%sā€œ %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Es gibt zahlreiche Auswahlmƶglichkeiten (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6299,7 +6524,7 @@ msgstr ""
"Bitte wƤhlen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
"oder betƤgen Sie die Eingabetaste um fort zu fahren.Ihre Wahl? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6308,327 +6533,379 @@ msgstr ""
"=> Anmerkung: Ein Eintrag wurde geƤndert:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Erneut verschicken"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tschechien (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Deutschland"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spanien"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finnland"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Frankreich"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norwegen"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polen"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Russland"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Schweden"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "GrƟbritannien"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanien"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenien (alt)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenien (Schreibmaschine)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenien (Phonetisch)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Aserbeidschan (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgien"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "aktivieren"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bulgarien (Phonetisch)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgarien (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasilien (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estland"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "WeiƟrussland"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Schweiz (deutsches Layout)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Schweiz (franzƶsisches Layout)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tschechien (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
-msgstr "Deutschland (ohne Tod-Tasten)"
+msgstr "Deutschland (ohne Akzenttasten)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "DƤnemark"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegen)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Schweden)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estland"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Griechenland"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungarn"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroatien"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israel"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israel (Phonetisch)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Island"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italien"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japan (106 Tasten)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Lateinamerika"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Lettland"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litauen (AZERTY - alt)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litauen (AZERTY - neu)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litauen (QWERTY - ā€žnumber rowā€œ)"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litauen (QWERTY - Phonetisch)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Lettland"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Mazedonien"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbien (Kyrillisches Layout)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Niederlande"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polen (QWERTY Layout)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polen (QWERTZ Layout)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugal"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "RumƤnien (QWERTZ)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "RumƤnien (QWERTY)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Russland (YaWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slowenien"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slowakei (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slowakei (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serbien (Kyrillisches Layout)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Indien (Tamilisches Layout)"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Indien (Tamilisches Layout - Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Indien (Tamilisches Layout - TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "ThailƤndische Tastatur"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tadschikistan"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "TĆ¼rkei (traditionelles ā€žFā€œ Modell)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "TĆ¼rkei (modernes ā€žQā€œ Modell)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukraine"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Vereinigte Staaten von Amerika (international)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam QWERTY (ā€žnumber rowā€œ)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslawien (Lateinisches Layout)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "AltGr-Taste"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Beide Umschalttasten gleichzeitig"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Strg und Umschalttaste gleichzeititg"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock Taste"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Strg und Alt gleichzeitig"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt und Umschalttaste gleichzeitig"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "MenĆ¼taste"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Linke ā€žWindowsā€œ-Taste"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Rechte ā€žWindowsā€œ-Taste"
@@ -6637,37 +6914,37 @@ msgstr "Rechte ā€žWindowsā€œ-Taste"
msgid "Circular mounts %s\n"
msgstr "Schleife bei den EinhƤngpunkten %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefonnummer"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Partitionen formatieren"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"Die PCMCIA-UnterstĆ¼tzung fĆ¼r 2.2er Kerne wurde eingestellt. Verwenden Sie "
"bitte einen 2.4er Kern."
@@ -6772,51 +7049,43 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Beenden"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Weiter ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- ZurĆ¼ck"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ist dies richtig?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Baum erweitern"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Baum verkleinern"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
@@ -6839,6 +7108,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "DHCP verwenden"
@@ -6866,7 +7139,7 @@ msgstr ""
"Ich habe keine Ethernet-Netzwerkkarte finden kƶnnen, daher kanndieser "
"Verbindungstyp nicht konfiguriert werden."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "WƤhlen Sie die Netzwerkkarte"
@@ -6881,7 +7154,7 @@ msgstr ""
msgid "no network card found"
msgstr "Keine Netzwerkkarte gefunden"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -6897,7 +7170,7 @@ msgstr ""
"Ihr Rechnername sollte auch die Domain beinhalten,\n"
"etwa ā€žmeinrechner.meineabteilung.meinefirma.deā€œ."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Rechnername"
@@ -6925,7 +7198,7 @@ msgstr "Um welchen Typ ISDN-Verbindung handelt es sich?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -7057,43 +7330,43 @@ msgstr "Bitte wƤhlen Sie den seriellen Anschluss, an dem Ihr Modem hƤngt."
msgid "Dialup options"
msgstr "Einwahl Parameter"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Name der Verbindung"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefonnummer"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skript-basiert"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-basiert"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Name der DomƤne"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Erster DNS Server (optional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
@@ -7207,13 +7480,13 @@ msgstr "WƤhlen Sie das Profil, dass eingestellt werden soll"
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "GerƤteerkennung..."
@@ -7332,7 +7605,7 @@ msgstr ""
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7344,7 +7617,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:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7354,43 +7627,43 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa ā€ž192.168.1.42ā€œ)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Beim Hochfahren gestartet"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7402,40 +7675,40 @@ msgstr ""
"etwa ā€žmeinrechner.meineabteilung.meinefirma.deā€œ.\n"
"Falls Sie ein Gateway verwenden, sollten Sie auch dessen IP-Adresse angeben."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway GerƤt"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Netzwerkkarten-ID Ć¼berwachen (sinnvoll fĆ¼r Laptops)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy muss ā€žhttp://...ā€œ sein"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy muss ā€žftp://...ā€œ sein"
@@ -7447,7 +7720,7 @@ msgstr "Internet Konfiguration"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mƶchten Sie jetzt versuchen eine Internetverbindung aufzubauen?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Ich teste gerade Ihre Verbindung..."
@@ -7477,43 +7750,43 @@ msgstr ""
"Bitte fĆ¼llen Sie die folgen Felder aus \n"
"bzw. makieren Sie die korrekten Angaben"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Karten IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Karten Mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Karten E/A"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Karten IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Karten IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Ihre eigene Telefonnummer"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Name des Providers (z.B. provider.net) "
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Telefonnummer des Providers"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Erster DNS des Providers (optional)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Zweiter DNS des Providers (optional)"
@@ -7521,28 +7794,28 @@ msgstr "Zweiter DNS des Providers (optional)"
msgid "Choose your country"
msgstr "Land auswƤhlen"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Wahlmodus"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Verbindungsgeschwindigkeit"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "VerbindungsTimeout (in Sec)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Kennzeichen (Login)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Passwort"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7579,7 +7852,7 @@ msgstr "Fehlerhafte Backup-Datei"
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7626,7 +7899,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7654,7 +7927,7 @@ msgstr "Entfernter Drucker"
msgid "Printer on remote CUPS server"
msgstr "Drucker an CUPS-Server auf der Gegenseite"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Drucker an lpd-Server auf der Gegenseite"
@@ -7670,7 +7943,7 @@ msgstr "Drucker an SMB/Windows 9x/ME/NT"
msgid "Printer on NetWare server"
msgstr "Drucker an NetWare Server"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Druckeranschluss URI"
@@ -7678,110 +7951,110 @@ msgstr "Druckeranschluss URI"
msgid "Pipe job into a command"
msgstr "Den Auftrag an ein Kommando weiterleiten"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Unbekanntes Modell"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Lokale Drucker"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Entfernte Drucker"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " an Parallelport \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB-Drucker \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", MultifunktionsgerƤt am Parallelport \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", USB MultifunktionsgerƤt"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", MultifunktionsgerƤt am HP JedDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", MultifunktionsgerƤt"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", drucken auf %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "auf LDP-Server ā€ž%sā€œ, Drucker ā€ž%sā€œ"
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP Drucker ā€ž%sā€œ, Port %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "auf Windows-Server ā€ž%sā€œ, Freigabe ā€ž%sā€œ"
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "auf dem Novell-Server ā€ž%sā€œ, Drucker ā€ž%sā€œ"
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", mittels Kommando ā€ž%sā€œ"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Rohdaten-Drucker (kein Treiber)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(an %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(an diesem Rechner)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Auf CUPS-Server ā€ž%sā€œ"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Standard)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "WƤhlen Sie die Drucker-Anbindung"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Wie ist der Drucker mit Ihrem Rechner verbunden?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7792,15 +8065,19 @@ msgstr ""
"hier keine Einstellungen vornehmen, die Drucker werden \n"
"automatisch erkannt und Ć¼bernommen."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "CUPS-Server angeben"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7819,7 +8096,7 @@ msgstr ""
"die Port Nummer angeben. Im lokalen Subnetz kƶnnen Sie die Felder\n"
"frei lassen."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7836,32 +8113,32 @@ msgstr ""
"ā€ž/etc/cups/cupsd.confā€œ selbst. Vergessen Sie nicht, CUPS anschlieƟend\n"
"neu zu starten (Befehl: ā€žservice cups restartā€œ)."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "Die IP Adresse sollte etwa die Form ā€ž192.168.1.42ā€œ haben!"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Die Prot Nummer muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-Server-IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Automatische CUPS Konfiguration"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Drucker hinzufĆ¼gen"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7882,51 +8159,67 @@ msgstr ""
"Sie werden nur nach den nƶtigen Informationen Ć¼ber den Drucker gefragt, um "
"Ihnen dann Zugriff auf Treiber, Druckoptionen und Anschlussart zu erhalten."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Lokaler Drucker"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Willkommen zum Druckereinrichtungsassistenten\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Dieser Assistent hilft Ihnen lokale Drucker einzurichten, dass dieser "
-"Rechner bzw. andere in Ihrem Netzwerk darauf drucken kƶnnen.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Bitte schlieƟen sie Ihre(n) Drucker an, und stellen Sie sicher dass das "
-"GerƤt/die GerƤte eingeschaltet ist/sind. BetƤtigen sie die SchaltflƤche "
-"ā€žWeiterā€œ, wenn Sie fortfahren mƶchten bzw. ā€žAbbruchā€œ, wenn Sie jetzt keinen "
-"Drucker einrichten mƶchten.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"In seltenen FƤllen kann es zum totalen stenenbleien des Rechners fĆ¼hren, "
-"wenn Sie eine Drucker-Selbsterkennung durchfĆ¼hren. Schalten Sie diese "
-"einfach aus, wenn Sie einen Drucker ohne Selbsterkennung durchfĆ¼hren wollen. "
-"Verwenden Sie den ā€žExpertenmodusā€œ von PrinterDrake, um einen entfernten "
-"Drucker einzurichten, falls er nicht automatisch aufgefĆ¼hrt wird."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Drucker-Selbsterkennung"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Lokaler Drucker"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7950,57 +8243,50 @@ msgstr ""
"DruckqualitƤt) anpassen wollen, wƤhlen Sie ā€žDruckerā€œ im ā€žHardwareā€œ\n"
"Bereich des Mandrake Kontrollzentrums."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Selbsterkennung von Druckern"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"PrinterDrake ist in der Lage Ihre Parallelport- und USB-Drucker selbst\n"
-"zu erkennen und einzurichten. In einigen seltenen FƤllen KANN ES JEDOCH\n"
-"ZUM TOTALEN STEHENBLEIBEN DES BETRIEBSSYSTEMS FƜHREN! Verwenden Sie \n"
-"diese Variante also AUF IHR RISIKO!\n"
-"\n"
-"Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Autoerkennung durchfĆ¼hren"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Drucker selbst einrichten"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP Drucker ā€ž%sā€œ, Port %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test der AnschlĆ¼sse"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Drucker an SMB/Windows 9x/ME/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "%s gefunden"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Drucker an Parallelport \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-Drucker \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Netzwerkdrucker (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Drucker an SMB/Windows 9x/ME/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -8012,35 +8298,23 @@ msgstr ""
"AnschlĆ¼sse: /dev/lp0, /dev/lp1, ..., Ƥquivalent zu LPT1:, LPT2:, ...; Erster "
"USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Sie mĆ¼ssen einen GerƤte- oder Dateinamen eingeben!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Kein Lokaler Drucker erkannt!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Netzwerkdrucker kƶnnen erst nach der Installation eingerichtet werden. "
-"WƤhlen Sie ā€žEinstellungen/Hardware/Druckerā€œ im Mandrake Kontrollzentrum."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Um Netzwerkdrucker zu installieren wƤen Sie bitte ā€žAbbruchā€œ, wechseln in den "
-"ā€žExpertenmodunsā€œ und wƤhlen erneut ā€žDrucker hinzufĆ¼genā€œ."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Lokaler Drucker"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -8049,7 +8323,7 @@ msgstr ""
"Drucker handelt, den Sie einrichten wollen, geben Sie einen GerƤte- oder "
"Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -8058,7 +8332,7 @@ msgstr ""
"gewĆ¼nschten Drucker oder geben Sie einen GerƤte- oder Dateinamen in der "
"Eingabezeile an."
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -8070,7 +8344,7 @@ msgstr ""
"oder wollen Sie die Einrichtung selbst vornehmen, wƤhlen Sie ā€žManuelle "
"Konfigurationā€œ."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -8082,7 +8356,7 @@ msgstr ""
"Ihr Drucker nicht richtig erkannt worden sein, oder wollen Sie die "
"Einrichtung selbst vornehmen, wƤhlen Sie ā€žManuelle Konfigurationā€œ."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -8090,11 +8364,11 @@ msgstr ""
"Bitte wƤhlen Sie den Anschluss, an dem der Drucker hƤngt oder geben Sie "
"einen GerƤte- oder Dateinamen in der Eingabezeile an."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Bitte wƤhlen Sie den Anschluss, an dem Ihr Drucker hƤngt."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -8103,65 +8377,19 @@ msgstr ""
"LPT2:, ..., Erster USB Drucker: /dev/usb/lp0, zweier USB Drucker: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Sie mĆ¼ssen einen Drucker wƤhlen/ein GerƤt eingeben!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Manuelle Konfiguration"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Ist Ihr Drucker ein MultifunktionsgerƤt von HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Installiere das ā€žHPOJā€œ-Paket ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "GerƤte untersuchen und HPOJ einrichten ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Installiere das ā€žSANEā€œ-Paket ..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Pakete Installieren ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Scannen mit Ihrem HP-MultifunktionsgerƤt"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Scannen mit Ihrem HP-MultifunktionsgerƤt"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "CUPS den Drucker-Port zugƤnglich machen ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Lesen der Drucker-Datenbank ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Optionen fĆ¼r Netzwerk-Druckerspooler"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8170,27 +8398,47 @@ msgstr ""
"Rechnernamen des Drucker-Servers sowie den Druckernamen auf diesem Server "
"angeben, an den die AuftrƤge Ć¼bertragen werden sollen."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Name des entfernten Rechners"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Name des entfernten Druckers"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Der Name des entfernten Rechners fehlt!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Der Name des entfernten Druckers fehlt!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s gefunden"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Netzwerk starten ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "auf Windows-Server ā€ž%sā€œ, Freigabe ā€ž%sā€œ"
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Drucken auf Drucker ā€ž%sā€œ"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Drucker-Parameter"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8203,35 +8451,46 @@ msgstr ""
"fĆ¼r den Drucker, auf den Sie zugreifen mƶchten, sowie entsprechender "
"Benutzername, Passwort und Arbeitsgruppe."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB-Server"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB-Server-IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Freigabename"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Arbeitsgruppe"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Autoerkennung durchfĆ¼hren"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Sie mĆ¼ssen entweder Den Servernamen oder seine IP-Adresse angeben!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Der Name der Samba-Freigabe fehlt!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8255,7 +8514,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8264,7 +8523,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8272,11 +8531,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Optionen fĆ¼r NetWare-Drucker"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8288,32 +8547,49 @@ msgstr ""
"Rechnernamen des Computers), Name der Drucker-Warteschlange, sowie falls "
"notwendig, den entsprechenden Benutzernamen samt Passwort."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Drucker-Server"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Name der Druckerwarteschlange"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Der NCP Servername fehlt!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Der NCP Warteschlangen-Name fehlt!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP Drucker ā€ž%sā€œ, Port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP Drucker ā€ž%sā€œ, Port %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Optionen fĆ¼r TCP/Socket-Drucker"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Um einen TCP- oder Socket-Drucker verwenden zu kƶnnen, mĆ¼ssen Sie auf alle "
"FƤlle dessen Rechnernamen, mƶglicherweise auch den Port, angeben. Bei HP "
@@ -8321,19 +8597,21 @@ msgstr ""
"Servern kann es eine andere sein. Schauen Sie im Zweifelsfall in die "
"Unterlagen Ihrer Hardware."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Rechnername des Druckers"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Der Rechnername des Druckers fehlt!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Rechnername des Druckers"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Druckeranschluss URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8343,11 +8621,11 @@ msgstr ""
"bzw. den Foomatic Spezifikationen genĆ¼gen. Es sei hier noch angemerkt, dass "
"nicht alle URI-Typen von allen Drucksystemem unterstĆ¼tzt werden."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Sie mĆ¼ssen eine gĆ¼ltige URI eingeben!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8356,23 +8634,27 @@ msgstr ""
"Beschreibung und Standort mĆ¼ssen nicht ausgefĆ¼llt werden.\n"
"Sie dienen nur als Kommentare fĆ¼r den Anwender."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Druckername"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Standort"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Lesen der Drucker-Datenbank ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Vorbereiten der Drucker-Datenbank ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Ihr Druckermodell"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8398,24 +8680,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Das Modell ist richtig"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Modell auswƤhlen"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Auswahl des Druckertyps"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Ɯber welchen Druckertyp verfĆ¼gen Sie?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8429,7 +8711,7 @@ msgstr ""
"Falls die Markierung auf einem falschen GerƤt oder auf ā€žRohdaten-Druckerā€œ "
"steht, suchen Sie bitte selbst Ihren Drucker in der Liste."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8437,11 +8719,11 @@ msgstr ""
"Falls Ihr Drucker nicht aufgefĆ¼hrt ist wƤhlen Sie bitte ein kompatibles bzw "
"Ƥhnliches Modell (FĆ¼r Einzelheiten schauen Sie bitte in Ihr Druckerhandbuch)."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI Win-Drucker Konfiguration"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8456,11 +8738,11 @@ msgstr ""
"Schnittstelle oder an einer Printserver-Box hƤngen, schlieƟen Sie ihn bitte "
"an den ersten Parallelport, bevor Sie versuchen eine Testseite zu drucken ..."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark Tintenstrahl-Konfiguration"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8472,7 +8754,7 @@ msgstr ""
"Sie den Druker direkt an Ihren Rechner oder richten Sie ihn auf dem Rechner "
"ein, an den er angeschlossen ist."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8494,7 +8776,7 @@ msgstr ""
"auf ā€žAbbruchā€œ drĆ¼cken. Drucken Sie dann Druckkopf-Einrichtungsseiten mit "
"ā€žlexmarkmaintainā€œ und justieren Sie damit den Druckkopf."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8510,22 +8792,22 @@ msgstr ""
"richtig eingestellt sind. Es sei auch angemerkt, dass hƤufig mit steigender "
"DruckqualitƤt die Druckgeschwindigkeit sinkt."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Der Parameter %s ist yu groƟ oder zu klein!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8534,11 +8816,11 @@ msgstr ""
"Mƶchten Sie diesen Drucker (ā€ž%sā€œ)\n"
"als Standarddrucker verwenden?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Testseiten"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8552,39 +8834,39 @@ msgstr ""
"gedruckt wird. Normalerweise sollte es ausreichen, die Standard-Testseiten "
"auszudrucken."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Keine Testseiten"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Drucken"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standard-Testseite"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternative Testseite (US-Format - ā€žLetterā€œ)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternative Testseite (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Foto-Testseite"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Keine Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Druck der Testseite(n) ..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8599,7 +8881,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8607,15 +8889,15 @@ msgstr ""
"Die Testseite(n) wurden an den Drucker gesandt.\n"
"Es kann einen Augenblick dauern, bevor der Drucker seine Arbeit aufnimmt.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "War der Ausdruck korrekt?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Rohdaten-Drucker"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8629,7 +8911,7 @@ msgstr ""
"grafischen Hilfsprogramme erlauben Ihnen auf einfache Weise den richtigen "
"Drucker zu wƤhlen und die notwendigen Druckerparameter anzugeben.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8639,8 +8921,8 @@ msgstr ""
"zahlreicher Anwendungen angeben, lassen Sie jedoch den Dateinamen weg, da "
"die zu druckende Datei von der Anwendung geliefert wird.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8653,7 +8935,7 @@ msgstr ""
"bestimmten Druckauftrag zu Ƥndern. Geben Sie die gewĆ¼nschten Angaben einfach "
"in der Kommandozeile mit an, etwa: ā€ž%s <Datei>ā€œ. "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8665,7 +8947,7 @@ msgstr ""
"Drucker-Optionenā€œ. %s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8673,7 +8955,7 @@ msgstr ""
"Hier die Liste vorhandener Drucker-Parameter des aktuellen Druckers:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8682,8 +8964,8 @@ msgstr ""
"Verwenden Sie den Befehl ā€ž%s <Datei>ā€œ, um die Datei <Datei> in der "
"Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8693,7 +8975,7 @@ msgstr ""
"angeben. Tragen Sie bitte keinen Dateinamen ein, da dieser vom Programm "
"ergƤnzt wird.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8701,7 +8983,7 @@ msgstr ""
"Um eine Liste der Drucker-Parameter Ihres Druckers zu erhalten, betƤtigen "
"Sie bitte die SchaltflƤche ā€žListe der Drucker-Optionenā€œ."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8710,7 +8992,7 @@ msgstr ""
"Verwenden Sie einen der Befehle ā€ž%s <Datei>ā€œ oder ā€ž%s <Datei>ā€œ, um die Datei "
"<Datei> in der Kommandozeile auszudrucken.\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8726,7 +9008,7 @@ msgstr ""
"DruckauftrƤge anhƤ, wenn Sie es betƤgen. Das kann beispielsweise dann "
"hilfreich sein, wenn Sie einen Papierstau in Ihrem Drucker haben.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8739,45 +9021,45 @@ msgstr ""
"spezeiellen Druckjobs zu konfigurieren. FĆ¼gen Sie einfach die gewĆ¼nschten "
"Einstellungen in der Kommandozeile ein, etwa ā€ž%s <Datei>ā€œ.\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Drucken/Scannen mit ā€ž%sā€œ"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Drucken/Scannen mit ā€ž%sā€œ"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Drucken/Scannen mit ā€ž%sā€œ"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Drucken auf Drucker ā€ž%sā€œ"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "SchlieƟen"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Liste der Drucker-Optionen"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8796,9 +9078,9 @@ msgstr ""
"\n"
"Verwenden Sie fĆ¼r dieses GerƤt nicht ā€žScannerDrakeā€œ!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8809,17 +9091,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8835,7 +9117,7 @@ msgstr ""
"Warteschlange gehen jedoch verloren.\n"
"Nicht alle Warteschlangen kƶnnen Ć¼bernommen werden:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8843,7 +9125,7 @@ msgstr ""
"CUPS unterstĆ¼tzt keine Druker an Novel Servern oder Drucker, die ihre Daten "
"in ein frei gewƤhltes Kommando senden.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8851,11 +9133,11 @@ msgstr ""
"PDQ unterstĆ¼tzt nur lokale Drucker, entfernte LPD Drucker und Socket/TCP "
"Drucker.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD und LPRng unterstĆ¼keine IPP Drucker.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8863,7 +9145,7 @@ msgstr ""
"Warteschlangen, die nicht mit diesem Programm oder ā€žfoomatic-configureā€œ "
"ertellt wurden, kƶnnen nicht Ć¼bertragen werden."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8873,7 +9155,7 @@ msgstr ""
"Drucker, die mit den PPD-Dateien ihrer Hersteller oder CUPS-spezifischen "
"Treibern eingerichtet wurden, kƶnnen nicht Ć¼bertragen werden."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8883,15 +9165,15 @@ msgstr ""
"Markieren Sie die Druckerwarteschlangen, die sie Ć¼bertragen wollen und "
"betƤtigen Sie die SchaltflƤche ā€žĆœbertragenā€œ."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Druckerdaten nicht Ć¼bertragen"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Ɯbertragen"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8903,12 +9185,12 @@ msgstr ""
"Ć¼berschreiben. Sie kƶnnen dem Drucker auch einen neuen \n"
"Namen geben oder ihn einfach Ć¼berspringen."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Druckernamen sollten nur Buchstaben, Ziffern und den Unterstrich unterhalten"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8917,16 +9199,16 @@ msgstr ""
"Der Drucker ā€ž%sā€œ existiert bereits. Wollen Sie ihn wirklich \n"
"ersetzen?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Neuer Druckername"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Ɯbertragen von ā€ž%sā€œ ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8935,29 +9217,29 @@ msgstr ""
"Sie haben Ihren alten Standarddrucker (ā€ž%sā€œ) Ć¼bertragen, soll es auch Ihr "
"Standarddrucker unter dem neuen Drucksystem ā€ž%sā€œ werden?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Aktualisieren der Druckerdaten ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Konfiguration eines entfernten Druckers"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Netzwerk starten ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Netzwerk jetzt konfigurieren"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Ihr Netzwerk ist nicht konfiguriert"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8969,11 +9251,11 @@ msgstr ""
"Sollten Sie dennoch fortfahren, ohne Ihr Netzwerk einzurichten, ist der "
"Drucker hinterher nicht zu verwenden. Wie wollen Sie fortfahren?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Weiter ohne Netzwerkkonfiguration"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8989,7 +9271,7 @@ msgstr ""
"anschlieƟend erneut den Drucker mittels ā€žHardware/Druckerā€œim Kontrollzentrum "
"einzurichten."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -9000,24 +9282,24 @@ msgstr ""
"und Ihre Softwareeinstellngen. Versuchen Sie anschlieƟend erneut den "
"entfernten Drucker einzurichten."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Drucksystem neu starten ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "Hoch"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "Paranoid"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation eines Drucksystems in Sicherheitsebene %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -9042,11 +9324,11 @@ msgstr ""
"\n"
"Wollen Sie wirklich dieses Drucksystem auf diesem Rechner installieren?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Drucksystem beim BS-Start aktivieren"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -9067,63 +9349,63 @@ msgstr ""
"\n"
"Wollen sie den automatischen Start des Drucksystems wieder herstellen?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Suche nach installierter Software"
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Entfernen von LPRng ..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Entfernen des LPD ..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "WƤhlen Sie das Drucksystem"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Welches Drucksystem (Spooler) wollen Sie verwenden?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurieren von Drucker ā€ž%sā€œ ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Installieren des Pakets Foomatic ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Drucker-Optionen"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake vorbereiten ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Anwendungen konfigurieren ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Mƶchten Sie einen Drucker konfigurieren?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Drucksystem: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -9135,7 +9417,7 @@ msgstr ""
"verwenden, Informtionen Ć¼ber ihn zu erhalten oder einen entfernten CUPS-"
"Server fĆ¼r Star/OpenOffice zugƤnglich zu machen."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9145,32 +9427,28 @@ msgstr ""
"Doppelklick auf einem aus, um ihn zu Ƥndern, als Standarddrucker zu "
"verwenden oder Informtionen Ć¼ber ihn zu erhalten."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Aktualisiere Druckerliste (um alle entfernten CUPS-Drucker anzuzeigen)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Drucksystem Ƥndern"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normaler Modus"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlassen"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Mƶchten Sie einen weiteren Drucker einrichten?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Drucker-Konfiguration Ƥndern"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -9179,102 +9457,102 @@ msgstr ""
"Drucker %s\n"
"Was wollen Sie an diesem Drucker Ƥndern?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "AusfĆ¼hren!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Art der Druckeranbindung"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Druckername, Beschreibung, Standort"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Druckerproduzent, Modell, Treiber"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Druckerproduzent, Modell"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Als Standarddrucker verwenden"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĆ¼r StarOffice/OpenOffice.org hinzufĆ¼gen"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Diesen Drucker fĆ¼r StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Testseite(n) drucken"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Wie dieser Drucker genutzt werden kann"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Drucker entfernen"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Alten Drucker ā€ž%sā€œ entfernen ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Standarddrucker"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Der Drucker ā€ž%sā€œ ist jetzt Ihr Standarddruckerā€œ"
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Drucker fĆ¼r StarOffice/OpenOffice.org hinzufĆ¼gen"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
"Der Drucker ā€ž%sā€œ wurde erfogrich zu StarOffice/OpenOffice.org hinzugefĆ¼gt."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Fehler beim HinzufĆ¼gen von ā€ž%sā€œ fĆ¼r StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Drucker fĆ¼r StarOffice/OpenOffice.org entfernen"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Der Drucker ā€ž%sā€œ wurde erfogrich fĆ¼r StarOffice/OpenOffice.org entfernt."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Fehler beim Entfernen von ā€ž%sā€œ fĆ¼r StarOffice/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mƶchten Sie den Drucker ā€ž%sā€œ wirklich entfernen?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Drucker ā€ž%sā€œ entfernen ..."
@@ -9331,8 +9609,9 @@ msgstr ""
"alle Felder leer."
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Die URL muss mit ā€žftp:ā€œ beginnen"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Die URL muss mit ā€žhttp:ā€œ beginnen"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9382,46 +9661,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
-"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
-"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
-"da Angreifer mangels Passwort an Ihre Daten gelangen kƶnnen!"
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Mit dieser Sicherheitsebene wird es mƶglich, das System als einen \n"
-"Server zu verwenden.\n"
-"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
-"einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
-"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
-"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
-"verwenden sollte."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Erweiterte Einstellungen"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Optionen"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -9763,7 +10002,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "System"
@@ -9894,7 +10133,7 @@ msgstr ""
"Entwicklungsumgebungen."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrollzentrum"
@@ -10014,22 +10253,22 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact/"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
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:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
"Bitte loggen Sie sich erneut in %s ein, \n"
"um die Ƅnderungen wirksam werden zu lassen."
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -10037,174 +10276,174 @@ msgstr ""
"Ich kann Ihre Partitionstabelle nicht lesen, sie ist fehlerhaft :-(\n"
"Um fortfahren zu kƶnnen setze ich die fehlerhaften Partitionen zurĆ¼ck"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Drucker-Einstellung transferieren"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Datenbankserver"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Datenbankserver"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS Server"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS Server"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Benutzer hinzufĆ¼gen"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Hilfe"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nicht Verbunden"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Lƶschen"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Alle auswƤhlen"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Benutzer hinzufĆ¼gen"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "neu konfigurieren"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Bitte legen Sie die Startdiskette in Laufwerk %s ein."
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Kein Disketten-Laufwerk verfĆ¼gbar"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Fehler!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ich kann die benƶtigte Abbild-Datei ā€ž%sā€œ nicht finden."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Auto-Installationskonfigurator"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -10230,11 +10469,11 @@ msgstr ""
"\n"
"Wollen Sie fortfahren?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Automatische Konfiguration der Schritte"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -10242,12 +10481,12 @@ msgstr ""
"Bitte wƤhlen Sie fĆ¼r jeden Schritt, ob er wie bei Ihrer Installation "
"vorgenommen werden soll, oder ob Sie ihn manuell durchfĆ¼hren wollen."
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -10259,12 +10498,12 @@ msgstr ""
"\n"
"Die Parameter der Autoinstallation sind in den Abschnitten rechts verfĆ¼gbar."
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Gratuliere!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -10272,19 +10511,32 @@ msgstr ""
"Die Diskette wurde erfolgreich erstellt.\n"
"Sie kƶnnen die Installation nun automatisch durchfĆ¼hren."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Auto-Installation"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Eintrag hinzufĆ¼gen"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Letzten Eintrag entfernen?"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10294,7 +10546,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10305,7 +10557,7 @@ msgstr ""
" DrakBackup DƤmon Report\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10316,31 +10568,95 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Auf Bandlaufwerk sichern"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -10348,7 +10664,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -10357,7 +10673,7 @@ msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -10368,37 +10684,41 @@ msgstr ""
"(!) FTP Verbindungsprobleme: Es war nicht mƶglich, Ihre Dateien per FTP zu "
"Ć¼bertragen.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
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:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10406,26 +10726,27 @@ msgstr ""
"\n"
"Bitte wƤhlen Sie alle benƶtigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis ā€ž/etcā€œ)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht Ć¼berschreiben)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10433,41 +10754,62 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"ā€ž/etcā€œ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Ɯbertragen"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10476,43 +10818,69 @@ msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+#, fuzzy
+msgid "Need hostname, username and password!"
+msgstr "Ich mich unter ā€ž%sā€œ micht anmelden! Stimmt das Passwort?"
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Bitte wƤhlen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Bitte markieren, falls Sie \n"
-"ā€žinstall bootā€œ auf Ihrer CD haben wollen."
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Ɯbertragen"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10520,21 +10888,36 @@ msgstr ""
"Bitte geben Sie den GerƤtenamen \n"
"Ihres Brenners an, etwa ā€ž0,1,0ā€œ."
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Datei auswƤhlen"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den GerƤtenamen fĆ¼ Archivierung an."
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10542,57 +10925,57 @@ msgstr ""
"Bitte geben Sie die MaximalgrĆ¶ĆŸe \n"
"fĆ¼r DrakBackup an."
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Quota fĆ¼r Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Typ"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "stĆ¼ndlich"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "tƤglich"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "wƶchendlich"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "DƤmon verwenden"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10600,7 +10983,7 @@ msgstr ""
"Bitte wƤhlen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10608,7 +10991,7 @@ msgstr ""
"Bitte wƤhlen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10616,59 +10999,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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Bitte wƤhlen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "Ć¼ber Netzwerk"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Bitte wƤhlen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswƤhlen"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10676,7 +11071,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10684,7 +11079,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10692,7 +11087,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10700,7 +11095,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10709,22 +11104,32 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10733,12 +11138,12 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10747,7 +11152,7 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10756,7 +11161,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10764,19 +11169,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden ā€žtarā€œ und ā€žbzip2ā€œ\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden ā€žtarā€œ und ā€žgzipā€œ\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10785,42 +11190,42 @@ msgstr ""
"\n"
"- DƤmon (%s) enthƤlt:\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. WƤhlen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10828,7 +11233,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10836,138 +11241,135 @@ msgstr ""
"Liste der beschƤdigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
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:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschƤdigt."
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Alle Ihre gewƤlhten Daten wurden "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "OK, die Ć¼brigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Bitte wƤhlen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP Verbindung"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Sichere Verbindung"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "WƤhlen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt ā€ž/ā€œ"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur fĆ¼r inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "BenutzergefĆ¼hrte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "<- ZurĆ¼ck"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Weiter ->"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10975,9 +11377,9 @@ msgstr ""
"Bitte erstellen Sie eine Sicherung, bevor Sie wiederherstellen kƶnnen.\n"
"oder stellen Sie sicher, dass der Pfad zu den Sicherungen korrekt ist."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10985,14 +11387,14 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11001,19 +11403,19 @@ msgstr ""
"Fehler bei der Ɯertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Bitte wƤhlen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Bitte wƤhlen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Bitte wƤhlen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11021,75 +11423,60 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wƤhlen Sie den ā€žAssistentenā€œ oder ā€žErweitertā€œ."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "DatenĆ¼agung via FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Dateien Ć¼bertragen ..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Liste der Daten, die auf CD-ROM sollen."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Bitte markieren, falls Sie ā€žinstall bootā€œ auf Ihrer CD haben wollen."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "AssistentengestĆ¼tzte Konfiguration"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -11100,7 +11487,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -11151,7 +11538,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11166,7 +11553,7 @@ msgstr ""
" in ā€ž/etc/postfix/main.cfā€œ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -11190,7 +11577,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -11249,21 +11636,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -11277,18 +11664,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -11318,7 +11705,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:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11358,7 +11745,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11376,7 +11763,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11399,7 +11786,7 @@ msgstr ""
"Seien Sie daher vorsichtig und Ƥndern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11438,96 +11825,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Die Installation von %s schlug Fehl. Folgender Fehler trat auf:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolen-Werkzeuge"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "auf Festplatte"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakeConsulting"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Maus"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Entfernter Drucker"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Freigabename"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "PrinterDrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Netzwerk Konfigurationsassistent"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Authentifizierung"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Auswahl der Pakete"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Bitte warten"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11539,141 +11953,141 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Nach dem Entfernen"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Nach dem Entfernen"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Die Bildschim-SchnappschĆ¼sse liegen nach der Installation unter ā€ž%sā€œ"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Netzwerk Konfiguration (%d Karten)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Profil lƶschen..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Zu lƶschendes Profil: "
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Neues Profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr "Name des neuen Profils (es wird als Kopie des aktuellen erstellt):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Rechnername: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internetzugang"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Typ:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Schnittstelle:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Bitte Warten"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Internet-Zugang konfigurieren"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN Konfiguration"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Treiber"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Schnittstelle"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokoll"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Status"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Netzwerk konfigurieren"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Hier starten Sie den Assistenten ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Assistent..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Anwenden"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Einen Moment ... ich richte die Konfiguration ein"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Verbunden"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nicht Verbunden"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Verbinden ..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Trenne Verbindung ..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11681,7 +12095,7 @@ msgstr ""
"WARNUNG: Es wurde bereits eine Internetverbindung gefunden. Vielleicht nutzt "
"diese ihr Netzwerk."
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11690,36 +12104,36 @@ msgstr ""
"Sie kƶnnen dies tun, indem Sie die SchaltflƤche \n"
"ā€žKonfigurierenā€œ betƤtigen."
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN Konfiguration"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapter %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Boot-Protokoll"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Beim Hochfahren gestartet"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP Klient"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Jetzt aktivieren"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "Jetzt deaktivieren"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11727,7 +12141,7 @@ msgstr ""
"Diese Schnittstelle wurde noch nicht eingerichtet.\n"
"Starten Sie den Konfigurationsassistenten im Hauptfenster."
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11736,121 +12150,121 @@ msgstr ""
"Sie kƶnnen dies tun, indem Sie die SchaltflƤche \n"
"ā€žKonfigurierenā€œ betƤtigen."
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Konfiguration der Internetverbindung"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Konfiguration der Internetverbindung"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Verbindungstyp: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameter"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-Klient"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "Verwendung: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr " Modulname "
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr " GrĆ¶ĆŸe "
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "DrakFloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr " Standard "
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy Fehler: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Kernversion"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Allgemein"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Experten Bereich"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "Optionale Parameter fĆ¼r ā€žmkinitrdā€œ"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Modul hinzufĆ¼gen"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr " mit Gewalt "
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr " falls Nƶtig "
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr " SCSI Module weglassen "
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr " RAID-Module weglassen "
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Modul entfernen"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ausgabe"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr " Diskette erstellen "
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11859,12 +12273,12 @@ msgstr ""
"In Laufwerk %s liegt kein Medum.\n"
"Bitte legen Sie eins ein."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ich kann nicht forken: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11875,99 +12289,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Suche installierte Schriften"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Auswahl installierter Schriften zurĆ¼cksetzen"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "Alle Schriften analysieren"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "Keine Schriften gefunden"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "Fertig"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "Ich konnte keine Schriften in Ihren eingehƤngten Partitionen finden"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Neuwahl korrekter Schriften"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "Konnte keine Schriften finden.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Suche installierter Schriften"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Kopiere Schriften"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Installation von TrueType Schriften"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "Bitte warten Sie ttmkfdir arbeitet ..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "TrueType Installation beendet"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Konvertieren der Schriften"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "Erzeuge ā€žtype1instā€œ"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscriptreferenz"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm-Schriftkonvertierung"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "TemporƤre Dateien lƶschen"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Neustart des X-FontServers"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Schriftdateien lƶschen"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs Neustart"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11981,109 +12395,113 @@ msgstr ""
"- Sie kƶnnen die Schriften auf normalem Weg einbinden. In seltenen FƤllen \n"
"kƶnnen defekte Schriften den X-Server lahmlegen."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Schriften einbinden"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Windows-Schriften verwenden"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Schiften deinstallieren"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Erweiterte Einstellungen"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Font-Liste"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "WƤhlen Sie die Programme, die die Schriften verwenden sollen:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Generische Drucker"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"WƤhlen Sie eine Schriftdatei bzw. ein Verzeichnis und betƤtigen Sie "
"ā€žHinzufĆ¼genā€œ"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Liste installieren"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "Klicken Sie hier, wenn Sie sicher sind."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "Hier, falls nicht."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Markierung lƶschen"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Alle auswƤhlen"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Liste entfernen"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Vortests"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Schriften auf Ihren Rechner kopieren"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Installiere und konvertiere Fonts"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Nach der Installation"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Entfernen von Schriftarten auf Ihrem Rechner"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Teilen der Internet-Verbindung"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Teilen der Internetverbindung momentan eingeschaltet."
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12095,31 +12513,31 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "deaktivieren"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Verwerfen"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "neu konfigurieren"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Server deaktivieren ..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Teilen der Internet-Verbindung ist nun abgeschaltet."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Teilen der Internet-Verbindung momentan abgeschaltet."
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12131,19 +12549,19 @@ msgstr ""
"\n"
"Was wollen Sie tun?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "aktivieren"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Server aktivieren ..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Teilen der Internetverbindung ist nun eingeschaltet."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12158,21 +12576,21 @@ msgstr ""
"Anmerkung: Sie benƶtigen eine Netzwerkkarte, mit deren Hilfe Sie ein \n"
"lokales Netz (LAN) aufsetzen kƶnnen."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Schnittstelle: %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Sie haben keine Netzwerkkarte!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12180,11 +12598,11 @@ msgstr ""
"Ihr Rechner hat keine konfigurierte Netzwerkkarte. Bitte verwenden Sie erst "
"HardDrake, bevor Sie weiter machen."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Netzwerkkarte"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12199,7 +12617,7 @@ msgstr ""
"\n"
"Ich setze ihr lokales Netz damit auf."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -12207,11 +12625,11 @@ msgstr ""
"Bitte wƤhlen Sie die Netzwerkkarte, die mit Ihrem lokalen Netzwerk \n"
"verbunden ist."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Ihr Netzwerk ist bereits konfiguriert"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12227,15 +12645,15 @@ msgstr ""
"Sie kƶnnen auch eine manuelle Einrichtung vornehmen - dafĆ¼r sollten Sie "
"jedoch wissen, wie das funktioniert."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automatische Rekonfiguration"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Aktuelle Schnittstellenkonfiguration anzeigen"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12252,7 +12670,7 @@ msgstr ""
"IP-Eigenschaften: %s\n"
"Treiber: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12272,34 +12690,34 @@ msgstr ""
"Server fĆ¼r Sie aufsetzen.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Lokales Klasse-C Netzwerk"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "(Diese) DHCP-Server IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Neu konfigurieren des GerƤts und des DHCP-Servers"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Das lokale Netzwerk endet nicht auf ā€ž.0ā€œ - bereinige."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Es liegt ein mƶglicher LAN-Adressen Konflikt in der Konfiguration\n"
"von %s vor!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Ich habe eine Firewall-Konfiguration gefunden!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -12308,20 +12726,20 @@ msgstr ""
"Mƶglicherweise mĆ¼ssen Sie nach der Installation einige Einstellungen \n"
"von Hand vornehmen."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigurieren ..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skripte konfigurieren, Software installieren, Dienste starten ..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme beim Installieren von Paket %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12332,24 +12750,24 @@ msgstr ""
"lokalen Netz mittels automatischer Netzwerk-Konfiguration (DHCP) \n"
"teilen."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Die Einstellungen wurden bereits vorgenommen, sie sind nur nicht aktiviert."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die Einstellungen wurden bereits vorgenommen und sind aktiv."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Teilen der Internetverbindung wurde noch nicht konfiguriert."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Teilen der Internetverbindung - Konfiguration"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12365,20 +12783,13 @@ msgstr ""
"\n"
"WƤhlen Sie ā€žKonfigurierenā€œ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrollzentrum"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "WƤhlen Sie das Werkzeug, das Sie verwenden wollen"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12388,106 +12799,110 @@ msgid ""
msgstr ""
# ../../standalone/drakxtv_.c:37Ƨ
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (Kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "USA (terrestrisch)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (Kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (Kabel-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "China (terrestrisch)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "Japan (terrestrisch)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japan (Kabel)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Osteuropa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Frankreich"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irland"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Westeuropa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australien"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Neuseeland"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "SĆ¼dafrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentinien"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Bitte geben Sie Ihre Fernsehnorm und Region ein"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Fernsehnorm:"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Region:"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Sendersuche ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Sendersuche..."
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -12511,11 +12926,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Bitte wƤhlen Sie Ihren Tastaturtyp."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Wollen Sie, dass die RĆ¼cktaste auf den Konsolen Entfernen sendet?"
@@ -12542,7 +12957,7 @@ msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "LogDrake"
@@ -12650,22 +13065,25 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Inhalt der LogbĆ¼cher"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "E-Mail/SMS Benachrichtigung"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "Einen Moment, ich durchsuche: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Mail/SMS Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12673,126 +13091,127 @@ msgstr ""
"\n"
"Hier kƶnnen Sie Ihr Benachrichtigungssystem einrichten.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Name der DomƤne"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS Server"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr ""
"Postfix E-Mail-Server und\n"
"Inn Diskussionsforen-Server"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS Server"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS Server"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Dienste"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Drucker-Server"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "Dienste einstellen"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Sie weden benachrtichtigt, falls einer der gewƤhlten Dienste nichtmehr "
"verfĆ¼gbar ist."
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "Einstellungen laden"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Sie erhalten eine Nachricht, wen die Load Ć¼ber diesen Wert steigt"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "Benachrichtigungskonfiguration"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Speichern unter..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Bitte wƤhlen Sie Ihren Maustyp."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "Kein ā€žserial_usbā€œ gefunden\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Die dritte Maustaste emulieren?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Lesen der Treiber-Datenbank ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "GerƤteerkennung..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Test der AnschlĆ¼sse"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s an %s gefunden. Wolen Sie ihn einrichten?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "WƤhlen Sie einen Scanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Dieser %s Scanner wird nicht unterstĆ¼tzt"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Boot GerƤt"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12803,7 +13222,7 @@ msgstr ""
"Sie kƶnnen Pronterdrake im Mandrake-Kontrollzentrum im Hardware-Bereich "
"starten."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12823,15 +13242,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Firewall-Konfiguration"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Firewall-Konfiguration"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12844,7 +13263,7 @@ msgstr ""
"WƤhlen Sie die SchaltflƤche ā€žKonfigurierenā€œ,\n"
"um sie zu lƶschen oder zu verƤndern."
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -13098,48 +13517,48 @@ msgstr "Ich kann ā€ž%sā€œ nicht ƶffnen: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Ich kann ā€ž%sā€œ nicht zum Schreiben ƶffnen: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Nein, ich benƶtige kein DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Ja, ich benƶtige DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Nein, ich benƶtige kein NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Ja, ich benƶtige NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Nicht speichern"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Speichern und beenden"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Firewall-Konfigurationsassistent"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Nein (Vom externen Netz abschirmen)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Ja (durch die Firewall erlauben)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Bitte warten, Kontrolle der installierten Pakete ..."
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -13149,6 +13568,10 @@ msgstr ""
"installieren!\n"
"Versuchen Sie es manuell."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Server, Web/FTP"
@@ -13199,6 +13622,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Audio Programme: MP3- und Midi-Abspieler, Mixer, usw."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "BĆ¼cher und HOWTOs zu GNU/Linux und Freier Software"
@@ -13291,10 +13718,6 @@ msgid "Office Workstation"
msgstr "BĆ¼ro-Arbeitsplatz"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "GNOME, IceWM, Window Maker, Enlightenment, Fvwm, usw."
@@ -13358,6 +13781,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Klienten fĆ¼r verschiedene Protokolle, u.a. SSH"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet-Gateway"
@@ -13389,6 +13816,201 @@ msgstr "Multimedia / CD-Brenner"
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
+#~ "einfacher handhabbar, aber auch leichter angreifbar: In dieser Form "
+#~ "darf \n"
+#~ "der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet "
+#~ "werden, \n"
+#~ "da Angreifer mangels Passwort an Ihre Daten gelangen kƶnnen!"
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Mit dieser Sicherheitsebene wird es mƶglich, das System als einen \n"
+#~ "Server zu verwenden.\n"
+#~ "Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
+#~ "einzusetzen, der einer Vielzahl von Klienten einen Verbindungsaufbau \n"
+#~ "erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
+#~ "Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
+#~ "verwenden sollte."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Optionen"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sicherheit"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Liste der Daten, die auf CD-ROM sollen."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Bitte wƤhlen Sie Ihren CD-Paltz"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Bitte geben Sie die CD-Brenngeschwindigkeit ein"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Kontrollieren Sie, ob Sie die CDRW vorher lƶschen wollen."
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Bitte geben Sie den CD-Brenner an (etwa 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr ""
+#~ "Bitte markieren, falls Sie ā€žinstall bootā€œ auf Ihrer CD haben wollen."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Die URL muss mit ā€žftp:ā€œ beginnen"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Bitte markieren, falls Sie \n"
+#~ "ā€žinstall bootā€œ auf Ihrer CD haben wollen."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP Server"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Willkommen zum Druckereinrichtungsassistenten\n"
+#~ "\n"
+#~ "Dieser Assistent hilft Ihnen lokale Drucker einzurichten, dass dieser "
+#~ "Rechner bzw. andere in Ihrem Netzwerk darauf drucken kƶnnen.\n"
+#~ "\n"
+#~ "Bitte schlieƟen sie Ihre(n) Drucker an, und stellen Sie sicher dass das "
+#~ "GerƤt/die GerƤte eingeschaltet ist/sind. BetƤtigen sie die SchaltflƤche "
+#~ "ā€žWeiterā€œ, wenn Sie fortfahren mƶchten bzw. ā€žAbbruchā€œ, wenn Sie jetzt "
+#~ "keinen Drucker einrichten mƶchten.\n"
+#~ "\n"
+#~ "In seltenen FƤllen kann es zum totalen stenenbleien des Rechners fĆ¼hren, "
+#~ "wenn Sie eine Drucker-Selbsterkennung durchfĆ¼hren. Schalten Sie diese "
+#~ "einfach aus, wenn Sie einen Drucker ohne Selbsterkennung durchfĆ¼hren "
+#~ "wollen. Verwenden Sie den ā€žExpertenmodusā€œ von PrinterDrake, um einen "
+#~ "entfernten Drucker einzurichten, falls er nicht automatisch aufgefĆ¼hrt "
+#~ "wird."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Selbsterkennung von Druckern"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "PrinterDrake ist in der Lage Ihre Parallelport- und USB-Drucker selbst\n"
+#~ "zu erkennen und einzurichten. In einigen seltenen FƤllen KANN ES JEDOCH\n"
+#~ "ZUM TOTALEN STEHENBLEIBEN DES BETRIEBSSYSTEMS FƜHREN! Verwenden Sie \n"
+#~ "diese Variante also AUF IHR RISIKO!\n"
+#~ "\n"
+#~ "Wollen Sie wirklich, dass PrinterDrake eine Selbsterkennung versucht?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Drucker selbst einrichten"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Netzwerkdrucker kƶnnen erst nach der Installation eingerichtet werden. "
+#~ "WƤhlen Sie ā€žEinstellungen/Hardware/Druckerā€œ im Mandrake Kontrollzentrum."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Um Netzwerkdrucker zu installieren wƤen Sie bitte ā€žAbbruchā€œ, wechseln in "
+#~ "den ā€žExpertenmodunsā€œ und wƤhlen erneut ā€žDrucker hinzufĆ¼genā€œ."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Ist Ihr Drucker ein MultifunktionsgerƤt von HP (OfficeJet, PSC, "
+#~ "PhotoSmart, LaserJet 1100/1200/1220/3200/3300 mit Scanner)?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Installiere das ā€žHPOJā€œ-Paket ..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "GerƤte untersuchen und HPOJ einrichten ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Installiere das ā€žSANEā€œ-Paket ..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Pakete Installieren ..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Scannen mit Ihrem HP-MultifunktionsgerƤt"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Scannen mit Ihrem HP-MultifunktionsgerƤt"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "CUPS den Drucker-Port zugƤnglich machen ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Kontrollzentrum"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "WƤhlen Sie das Werkzeug, das Sie verwenden wollen"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Stellen Sie ein, wie das System Sie benachrichtigen soll"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "Kein ā€žserial_usbā€œ gefunden\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr ""
#~ "Der Dateisystemcheck (fsck) schlug fehl mit dem RĆ¼ckgabewert %d oder "
@@ -13506,9 +14128,6 @@ msgstr "Wissenschaftlicher Arbeitsplatzrechner"
#~ msgid "Setting security level"
#~ msgstr "Sicherheitsebene einstellen"
-#~ msgid "Graphics card"
-#~ msgstr "Grafikkarte"
-
#~ msgid "Select a graphics card"
#~ msgstr "WƤhlen Sie Ihre Grafikkarte"
@@ -13594,6 +14213,3 @@ msgstr "Wissenschaftlicher Arbeitsplatzrechner"
#~ msgid "Percentage of packages to install"
#~ msgstr "Prozent der zu installierenden Pakete"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "WƤhlen Sie eine Sicherheitsebene"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index e09876265..3b93b6889 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-08-22 22:44+0300\n"
"Last-Translator: Thanos Kyritsis <djart@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -58,11 +58,11 @@ msgstr "ÅšéėŻīōå X server (ļäēćüņ źÜńōįņ ćńįöéźžķ)"
msgid "X server"
msgstr "åīõšēńåōēōŽņ X Window"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Ńżčģéóē šļėėžķ źåöįėžķ"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,44 +70,44 @@ msgstr ""
"Ōļ óżóōēģÜ óįņ õšļóōēńßęåé ńżčģéóē šļėėįšėžķ źåöįėžķ.\n"
"Ōß čŻėåōå ķį źÜķåōå;"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "ĢŻćåčļņ ģķŽģēņ źÜńōįņ ćńįöéźžķ"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Ńõčģßóåéņ XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Ōß ōżšļõ XFree čŻėåōå ķį Ż÷åōå;"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Ńżčģéóē üėłķ ōłķ źåöįėžķ įķåīÜńōēōį"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "×ńŽóē åšŻźōįóēņ Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ńżčģéóē ģüķļ ōēņ źÜńōįņ \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ģå åšéōÜ÷õķóē ōńéóäéÜóōįōłķ ćńįöéźžķ"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,19 +118,19 @@ msgstr ""
"äßķļõķ \n"
"źįėżōåńē õšļóōŽńéīē ćéį äéóäéÜóōįōį ćńįöéźÜ."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ē źÜńōį ćńįöéźžķ óįņ õšļóōēńßęåé åšéōÜ÷õķóē ōńéóäéÜóōįōłķ ćńįöéźžķ óōį XFree "
"%s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ģå ŠÅÉŃĮĢĮŌÉŹĒ åšéōÜ÷õķóē ōńéóäéÜóōįōłķ ćńįöéźžķ"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,7 +144,7 @@ msgstr ""
"õšļóōŽńéīē\n"
"ćéį äéóäéÜóōįōį ćńįöéźÜ."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,11 +154,57 @@ msgstr ""
"%s,\n"
"ŠŃĻÓĻ×Ē: ŠÅÉŃĮĢĮŌÉŹĒ ÕŠĻÓŌĒŃÉĪĒ - ĢŠĻŃÅÉ ĶĮ ŠĮĆŁÓÅÉ ŌĻĶ ÕŠĻĖĻĆÉÓŌĒ ÓĮÓ!"
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ļäēćüņ šńļāļėŽņ åćźįōÜóōįóēņ)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "ŠńļóįńģļóģŻķļ"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "ŹÜńōį ćńįöéźžķ"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ļčüķē"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "ĮķÜėõóē"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ļź"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "øīļäļņ"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -171,32 +217,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "ÅšéėŻīōå ļčüķē"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ļčüķē"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "ŠńļóįńģļóģŻķļ"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Ćåķéźü"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Įźżńłóē ōåėåõōįßįņ šńÜīēņ"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -220,11 +262,11 @@ msgstr ""
"źįōįóōńļöŽņ\n"
"ōēņ ļčüķēņ óįņ. Įķ äåķ åßóōå óßćļõńļé, źÜķōå ģéį óõķōēńēō韎 åšéėļćŽ."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Óõ÷ķüōēōį ļńéęüķōéįņ įķįķŻłóēņ"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Óõ÷ķüōēōį źįōįźüńõöēņ įķįķŻłóēņ"
@@ -248,57 +290,42 @@ msgstr "16 åźįōļģģżńéį ÷ńžģįōį (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4 äéóåźįōļģģżńéį ÷ńžģįōį (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Įķįėżóåéņ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "ĮķÜėõóē"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "ÅšéėŻīōå įķÜėõóē źįé āÜčļņ ÷ńžģįōļņ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "ŹÜńōį ćńįöéźžķ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "¶źõńļ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ļź"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
@@ -307,71 +334,71 @@ msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
msgid "Test of the configuration"
msgstr "ÄļźéģŽ ńõčģßóåłķ"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Äéįńżčģéóē šėēźōńļėļćßļõ: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ōżšļņ šļķōéźéļż: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "ÓõóźåõŽ šļķōéźéļż: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ļčüķē: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Óõ÷ķüōēōį ļńéęüķōéįņ įķįķŻłóēņ: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Óõ÷ķüōēōį źįōįźüńõöēņ įķįķŻłóēņ: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "ŹÜńōį ćńįöéźžķ: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "ĢķŽģē źÜńōįņ ćńįöéźžķ: %s kb\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "ĀÜčļņ ÷ńžģįōļņ: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "ĮķÜėõóē: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ļäēćüņ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Ćńįöéźü šåńéāÜėėļķ (X) óōēķ åźźßķēóē"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -381,167 +408,184 @@ msgstr ""
"ćńįöéźü šåńéāÜėėļķ (X-Windows).\n"
"Åšéčõģåßōå įõōüģįōē åźźßķēóē ćńįöéźļż šåńéāÜėėļķōļņ;"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Ōß åßäļõņ åßķįé ē ISDN óżķäåóŽ óįņ;"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Šńžōļņ ōļģŻįņ ōēņ źįōÜōģēóēņ åźźßķēóēņ"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Šńžōļņ ōļģŻįņ ōļõ äßóźļõ (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "ÅćźįōÜóōįóē SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Šļż čŻėåōå ķį åćźįōįóōŽóåōå ōļ šńüćńįģģį åźźßķēóēņ;"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "ÅćźįōÜóōįóē LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO ģå ģåķļż źåéģŻķļõ"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO ģå ćńįöéźü ģåķļż"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Åźźßķēóē įšü ōļ DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Āįó韯ņ åšéėļćŻņ šńļćńÜģģįōļņ åźźßķēóēņ"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader ćéį ÷ńŽóē"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "ÅćźįōÜóōįóē šńļćńÜģģįōļņ åźźßķēóēņ"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "ÓõóźåõŽ åźźßķēóēņ"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (äåķ ėåéōļõńćåß ģå šįėįéüōåńį BIOS)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "ÓõģšįćŽņ"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "óõģšįćŽņ"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "ĮķÜėõóē ļčüķēņ"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "ŹįčõóōŻńēóē šńéķ ōēķ åźźéķēóē"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Óõķčēģįōéźü"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Óõķčēģįōéźü (īįķÜ)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Įšįćüńåõóē åšéėļćžķ ćńįģģŽņ åķōļėŽņ"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "įšįćüńåõóē"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Źįčįńéóģüņ /tmp óå źÜčå åźźßķēóē"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "ĮźńéāŽņ šļóüōēōįņ ģķŽģēņ įķ ÷ńåéÜęåōįé (Ż÷ł åķōļšßóåé %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Åķåńćļšļßēóē šļėėįšėžķ profiles"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "ÅéóÜćåōå ģŻćåčļņ ģķŽģēņ óå Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Ē åšéėļćŽ ``Įšįćüńåõóē åšéėļćžķ ćńįģģŽņ åķōļėŽņ'' åßķįé Ü÷ńēóōē ÷łńßņ "
"óõķčēģįōéźü"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Šįńįźįėž šńļóšįčŽóōå īįķÜ"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Ōį óõķčēģįōéźÜ åßķįé įķüģļéį"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "ĢŽķõģį Init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "¶ķļéćģį ŹįčõóōŻńēóēņ Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "ŌŻėļņ ×ńüķļõ Åźźßķēóēņ ŠõńŽķį"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Åķåńćļšļßēóē åźźßķēóēņ įšü CD;"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Åķåńćļšļßēóē OF åźźßķēóēņ;"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Åī' ļńéóģļż ėåéōļõńćéźü óżóōēģį;"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -550,7 +594,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -558,155 +602,156 @@ msgstr ""
"ÕšÜń÷ļõķ ļé įźüėļõčåņ åšéėļćŻņ.\n"
"Ģšļńåßōå ķį šńļóčŻóåōå źé Üėėåņ Ž ķį įėėÜīåōå ōéņ õšÜń÷ļõóåņ."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Šńļó莟ē"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Ļėļźėēńžčēźå"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Ōńļšļšļßēóē"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Ōß ōżšļõ åšéėļćŽ čŻėåōå ķį šńļóčŻóåōå"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "¶ėėļ ėåéōļõńćéźü (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "¶ėėļ ėåéōļõńćéźü (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "¶ėėļ ėåéōļõńćéźü (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Šßķįźįņ"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "ĮķįóöįėŻņ"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Åō韯ōōį"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ÅšéėļćŽ åī' ļńéóģļż"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-ģŻćåčļņ"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "׳ńßņVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Įöįßńåóē åšéėļćŽņ"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Äåķ åšéōńŻšåōįé Üäåéį åō韯ōōį"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "ŠńŻšåé ķį Ż÷åōå ģéį źįōÜōģēóē swap"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "ĮõōŽ ē åōéźåōōį ÷ńēóéģļšļéåßōįé Žäē"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "ĀńŽźį %s %s šńļóįńģļćåßņ"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "ø÷åōå įėėļķ;"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "ø÷åōå źÜšļéļķ šńļóįńģļćŻį %s;"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "¼÷é"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ķįé"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "ÅćźįōÜóōįóē ļäēćļż ćéį %s źÜńōį %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -717,17 +762,17 @@ msgstr ""
"Ļé šįńÜģåōńļé Ż÷ļõķ ōēķ ģļńöŽ ``üķļģį=ōéģŽ üķļģį2=ōéģŽ2 ...''.\n"
"Ćéį šįńÜäåéćģį, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "ŠįńÜģåōńļé ļäēćļż"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Šļéüķ %s ļäēćü ķį äļźéģÜół;"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -744,15 +789,15 @@ msgstr ""
"ōļ õėéźü óįņ ćéį ōéņ šįńįģŻōńļõņ šļõ ÷ńåéÜęåōįé; Ē åīŻōįóē įõōŽ ßółņ\n"
"šńļźįėŻóåé źüėėēģį ōļõ óõóōŽģįōļņ, įėėÜ äåķ čį šńļźįėŻóåé āėÜāē."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Įõōüģįōē åīŻōįóē"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Šńļóäéļńéóģüņ šįńįģŻōńłķ"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -761,55 +806,55 @@ msgstr ""
"Ē öļńōłóē ōļõ ļäēćļż %s įšåōõ÷å.\n"
"ČŻėåōå ķį äļźéģÜóåōå īįķÜ ģå äéįöļńåō韯ņ šįńįģŻōńļõņ;"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ōļ %s Ż÷åé Žäē šńļóōåčåß)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ōļ óõķčēģįōéźü åßķįé šļėż įšėü"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Šįńįźįėž åéóÜćåōå źłäéźü üķļģį"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ōļ źłäéźü üķļģį ģšļńåß ķį šåńéŻ÷åé ģüķļ šåęÜ ćńÜģģįōį, įńéčģļżņ, `-' źįé `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Įõōü ōļ źłäéźü üķļģį õšÜń÷åé Žäē"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Įõōü ōļ źłäéźü üķļģį õšÜń÷åé Žäē"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Šńļó莟ē ÷ńŽóōē"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -818,32 +863,32 @@ msgstr ""
"ÅéóÜćåōå ÷ńŽóōē\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Įšļäļ÷Ž ÷ńŽóōē"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Šńįćģįōéźü üķļģį"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Źłäéźü üķļģį"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Öėļéüņ (shell)"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Åéźļķßäéļ"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Įõōüģįōē óżķäåóē (Autologin)"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -853,20 +898,20 @@ msgstr ""
"ōēķ åźźßķēóē óå Żķįķ óõćźåźńéģŻķļ ÷ńŽóōē.\n"
"ÅÜķ äåķ čŻėåōå ķį óõģāįßķåé įõōü, šįōŽóōå óōļ źļõģšß įźżńłóēņ."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "ÅšéėŻīōå ōļķ åī' ļńéóģļż ÷ńŽóōē:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "ÅšéėŻīōå ōļķ äéį÷åéńéóōŽ šįńįčżńłķ šļõ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Šįńįźįėž åšéėŻīōå ģéį ćėžóóį."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -875,39 +920,39 @@ msgstr ""
"Ģšļńåßōå ķį åšéėŻīåōå źįé Üėėåņ ćėžóóåņ šļõ čį åßķįé äéįčŻóéģåņ ģåōÜ ōļ "
"šŻńįņ ōēņ åćźįōÜóōįóēņ"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "¼ėį"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Šńļó莟ē ÷ńŽóōē"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Åźźßķēóē CUPS"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Įõōü ōļ šįźŻōļ šńŻšåé ķį įķįāįčģéóōåß\n"
"Åßóōå óßćļõńļņ üōé čŻėåōå ķį ōļ įšļåšéėŻīåōå;"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -916,42 +961,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Źįėžņ Žńčįōå óōļõņ Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Öōł÷ü"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ōõšéźü"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Õųēėü"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Õųēėü"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Šįńįķļśźü"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -962,7 +1007,7 @@ msgstr ""
"óżóōēģį\n"
"óõķäåäåģŻķļ óōļ Internet Ž LAN. Äåķ õšÜń÷ļõķ ėŻīåéņ źėåéäéÜ."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -970,7 +1015,7 @@ msgstr ""
"Ōžńį õšÜń÷ļõķ ėŻīåéņ źėåéäéÜ, įėėÜ ē ÷ńŽóē ōļõ óõóōŽģįōļņ óå äßźōõļ \n"
"äåķ óõķßóōįōįé."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -979,13 +1024,13 @@ msgstr ""
"Įõōü åßķįé ōļ óõķēčéóģŻķļ åšßšåäļ įóöįėåßįņ ćéį Żķį óżóōēģį šļõ čį óõķäåčåß\n"
"łņ šåėÜōēņ óōļ Internet. ÕšÜń÷ļõķ ōžńį Żėåć÷ļé įóöįėåßįņ."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -999,7 +1044,7 @@ msgstr ""
"Internet łņ åīõšēńåōēōŽ. Ē įóöÜėåéį åßķįé įńźåōÜ õųēėŽ žóōå ķį äŻ÷åōįé\n"
"ōįõōü÷ńļķåņ óõķäŻóåéņ įšü šļėėļżņ šåėÜōåņ."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1008,32 +1053,49 @@ msgstr ""
"ĮóöÜėåéį åšéšŻäļõ 4, ģå ōļ óżóōēģį ōåėåßłņ źėåéóōü. ĮóöÜėåéį \n"
"óōļ ģŻćéóōļ äõķįōü."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "ÅšéėļćŻņ"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "ÅšéėŻīōå åšßšåäļ įóöįėåßįņ"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Ńżčģéóē åšéšŻäļõ įóöįėåßįņ"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ńõčģßóåéņ X server"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1057,109 +1119,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Šļż čŻėåōå ķį åćźįōįóōŽóåōå ōļ šńüćńįģģį åźźßķēóēņ;"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "äåķ õšÜń÷åé āļŽčåéį äéįčŻóéģē įźüģį.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Boot Ōżšļõ Ńżčģéóē"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Įń÷åßļ"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Įń÷åßļ/ø_īļäļņ"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle Categorizing Ļčüķē"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle Ļčüķē"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "ŠįńįäļóéįźŽ Ļčüķē"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "ŠįńįäļóéįźŽ Gtk+ Ļčüķē"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Åźźßķēóē ōļõ Aurora źįōÜ ōēķ åźźßķēóē ōļõ óõóōŽģįōļņ"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Ėåéōļõńćßį Lilo/grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Ėåéōļõńćßį Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "ÅćźįōÜóōįóē óõóōŽģįōļņ"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "ÓöÜėģį"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "׳ńßņVideo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "ÅšéėŻīōå åćźįōÜóōįóē"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1168,42 +1326,69 @@ msgstr ""
"×ńēóéģļšļéåßōå ōļķ %s łņ Boot Manager.\n"
"ŹÜķōå źėßź óōļ Ńżčģéóē ćéį ķį īåźéķŽóåōå ōļķ ļäēćü åćźįōÜóōįóēņ."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Ńżčģéóē"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Įšļ莟åõóē åšéėļćŽņ šįźŻōłķ"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "ŹįōÜóōįóē óõóōŽģįōļņ"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "¶ķļéćģį ōļõ X-Window źįōÜ ōēķ åźźßķēóē ōļõ óõóōŽģįōļņ"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "¼÷é, äåķ åšéčõģž įõōüģįōļ login"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ķįé, åšéčõģž įõōüģįōļ login ģå įõōü (user, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "ÅķōÜīåé"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "įäõķįģßį įķļßćģįōļņ ōļõ /etc/inittab ćéį įķÜćķłóē: %s"
@@ -1250,69 +1435,120 @@ msgstr ""
"Ģšļńåßōå ķį åšéėŻīåōå źįé Üėėåņ ćėžóóåņ šļõ čį åßķįé äéįčŻóéģåņ ģåōÜ ōļ "
"šŻńįņ ōēņ åćźįōÜóōįóēņ"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Ćįėėéźü"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Āåėćéźü"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Ćåńģįķéźü"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Åėėēķéźü"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Ķļńāēćéźü"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Óļõēäéźü"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Éōįėéźü"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "óåéńéįźü"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "ķŻļ"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "ÅīõšēńåōēōŽņ"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "Ōļ URL šńŻšåé ķį īåźéķÜ ģå 'http:'"
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "ÅīõšēńåōēōŽņ"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Óēģåßļ óżķäåóēņ: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "ÅšéėļćŻņ: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Šįńįźįėž źÜķōå šńžōį Żķį įķōßćńįöļ įóöįėåßįņ ōłķ äåäļģŻķłķ óįņ"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "ÄéįāÜóōå šńļóåźōéźÜ!"
@@ -1326,15 +1562,6 @@ msgstr ""
"2048 ōļģåßņ åßķįé įńźåōļß)\n"
"óōēķ įń÷Ž ōļõ äßóźļõ"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "ÓöÜėģį"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "ĢÜćļņ"
@@ -1360,7 +1587,7 @@ msgid "Please click on a partition"
msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "ĖåšōļģŻńåéåņ"
@@ -1389,13 +1616,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "¶äåéļ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "¶ėėļ"
@@ -1403,12 +1630,12 @@ msgstr "¶ėėļ"
msgid "Filesystem types:"
msgstr "Ōżšļé óõóōŽģįōļņ įń÷åßłķ:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Äēģéļõńćßį"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Ōżšļņ"
@@ -1418,7 +1645,7 @@ msgstr "Ōżšļņ"
msgid "Use ``%s'' instead"
msgstr "×ńēóéģļšļéŽóōå ``%s'' óōē čŻóē ōļõ"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "ÄéįćńįöŽ"
@@ -1426,7 +1653,7 @@ msgstr "ÄéįćńįöŽ"
msgid "Use ``Unmount'' first"
msgstr "ŹÜķōå šńžōį ``Įšļóżķäåóē''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1434,77 +1661,77 @@ msgstr ""
"ĢåōÜ ōēķ įėėįćŽ ōżšļõ óōēķ źįōÜōģēóē %s, üėį ōį äåäļģŻķį óå įõōŽķ ōēķ "
"źįōÜōģēóē čį ÷įčļżķ"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "ÅšéėŻīōå šńÜīē"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Äēģéļõńćßį ķŻįņ źįōÜōģēóēņ"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "ĢåōįšŽäēóē óå šńļ÷łńēģŻķļ ōńüšļ ėåéōļõńćßįņ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "ĢåōįšŽäēóē óå źįķļķéźü ōńüšļ ėåéōļõńćßįņ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Įźżńłóē ōåėåõōįßįņ šńÜīēņ"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ķį óõķå÷éół;"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "øīļäļņ ÷łńßņ įšļ莟åõóē"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "øīļäļņ ÷łńßņ įšļ莟åõóē ōļõ šßķįźį źįōįōģŽóåłķ;"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Įõōļģįōē źįōįķļģŽ"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Źįčįńéóģüņ üėłķ"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "¶ėėį"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Åķōļšéóģüņ óźėēńļż äßóźļõ"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "¼ėåņ ļé šńłōåżļõóåņ źįōįōģŽóåéņ åßķįé óå ÷ńŽóē"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Äåķ ģšļńž ķį šńļóčŻół źįōįōģēóåéņ"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1512,35 +1739,35 @@ msgstr ""
"Ćéį ķį šńļóčŻóåōå źįōįōģŽóåéņ, šįńįźįėž äéįćńÜųōå ģßį åōóé žóōåķį åßķįé "
"äõķįōŽ ē šńļó莟ē åźōåōįģŻķēņ źįōÜōģēóēņ"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Įšļ莟åõóē šßķįźį źįōįōģŽóåłķ"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Šßķįźįņ źįōįōģŽóåłķ äéÜółóēņ"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Šßķįźįņ źįōįōģŽóåłķ äéÜółóēņ"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Šßķįźįņ źįōįōģŽóåłķ äéÜółóēņ"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Įõōüģįōē óżķäåóē įšļóšžģåķłķ ģļķÜäłķ įšļ莟åõóēņ"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "ÅšéėŻīōå įń÷åßļ"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1548,11 +1775,11 @@ msgstr ""
"Ļ åöåäńéźüņ šßķįźįņ źįōįōģŽóåłķ Ż÷åé äéįöļńåōéźü ģŻćåčļņ\n"
"Ķį óõķå÷ßół;"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Šńļåéäļšļßēóē"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1560,131 +1787,114 @@ msgstr ""
"ÅéóÜćåōå ģéį äéóźŻōōį óōļķ ļäēćü äéóźŻōōįņ\n"
"¼ėį ōį äåäļģŻķį óå įõōŽ ōē äéóźŻōōį čį ÷įčļżķ"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "ŠńļóšÜčåéį äéÜółóēņ šßķįźį źįōįōģŽóåłķ"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "ŠńļāļėŽ šėēńļöļńéžķ"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Óēģåßļ óżķäåóēņ"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "ÅšéėļćŻņ"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "ĮėėįćŽ ģåćŻčļõņ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Ģåōįźßķēóē"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Ģļńöļšļßēóē"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Óżķäåóē"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Šńļó莟ē óōļ RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Šńļó莟ē óōļ LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Įšļóżķäåóē"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Įöįßńåóē įšü ōļ RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Įöįßńåóē įšü ōļ LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Ōńļšļšļßēóē RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "×ńŽóē ćéį loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Äēģéļõńćßį ķŻįņ źįōÜōģēóēņ"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Įń÷Ž óōļķ ōļģŻį: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "ĢŻćåčļņ óå MB"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Ōżšļņ óõóōŽģįōļņ įń÷åßłķ: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Óēģåßļ óżķäåóēņ: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Šńļōßģēóē: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ģļńöļšļßēóē įń÷åßļõ loopback %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "ĮėėįćŽ ōżšļõ źįōÜōģēóēņ"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Šļéü óżōēģį įń÷åßłķ šńļōéģÜōå;"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "ĮėėįćŽ įšü ext2 óå ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Šļż čŻėåōå ķį óõķäŻóåōå ōļ įń÷åßļ loopback %s;"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Šļż čŻėåōå ķį óõķäŻóåōå ōēķ óõóźåõŽ %s;"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1693,138 +1903,143 @@ msgstr ""
"÷ńēóéģļšļéåßōįé\n"
"ćéį loopback. ĮöįéńŻóōå šńžōį ōļ loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Šļż čŻėåōå ķį óõķäŻóåōå ōēķ óõóźåõŽ %s;"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Õšļėļćéóģüņ fat filesystem bounds"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "ĢåōįāļėŽ ģåćŻčļõņ"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Įõōüņ ļ ōżšļņ źįōÜōģēóēņ äåķ ģšļńåß ķ' įėėÜīåé ģŻćåčļņ."
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr ""
"ŠńŻšåé ķį ćßķåé įķōßćńįöļ įóöįėåßįņ üėłķ ōłķ äåäļģŻķłķ óå įõōŽ ōēķ źįōÜōģēóē"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"ĢåōÜ ōēķ įėėįćŽ ģåćŻčļõņ óōēķ źįōÜōģēóē %s, üėį ōį äåäļģŻķį óå įõōŽķ ōēķ "
"źįōÜōģēóē čį ÷įčļżķ"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "ÅšéėŻīōå ōļ ķŻļ ģŻćåčļņ"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "ĢŻćåčļņ óå MB"
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Óå šļéüķ äßóźļ čŻėåōå ķį ģåōįźéķēčåßōå;"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "ŌļģŻįņ"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Óå šļéüķ ōļģŻį čŻėåōå ķį ģåōįźéķēčåßōå;"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ģåōįźßķēóē óå åīŻėéīē"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ģåōįźßķēóē źįōÜōģēóēņ óå åīŻėéīē..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "ÅšéėŻīōå Żķį õšÜń÷ļķ RAID óōļ ļšļßļ čį ćßķåé ē šńļó莟ē"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "ķŻļ"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "ÅšéėŻīōå Żķį õšÜń÷ļķ LVM óōļ ļšļßļ čį ćßķåé ē šńļó莟ē"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "üķļģį LVM;"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "ĮõōŽ ē źįōÜōģēóē äåķ ģšļńåß ķį ÷ńēóéģļšļéēčåß ćéį loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "¼ķļģį įń÷åßļõ loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Šńįćģįōéźü üķļģį"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Ōļ įń÷åßļ ÷ńēóéģšļšļéåßōįé Žäē, åšéėŻīōå Żķį Üėėļ"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ōļ įń÷åßļ õšÜń÷åé Žäē. Ķį ōļ ÷ńēóéģļšļéŽół;"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "ŠįńÜģåōńļé ļäēćļż"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "óõóźåõŽ"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "åšßšåäļ"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ģŻćåčļņ chunk"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Šńļóļ÷Ž: ĮõōŽ ē äéįäéźįóßį åßķįé åšéźßķäõķē."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Ōß ōżšļõ partitioning;"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Įõōü ōļ šįźŻōļ šńŻšåé ķį įķįāįčģéóōåß\n"
"Åßóōå óßćļõńļņ üōé čŻėåōå ķį ōļ įšļåšéėŻīåōå;"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1836,7 +2051,7 @@ msgstr ""
"Åßōå ÷ńēóéģļšļéåßōå LILO źįé äåķ čį äļõėŻųåé, åßōå äåķ ÷ńēóéģļšļéåßōåLILO "
"źįé äåķ ÷ńåéÜęåóōå ōļ /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1847,7 +2062,7 @@ msgstr ""
"äåķ Ż÷åōå źįōÜōģēóē /boot.\n"
"Įķ óźļšåżåōå ķį ÷ńēóéģļšļéŽóåōå LILO, šńļóčŻóōå ģßį źįōÜōģēóē /boot."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1858,139 +2073,139 @@ msgstr ""
"źįōÜōģēóē /boot.\n"
"Öńļķōßóōå ėļéšüķ ķį šńļóčŻóåōå ģéį źįōÜōģēóē /boot."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ļ šßķįźįņ źįōįōģŽóåłķ ōļõ äßóźļõ %s čį įšļčēźåõōåß óōļķ äßóźļ!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Įšįéōåßōįé åšįķåźźßķēóē ćéį ķį åöįńģļóōļżķ ļé įėėįćŻņ"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"ĢåōÜ ōēķ ģļńöļšļßēóē ōēņ źįōÜōģēóēņ %s, üėį ōį äåäļģŻķį óå įõōŽķ ōēķ "
"źįōÜōģēóē čį ÷įčļżķ"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ģļńöļšļßēóē"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ģļńöļšļßēóē įń÷åßļõ loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ģļńöļšļßēóē źįōÜōģēóēņ %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "įšļōõ÷ßį mkraid"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Äåķ õšÜń÷åé įńźåōüņ åėåżčåńļņ ÷žńļņ ćéį äēģéļõńćßį ķŻłķ źįōįōģŽóåłķ"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Äåķ õšÜń÷åé įńźåōüņ åėåżčåńļņ ÷žńļņ ćéį äēģéļõńćßį ķŻłķ źįōįōģŽóåłķ"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "ĮķÜėõóē: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "ÓõóźåõŽ: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Šéčįķü DOS ćńÜģģį äßóźļõ: %s \n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Ōżšļņ: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "¼ķļģį: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Įń÷Ž: ōļģŻįņ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "ĢŻćåčļņ: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s ōļģåßņ"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Źżėéķäńļņ %d åžņ źżėéķäńļņ %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "ĢļńöļšļéēģŻķļņ\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Įģļńöļšļßēōļņ\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "ÓõķäåäåģŻķļņ\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Įń÷åßį loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1998,27 +2213,27 @@ msgstr ""
"ŹįōÜōģēóē åźźßķēóēņ åī ļńéóģļż\n"
" (įšü MS-DOS, ü÷é įšü lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Åšßšåäļ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "ĢŻćåčļņ chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Äßóźļé RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "¼ķļģį įń÷åßļõ loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2030,7 +2245,7 @@ msgstr ""
"ģéį źįōÜōģēóē Ļäēćžķ, čį šńŻšåé šéčįķüōįōį\n"
"ķį ōēķ įöŽóåōå Žóõ÷ē.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2042,66 +2257,61 @@ msgstr ""
"źįōÜōģēóē ćéį\n"
"dual-booting ōļ óżóōēģÜ óįņ.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "ĢŻćåčļņ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ćåłģåōńßį: %s źżėéķäńļé, %s źåöįėŻņ, %s ōļģåßņ\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Šėēńļöļńßåņ: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Äßóźļé LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ōżšļņ šßķįźį źįōįōģŽóåłķ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "óōļ bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "ÅšéėļćŻņ: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Ōżšļņ óõóōŽģįōļņ įń÷åßłķ: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Įõōü ōļ óõķčēģįōéźü åßķįé šļėż įšėü (šńŻšåé ķį åßķįé ōļõėÜ÷éóōļķ %d "
"÷įńįźōŽńåņ ģįźńż)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Ōį óõķčēģįōéźÜ åßķįé įķüģļéį"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2155,23 +2365,23 @@ msgstr "Šåńéļ÷Ž (domain) NIS"
msgid "Search servers"
msgstr "ÅīõšēńåōēōŽņ DNS"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ģļńöļšļßēóē ōļõ %s įšŻōõ÷å"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äåķ īŻńł šžņ ķį ģļńöļšļéŽół ōļ %s óå ōżšļ %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜėģį źįōÜ ōēķ įšļóżķäåóē ōļõ %s: %s"
@@ -2188,37 +2398,37 @@ msgstr ""
msgid "server"
msgstr "åīõšēńåōēōŽņ"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
"Äåķ ģšļńåßōå ķį ÷ńēóéģļšļéŽóåōå ōļ JFS ćéį źįōįōģŽóåéņ ģéźńüōåńåņ įšü 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Äåķ ģšļńåßōå ķį ÷ńēóéģļšļéŽóåōå ōļ ReiserFS ćéį źįōįōģŽóåéņ ģéźńüōåńåņ įšü "
"32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Ōļ óēģåßļ óżķäåóēņ šńŻšåé ķį īåźéķÜåé ģå /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ÕšÜń÷åé Žäē źįōÜōģēóē ģå óēģåßļ óżķäåóēņ %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Äåķ ģšļńåßōå ķį ÷ńēóéģļšļéŽóåōå ģéį źįōÜōģēóē LVM ćéį šńļóÜńōēóē %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
"Įõōüņ ļ źįōÜėļćļņ šńŻšåé ķį šįńįģåßķåé óōļ ńéęéźü óżóōēģį įń÷åßłķ (root)"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2227,27 +2437,27 @@ msgstr ""
"×ńåéÜęåóōå Żķį šńįćģįōéźü óżóōēģį įń÷åßłķ (ext2, reiserfs) ćéį įõōü ōļ "
"óēģåßļ óżķäåóēņ\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Äåķ ģšļńåßōå ķį ÷ńēóéģļšļéŽóåōå ģéį źįōÜōģēóē LVM ćéį šńļóÜńōēóē %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr ""
"Äåķ õšÜń÷åé įńźåōüņ åėåżčåńļņ ÷žńļņ ćéį įõōüģįōē äēģéļõńćßį ķŻłķ źįōįōģŽóåłķ"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜėģį źįōÜ ōļ Üķļéćģį ōļõ %s ćéį åććńįöŽ: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2256,259 +2466,263 @@ msgstr ""
"äēģéļõńćßį ķŻłķ óõóōēģÜōłķ įń÷åßłķ. Šįńįźįėž åėåćīōå ōļ õėéźü óįņ ćéįōēķ "
"įéōßį įõōļż ōļõ šńļāėŽģįōļņ"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Äåķ õšÜń÷åé źįģßį źįōÜōģēóē!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "×ńŽóē įõōüģįōēņ įķß÷ķåõóēņ"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Ćåķéźü"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "DMA źÜńōįņ"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Ģļńöļšļßēóē"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "ĮėėįćŽ ōżšļõ źįōÜōģēóēņ"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "øīļäļņ"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_ĀļŽčåéį"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_ĀļŽčåéį"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/ĀļŽčåéį/_Ó÷åōéźÜ ģå..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Šļķōßźé"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "DMA źÜńōįņ"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "¶źõńļ"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Šļķōßźé"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "ŠåńéćńįöŽ"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Šéóōļšļßēóē ōįõōüōēōįņ"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "ÅšéėŻīōå įń÷åßļ"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "ÓõóźåõŽ šżėēņ"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "Äżļ šėŽźōńłķ"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "øīļäļņ"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_ĀļŽčåéį"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_ĀļŽčåéį"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/ĀļŽčåéį/_Ó÷åōéźÜ ģå..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Įõōüģįōē åīŻōįóē"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Åķōļšéóģüņ óźėēńļż äßóźļõ"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "ŠńļāļėŽ šėēńļöļńéžķ õėéźļż"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Ńżčģéóē šļķōéźéļż"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "ŠńļāļėŽ šėēńļöļńéžķ"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Ńżčģéóē šļķōéźéļż"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "įķé÷ķåżčēźå óōēķ šüńōį %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Šįńįźįėž šåńéģŻķåōå"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d äåõōåńüėåšōį"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "×ńŽóē įõōüģįōēņ įķß÷ķåõóēņ"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ćåķéźü"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Įõōüģįōē åīŻōįóē"
+msgid "Card model :"
+msgstr "DMA źÜńōįņ"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "ĮėėįćŽ ōżšļõ źįōÜōģēóēņ"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ģļńöļšļßēóē"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3983,7 +4197,7 @@ msgstr ""
"ŠįōŽóōå \"Įźżńłóē\" ćéį ķį įźõńžóåōå įõōŽķ ōēķ äéįäéźįóßį ÷łńßņ ķį ÷Üóåōå \n"
"äåäļģŻķį źįé źįōįōģŽóåéņ šļõ āńßóźļķōįé óōļķ äßóźļ."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3991,7 +4205,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -4022,20 +4236,20 @@ msgstr ""
"\n"
"ČŻėåōå ķį åćźįōįóōŽóåōå įõōļżņ ōļõņ åīõšēńåōēōŻņ;\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Äåķ ģšļńž ķį ÷ńēóéģļšļéŽół broadcast ÷łńßņ NIS domain"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ÅéóÜćåōå ģéį FAT ģļńöļšļéēģŻķē äéóźŻōōį óōļķ ļäēćü %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "ĮõōŽ ē äéóźŻōōį äåķ åßķįé ģļńöļšļéēģŻķē FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4043,7 +4257,7 @@ msgstr ""
"Ćéį ķį ÷ńēóéģļšļéŽóåōå įõōŽķ ōēķ įšļčēźåõģŻķē åšéėļćŽ šįźŻōłķ, īåźéķŽóōå ōēķ "
"åćźįōÜóōįóē ģå ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜėģį źįōÜ ōēķ įķÜćķłóē ōļõ įń÷åßļõ %s"
@@ -4082,7 +4296,7 @@ msgstr ""
"\n"
"Ķį óõķå÷ßół;"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "ŠńŻšåé ķį Ż÷åōå ģéį źįōÜōģēóē FAT mounted óōļ /boot/efi"
@@ -4266,12 +4480,12 @@ msgstr ""
"ōļõ õėéźļż Ž įšü ōēķ éóōļóåėßäį ōļõ źįōįóźåõįóōŽ (įķ Ż÷åōå šńüóāįóē óōļ "
"Internet).Óõķå÷ßóōå ģå äéźéÜ óįņ åõčżķē."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äéšėü óēģåßļ óżķäåóēņ %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4283,12 +4497,12 @@ msgstr ""
"ÅėŻćīōå ōļ CD-ROM óå Żķį Üėėļ óżóōēģį ÷ńēóéģļšļéžķōįņ ōēķ åķōļėŽ \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Źįėžņ Žńčįōå óōļ %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äåķ õšÜń÷åé äéįčŻóéģļņ ļäēćüņ äéóźŻōōįņ"
@@ -4298,7 +4512,7 @@ msgstr "Äåķ õšÜń÷åé äéįčŻóéģļņ ļäēćüņ äéóźŻōōįņ"
msgid "Entering step `%s'\n"
msgstr "ĀŽģį `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4311,79 +4525,79 @@ msgstr ""
"åćźįōÜóōįóē źåéģŻķļõ.\n"
"ŠįōŽóōå F1 źįōÜ ōēķ åźźßķēóē įšü CDROM, ģåōÜ ćńÜųōå `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Ōżšļņ åćźįōÜóōįóēņ"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Šįńįźįėž åéóÜćåōå ōéņ šįńįźÜōł šėēńļöļńßåņ"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "ÅšéėļćŽ ļģÜäłķ šįźŻōłķ"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "ÅšéėļćŽ īå÷łńéóōžķ šįźŻōłķ"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Óõķļėéźü ģŻćåčļņ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "ĖÜčļņ šįźŻōļ"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "¼ķļģį: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "øźäļóē: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "ĢŻćåčļņ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Óēģįóßį: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Äåķ ģšļńåßōå ķį åšéėŻīåōå įõōü ōļ šįźŻōļ äéüōé äåķ õšÜń÷åé įńźåōüņ ÷žńļņ"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Čį åćźįōįóōįčļżķ ōį šįńįźÜōł šįźŻōį"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Čį įöįéńåčļżķ ōį šįńįźÜōł šįźŻōį "
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Äåķ ģšļńåßōå ķį åšéėŻīåōå/įšļåšéėŻīåōå įõōü ōļ šįźŻōļ"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Įõōü åßķįé įšįéōļżģåķļ šįźŻōļ, äåķ ģšļńåß ķį įšļåšéėåćåß"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Äåķ ģšļńåßōå ķį įšļåšéėŻīåōå įõōü ōļ šįźŻōļ. Åßķįé Žäē åćźįōåóōēģŻķļ"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4391,74 +4605,74 @@ msgstr ""
"Įõōü ōļ šįźŻōļ šńŻšåé ķį įķįāįčģéóōåß\n"
"Åßóōå óßćļõńļņ üōé čŻėåōå ķį ōļ įšļåšéėŻīåōå;"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Äåķ ģšļńåßōå ķį įšļåšéėŻīåōå įõōü ōļ šįźŻōļ. ŠńŻšåé ķį įķįāįčģéóōåß"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Įõōüģįōē šńļāļėŽ åšéėåćģŻķłķ šįźŻōłķ"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "ÅćźįōÜóōįóē"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Öüńōłóē/Įšļ莟åõóē óå äéóźŻōōį"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "ĮķįķŻłóē åšéėåćģŻķłķ šįźŻōłķ"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "ÅėÜ÷éóōē ÅćźįōÜóōįóē"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "ÅšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "ÅćźįōÜóōįóē"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Åźōßģēóē"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "ÅķįšļģŻķłķ ÷ńüķļņ "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Šįńįźįėž šåńéģŻķåōå, šńļåōļéģįóßį åćźįōÜóōįóēņ"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d šįźŻōį"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Įšļäļ÷Ž"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "¶ńķēóē"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4472,17 +4686,17 @@ msgstr ""
"Šįńįźįėž åéóÜćåōå ōļ Cd-Rom ģå üķļģį \"%s\" óōļķ ļäēćü óįņ źįé šįōŽóōå Ļź.\n"
"ÅÜķ äåķ ōļ Ż÷åōå, šįōŽóōå Įźżńłóē ćéį įšļöõćŽ åćźįōÜóōįóēņ įšü įõōü ōļ CdRom."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Ķį óõķå÷ßół;"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "ŠńļźėŽčēźå óöÜėģį źįōÜ ōēķ ōįīéķüģēóē ōłķ šįźŻōłķ:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "ŠńļźėŽčēźå óöÜėģį źįōÜ ōēķ åćźįōÜóōįóē ōłķ šįźŻōłķ:"
@@ -4802,109 +5016,109 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Šėēźōńļėüćéļ"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Šįńįźįėž åšéėŻīōå äéįńżčģéóē šėēźōńļėļćßļõ."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "ĮõōŽ åßķįé ē šėŽńēņ ėßóōį ōłķ äéįčŻóéģłķ šėēźōńļėļćßłķ"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Ōé ōżšļ åćźįōÜóōįóēņ šńļōéģÜōå;"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "ÅćźįōÜóōįóē/ĮķįāÜčģéóē"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Šńüźåéōįé ćéį åćźįōÜóōįóē Ž ćéį įķįāÜčģéóē;"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Óõķéóōžģåķļ"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ćéį åéäéźļżņ"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "ĮķįāÜčģéóē"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "ĮķįķŻłóē åšéėåćģŻķłķ šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Šįńįźįėž åšéėŻīōå ōżšļ šļķōéźéļż."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Čżńį šļķōéźéļż"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Šįńįźįėž åšéėŻīōå óåéńéįźŽ čżńį óōēķ ļšļßį åßķįé óõķäåäåģŻķļ ōļ šļķōßźé óįņ."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Šńļóļģļßłóē Źļõģšéžķ"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Šńļóļģļßłóē 2 Źļõģšéžķ"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Šńļóļģļßłóē 3 Źļõģšéžķ"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Ńżčģéóē źįńōžķ PCMCIA "
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Ńżčģéóē IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "äåķ õšÜń÷ļõķ äéįčŻóéģåņ źįōįōģŽóåéņ"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "ĮķÜėõóē źįōįōģŽóåłķ ćéį šńļóäéļńéóģü óēģåßłķ óżķäåóēņ."
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "ÅšéėŻīōå óēģåßį óżķäåóēņ"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4921,7 +5135,7 @@ msgstr ""
"\n"
"Óõģöłķåßōå ķį äéįćńįöļżķ üėåņ ļé źįōįōģŽóåéņ;\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4929,7 +5143,7 @@ msgstr ""
"Ōļ DiskDrake įšŻōõ÷å ķį äéįāÜóåé ółóōÜ ōļķ šßķįźį źįōįōģŽóåłķ.\n"
"Óõķå÷ßóōå ģå ä韎 óįņ åõčżķē!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4938,73 +5152,73 @@ msgstr ""
"įėėÜ ćéį ķį īåźéķŽóåōå ōļ óżóōēģÜ óįņ, čį ÷ńåéįóōåß ķį äēģéļõńćŽóåōå ģéį "
"źįōÜōģēóē bootstrap ģå ōļ DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Äåķ āńŻčēźå źįōÜōģēóē root ćéį ōēķ šńįćģįōļšļßēóē ōēņ įķįāÜčģéóēņ"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Root Partition (āįó韎 źįōÜōģēóē óõóōŽģįōļņ)"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "ŠļéÜ åßķįé ē āįó韎 źįōÜōģēóē (/) ōļõ óõóōŽģįōüņ óįņ;"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Įšįéōåßōįé åšįķåźźßķēóē ćéį ķį åķåńćļšļéēčļżķ ļé įėėįćŻņ óōļķ šßķįźį "
"źįōįōģŽóåłķ"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "ÅšéėŻīōå źįōįōģŽóåéņ šńļņ ģļńöļšļßēóē"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "øėåć÷ļņ ćéį ÷įėįóģŻķį blocks;"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Ģļńöļšļßēóē źįōįōģŽóåłķ"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Äēģéļõńćßį źįé ģļńöļšļßēóē įń÷åßļõ %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Äåķ õšÜń÷åé įńźåōü swap ćéį ōēķ ļėļźėŽńłóē ōēņ åćźįōÜóōįóēņ, šįńįźįėž "
"šńļóčŻóōå"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "ŲÜ÷ķł ćéį äéįčŻóéģį šįźŻōį"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "ŲÜ÷ķł ćéį äéįčŻóéģį šįźŻōį"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Šńļóäéļńéóģüņ šįźŻōłķ šńļņ įķįāÜčģéóē"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Äåķ ģšļńåßōå ķį įšļåšéėŻīåōå įõōü ōļ šįźŻōļ. Åßķįé Žäē åćźįōåóōēģŻķļ"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Šńļóäéļńéóģüņ šįźŻōłķ šńļņ įķįāÜčģéóē"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5013,7 +5227,7 @@ msgstr ""
"Ōļ óżóōēģÜ óįņ äåķ Ż÷åé įńźåōü äéįčŻóéģļ ÷žńļ ćéį åćźįōÜóōįóē Ž įķįāÜčģéóē (%"
"d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5022,49 +5236,49 @@ msgstr ""
"äéóźŻōōį.\n"
"Ē ģļńöļšļßēóē åßķįé ē ßäéį ģå ōéņ äéóźŻōōåņ įõōüģįōēņ åćźįōÜóōįóēņ."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Öüńōłóē įšü äéóźŻōōį"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Öüńōłóē įšü äéóźŻōōį"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "ÅšéėļćŽ šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "ÅéóÜćåōå äéóźŻōōį šļõ šåńéŻ÷åé ōēķ åšéėļćŽ šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Įšļ莟åõóē óå äéóźŻōōį"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Ōļ åšéėåćģŻķļ ģŻćåčļņ åßķįé ģåćįėżōåńļ įšü ōļ äéįčŻóéģļ ÷žńļ"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -5083,11 +5297,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ļķüģįōé \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Šńļåōļéģįóßį åćźįōÜóōįóēņ"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5096,21 +5310,21 @@ msgstr ""
"ÅćźįōÜóōįóē šįźŻōļõ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Ńõčģßóåéņ ģåōÜ ōēķ åćźįōÜóōįóē"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Šįńįźįėž åéóÜćåōå ōē äéóźŻōōį Åźźßķēóēņ óōļķ ļäēćü %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Šįńįźįėž åéóÜćåōå ōē äéóźŻōōį ĮķįķŻłóēņ ĮńčńłģÜōłķ óōļķ ļäēćü %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5175,7 +5389,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5187,180 +5401,189 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Óżķäåóē ćéį ėŽųē šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "ÅšéėŻīōå ōüšļ įšü ōļķ ļšļßļ čį ćßķåé ē ėŽųē šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óżķäåóē ćéį ėŽųē šįźŻōłķ"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "ŠļéÜ åßķįé ē ęžķē žńįņ;"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Ōļ ńļėüé ōļõ õšļėļćéóōŽ óįņ åßķįé ńõčģéóģŻķļ óå GMT (žńį ĆźńŽķļõśōņ)"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Įõōüģįōļņ óõć÷ńļķéóģüņ žńįņ (÷ńŽóē NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "ÅīõšēńåōēōŽņ NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "ĮšļģåģįźńõóģŻķļņ åīõšēńåōēōŽņ CUPS"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "ŹįķŻķįņ åźōõšłōŽņ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "ø÷åōå įėėļķ;"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Šåńßėēųē"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Šļķōßźé"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "ŁńļėļćéįźŽ Ęžķē"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "ÅźōõšłōŽņ"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "KÜńōį ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "ŹÜńōį Ž÷ļõ"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "ŹÜńōį TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Įöįßńåóē Windows(TM)"
+msgid "Windows Domain"
+msgstr "Šåńéļ÷Ž (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "ŌļšéźÜ įń÷åßį"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Óõķčēģįōéźü root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "׳ńßņ óõķčēģįōéźü"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Įõōü ōļ óõķčēģįōéźü åßķįé šļėż įšėü (šńŻšåé ķį åßķįé ōļõėÜ÷éóōļķ %d "
"÷įńįźōŽńåņ ģįźńż)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Šéóōļšļßēóē ōįõōüōēōįņ"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Šéóōļšļßēóē LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "ÅīõšēńåōēōŽņ LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Åīįźńßāłóē NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Šåńéļ÷Ž (domain) NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Šéóōļšļßēóē LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Šåńéļ÷Ž (domain) NIS"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "ÅīõšēńåōēōŽņ NTP"
+msgid "Authentication Windows Domain"
+msgstr "Šéóōļšļßēóē LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "¼ķļģį äéźōżļõ"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5387,19 +5610,19 @@ msgstr ""
"źÜķļķōįņ åõźļėüōåńē ōēķ åšįķįöļńÜ ōļõ óõóōŽģįōļņ ģåōÜ įšü óļāįńŽ āėÜāē.\n"
"ČŻėåōå ķį äēģéļõńćŽóåōå äéóźŻōōį åźźßķēóēņ;"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Šńžōļņ ļäēćüņ äéóźŻōįņ"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Äåżōåńļņ ļäēćüņ äéóźŻōįņ"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "ŠįńÜėåéųē"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5426,7 +5649,7 @@ msgstr ""
"ČŻėåōå ķį äēģéļõńćŽóåōå äéóźŻōōį åźźßķēóēņ;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5435,28 +5658,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "ĖõšÜģįé, äåķ õšÜń÷åé äéįčŻóéģļņ ļäēćüņ äéóźŻōōįņ"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ÅšéėŻīōå ļäēćü äéóźŻōōįņ ćéį äēģéļõńćßį äéóźŻōōįņ åźźßķēóēņ"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "ÅéóÜćåōå äéóźŻōōį óōļķ ļäēćü %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Äēģéļõńćßį äßóźļõ åźźßķēóēņ"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Šńļåōļéģįóßį šńļćńÜģģįōļņ åźźßķēóēņ"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5468,11 +5691,11 @@ msgstr ""
"Ē åćźįōÜóōįóē čį óõķå÷éóōåß, įėėÜ\n"
"čį ÷ńåéįóōåß ķį ÷ńēóéģļšļéŽóåōå ōļ BootX ćéį ķį īåźéķŽóåōå ōļ ģē÷ÜķēģÜ óįņ"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "ČŻėåōå ķį ÷ńēóéģļšļéŽóåōå ōļ aboot;"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5481,18 +5704,18 @@ msgstr ""
"šńļóšÜčåéį āåāéįóģŻķēņ åćźįōÜóōįóēņ, įźüģį źįé įķ įõōü Ż÷åé óįķ įšļōŻėåóģį "
"ōēķ źįōįóōńļöŽ ōēņ šńžōēņ źįōÜōģēóēņ;"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Åćź. šń. åźźßķēóēņ"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ē åćźįōÜóōįóē ōļõ šńļćńÜģģįōļņ åźźßķēóēņ įšŻōõ÷å. ŠńļźėŽčēźå ōļ įźüėļõčļ "
"óöÜėģį:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5509,17 +5732,17 @@ msgstr ""
" Ōüōå ōõšžóōå: shut-down\n"
"Óōēķ åšüģåķē åźźßķēóē čį šńŻšåé ķį äåßōå ōēķ šńļōńļšŽ ōļõ bootloader."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ÅéóÜćåōå Üäåéį äéóźŻōōį óōļķ ļäēćü %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Šńļåōļéģįóßį äéóźŻōįņ įõōüģįōēņ åćźįōÜóōįóēņ"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5529,7 +5752,7 @@ msgstr ""
"\n"
"ČŻėåōå óßćļõńį ķį åćźįōįėåßųåōå ōžńį;"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5563,15 +5786,15 @@ msgstr ""
"ó÷åōéźü\n"
"źåöÜėįéļ ōļõ åšßóēģļõ ļäēćļż ÷ńŽóēņ ōļõ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Šńļåōļéģįóßį äéóźŻōōįņ įõōüģįōēņ åćźįōÜóōįóēņ"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5585,15 +5808,15 @@ msgstr ""
"\n"
"Ģšļńåß ķį šńļōéģÜōå ķį åšįķįėÜāåōå ōēķ åćźįōÜóōįóē.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Įõōüģįōļ"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Åšįķįöüńōłóē"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Įšļ莟åõóē åšéėļćŽņ šįźŻōłķ"
@@ -5621,402 +5844,465 @@ msgstr ""
msgid "Choose a file"
msgstr "ÅšéėŻīōå šńÜīē"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr " Ćéį Šńļ÷łńēģŻķļõņ"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Šńļēćļżģåķļ"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Åšüģåķļ -»"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "ŹįźŽ åšéėļćŽ, īįķįäļźéģÜóōå\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ē åšéėļćŽ óįņ; (åī' ļńéóģļż %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ē åšéėļćŽ óįņ; (åī' ļńéóģļż %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "ÅšéėļćŻņ: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "ČŻėåōå ķį ÷ńēóéģļšļéŽóåōå ōļ aboot;"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ē åšéėļćŽ óįņ; (åī' ļńéóģļż %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "ŌóŻ÷éźļ (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Ćåńģįķéźü"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Éóšįķéźü"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Öéķėįķäéźü"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ćįėėéźü"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ķļńāēćéźü"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Šļėłķéźü"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ńłóéźü"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Óļõēäéźü"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "ĢåćÜėē Āńåōįķķßį (UK)"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Ē.Š.Į. (US)"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Įėāįķéźü"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Įńģåķéźü (šįėéü)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Įńģåķéźü (ćńįöļģē÷įķŽ)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Įńģåķéźü (öłķēōéźü)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "ĮęåńģšįśōęÜķ (Ėįōéķéźü)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Āåėćéźü"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "åķåńćļšļßēóē"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Įńģåķéźü (öłķēōéźü)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Āļõėćįńéźü"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "ĀńįęéėéÜķéźļ"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Åóčļķéźü"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Ėåõźļńłóßįņ"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Åėāåōéźü (Ćåńģįķ韎 äéįńżčģéóē)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Åėāåōéźü (Ćįėė韎 äéįńżčģéóē)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "ŌóŻ÷éźļ (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Ćåńģįķéźü (÷łńßņ ķåźńÜ šėŽźōńį)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Äįķéźü"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (ĒŠĮ)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ķļńāēćéźü)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (ĒŠĮ)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Åóčļķéźü"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Ćåłńćßį (\"Ńłóéźē\" äéįńżčģéóē)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Ćåłńćßį (\"Ėįōéķ韎\" äéįńżčģéóē)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Åėėēķéźü"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ļõććńéźü"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Źńļįōéźü"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "ÉóńįŽė"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "ÉóńįŽė (öłķēōéźü)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Éńįķéźü"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Éóėįķäéźü"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Éōįėéźü"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Éįšłķéźü 106 šėŽźōńłķ"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "ŹļńåÜōéźļ Šėēźōńļėüćéļ"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ėįōéķ韎ņ Įģåń韎ņ"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Ōļšļčåóßį"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Ėéčļõįķéźü AZERTY (šįėéü)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Ėéčļõįķéźü AZERTY (ķŻļ)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ėéčļõįķéźü \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ėéčļõįķéźü \"öłķēōéźü\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Ōļšļčåóßį"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Ģįźåäļķ韎"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "ĮęåńģšįśōęÜķ (źõńéėėéźü)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Ļėėįķäéźü"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Šļėłķéźü (äéįńżčģéóē qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Šļėłķéźü (äéįńżčģéóē qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Šļńōļćįėėéźü"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Źįķįäéźü (ŹåģšŻź)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Ńļõģįķéźü (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Ńļõģįķéźü (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ńłóéźü (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Óėļāåķßįņ"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Óėļāįźßįņ (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Óėļāįźßįņ (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "ĮęåńģšįśōęÜķ (źõńéėėéźü)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Šßķįźįņ"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Ōļõńźéźü (šįńįäļóéįźü \"F\" ģļķōŻėļ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Ōļõńźéźü (ģļķōŻńķļ \"Q\" ģļķōŻėļ)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ļõźńįķéźü"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US äéåčķŻņ"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ĀéåōķÜģ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Ćéļõćźļóėįāéźü (ėįōéķéźü/źõńéėėéźü)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -6025,37 +6311,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Źõźė韯ņ óõķäŻóåéņ %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "ĮöįéńŻóōå ōį logical volumes šńžōį\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Įńéčģüņ ōēėåöžķļõ"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Ģļńöļš. źįōįōģŽó."
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -6158,51 +6444,43 @@ msgstr "źįķŻķį"
msgid "No mouse"
msgstr "׳ńßņ šļķōßźé"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Ćéį åķåńćļšļßēóē šļķōéźéļż"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "ŹÉĶĒÓŌÅ ŌĻ ŃĻÄĮŹÉ!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "ŌŻėļņ"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Åšüģåķļ -»"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Šńļēćļżģåķļ"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ółóōü;"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Šėēńļöļńßåņ"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "ĮķÜšōõīē äŻķōńļõ"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Óżģšōõīē äŻķōńļõ"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "ÅķįėėįćŽ ģåōįīż åšßšåäēņ źįé ļģįä韎ņ ōįīéķüģēóēņ"
@@ -6225,6 +6503,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "÷ńŽóē dhcp"
@@ -6252,7 +6534,7 @@ msgstr ""
"Äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ Ethernet óōļ óżóōēģÜ óįņ.\n"
"Äåķ ģšļńž ķį ńõčģßół įõōļż ōļõ ōżšļõ ōēķ óżķäåóē."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "ÅšéėŻīōå óõóźåõŽ äéźōżļõ"
@@ -6267,7 +6549,7 @@ msgstr ""
msgid "no network card found"
msgstr "äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Ńżčģéóē äéźōżļõ"
@@ -6283,7 +6565,7 @@ msgstr ""
"Ōļ üķļģį įõōü šńŻšåé ķį åßķįé Żķį šėŽńåņ üķļģį óõóōŽģįōļņ,\n"
"üšłņ š.÷. ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "¼ķļģį óõóōŽģįōļņ"
@@ -6311,7 +6593,7 @@ msgstr "Ōß åßäļõņ åßķįé ē ISDN óżķäåóŽ óįņ;"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6441,43 +6723,43 @@ msgstr "Óå šļéÜ óåéńéįźŽ šüńōį åßķįé óõķäåäåģŻķļ ōļ modem óįņ;"
msgid "Dialup options"
msgstr "ÅšéėļćŻņ dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "¼ķļģį óżķäåóēņ"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Įńéčģüņ ōēėåöžķļõ"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "×ńŽóē script"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "×ńŽóē ōåńģįōéźļż"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "¼ķļģį äéźōżļõ"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Šńžōļņ åīõšēńåōēōŽņ DNS (šńļįéńåōéźü)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Äåżōåńļņ åīõšēńåōēōŽņ DNS (šńļįéńåōéźü)"
@@ -6591,13 +6873,13 @@ msgstr "ÅšéėŻīōå ōļ šńļößė ćéį ńżčģéóē"
msgid "Use auto detection"
msgstr "×ńŽóē įõōüģįōēņ įķß÷ķåõóēņ"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "ŹįōÜóōįóē Šńļ÷łńēģŻķłķ"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Åķōļšéóģüņ óõóźåõžķ..."
@@ -6710,7 +6992,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6722,7 +7004,7 @@ msgstr ""
"ĮšėÜ šįōŽóōå OK ćéį ķį źńįōŽóåōå ōéņ õšÜń÷ļõóåņ ńõčģßóåéņ.\n"
"ĮėėÜęļķōįņ ōį šįńįźÜōł šåäßį čį įėėÜīåōå ōēķ õšÜń÷ļõóį ńżčģéóē."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6732,43 +7014,43 @@ msgstr ""
"ŹÜčå óōļé÷åßļ šńŻšåé ķį åéóį÷čåß łņ IP äéåżčõķóē óå ļźōįä韎\n"
"ģļńöŽ (šįńÜäåéćģį: 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Ńżčģéóē óõóźåõŽņ äéźōżļõ %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Äéåżčõķóē IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ĢÜóźį äéźōżļõ"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Įõōüģįōļ IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Īåźßķēóįķ óōēķ åźźßķēóē óõóōŽģįōļņ"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "Ē IP äéåżčõķóē šńŻšåé ķį åßķįé óå ģļńöŽ 1.2.3.4"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6780,40 +7062,40 @@ msgstr ""
"üšłņ š.÷. ``mybox.mylab.myco.com''.\n"
"Ģšļńåßōå åšßóēņ ķį åéóÜćåōå źįé ōēķ äéåżčõķóē IP ōēņ šżėēņ äéźōżļõ"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "ÅīõšēńåōēōŽņ DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "ÓõóźåõŽ šżėēņ"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Ńõčģßóåéņ proxies"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Ļ proxy šńŻšåé ķį åßķįé http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Ļ proxy šńŻšåé ķį åßķįé ftp://..."
@@ -6825,7 +7107,7 @@ msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
msgid "Do you want to try to connect to the Internet now?"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ķį óõķäåčåßōå óōļ Äéįäßźōõļ ōžńį;"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "ÄļźéģŽ óżķäåóēņ... "
@@ -6853,43 +7135,43 @@ msgstr "Ńõčģßóåéņ óėõķäåóēņ"
msgid "Please fill or check the field below"
msgstr "Šįńįźįėž åėŻćīōå Ž óõģšėēńžóōå ōļ šįńįźÜōł šåäßļ"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ źÜńōįņ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "DMA źÜńōįņ"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO źÜńōįņ"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 źÜńōįņ"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 źÜńōįņ"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Šńļółšéźüņ įńéčģüņ ōēėåöžķļõ"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "¼ķļģį šįńļ÷Żį (š.÷. provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Įńéčģüņ ōēėåöžķļõ šįńļ÷Żį"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (šńļįéńåōéźü)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (šńļįéńåōéźü)"
@@ -6898,29 +7180,29 @@ msgstr "Provider dns 2 (šńļįéńåōéźü)"
msgid "Choose your country"
msgstr "ÅšéėŻīōå šėēźōńļėüćéļ"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Ōńüšļņ źėŽóēņ"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Ōį÷żōēōį óżķäåóēņ"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "×ńüķļņ óżķäåóēņ: "
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "'Ļķļģį ėļćįńéįģļż (user name)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Óõķčēģįōéźü ėļćįńéįóģļż"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6956,7 +7238,7 @@ msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
msgid "Error writing to file %s"
msgstr "ÓöÜėģį åććńįöŽņ óōļ įń÷åßļ %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7003,7 +7285,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -7032,7 +7314,7 @@ msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
msgid "Printer on remote CUPS server"
msgstr "ĮšļģåģįźńõóģŻķļņ åīõšēńåōēōŽņ CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "ĮšļģåģįźńõóģŻķļņ åīõšēńåōēōŽņ lpd"
@@ -7051,7 +7333,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "ÅīõšēńåōēōŽņ åźōõšžóåłķ"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "ÓõóźåõŽ åźōõšłōŽ URI"
@@ -7061,112 +7343,112 @@ msgstr "ÓõóźåõŽ åźōõšłōŽ URI"
msgid "Pipe job into a command"
msgstr "ÄéįółėŽķłóē óōēķ åķōļėŽ"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Ōļšéźüņ åźōõšłōŽņ"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "ÓöÜėģį åććńįöŽņ óōļ įń÷åßļ %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(module %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP äéåżčõķóē åīõšēńåōēōŽ CUPS:"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (ÅšéėļćŽ åī' ļńéóģļż)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Ōńüšļņ óżķäåóēņ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Šžņ åßķįé óõķäåäåģŻķļņ ļ åźōõšłōŽņ óįņ;"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -7178,17 +7460,21 @@ msgstr ""
"óå äéįöļńåōéźü äßźōõļ. Óå įõōŽķ ōēķ šåńßšōłóē, čį šńŻšåé ķį äēėžóåōå ōēķ\n"
"IP äéåżčõķóē ōļõ åīõšēńåōēōŽ CUPS źįé ßółņ źįé ōļķ įńéčģü čżńįņ."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Ńżčģéóē LĮĶ"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "ĮšļģåģįźńõóģŻķļņ åīõšēńåōēōŽņ CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7199,7 +7485,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7209,34 +7495,34 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "Ē IP äéåżčõķóē šńŻšåé ķį åßķįé óå ģļńöŽ 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Ļ įńéčģüņ čżńįņ šńŻšåé ķį åßķįé įźŻńįéļņ įńéčģüņ!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP äéåżčõķóē åīõšēńåōēōŽ CUPS:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Čżńį"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Boot Ōżšļõ Ńżčģéóē"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Šńļó莟ē åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7249,37 +7535,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Ōļšéźüņ åźōõšłōŽņ"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Ōļšéźüņ åźōõšłōŽņ"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7293,53 +7610,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "×ńŽóē įõōüģįōēņ įķß÷ķåõóēņ"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "ÄļźéģŽ čõńžķ"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "įķé÷ķåżčēźå ōļ %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "ÅźōõšłōŽņ äéźōżļõ (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7347,43 +7661,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "ÓõóźåõŽ åźōõšłōŽ URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Ōļšéźüņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Ōļšéźüņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7391,7 +7696,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7399,83 +7704,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Óå šļéÜ óåéńéįźŽ šüńōį åßķįé óõķäåäåģŻķļ ōļ modem óįņ;"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "ÓõóźåõŽ åźōõšłōŽ URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Ńõčģßóåéņ ÷ńłģÜōłķ"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "ÅšéėļćŻņ įšļģåģįźńõóģŻķļõ lpd åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7486,30 +7746,50 @@ msgstr ""
"åźōõšžóåłķ, źįčžņ źįé ōļ üķļģį ōēņ ļõńÜņ ōēķ ļšļßį čį \n"
"÷ńēóéģļšļéŽóåōå óå įõōüķ ōļķ åīõšēńåōēōŽ."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "ĮšļģåģįźńõóģŻķļ äéźōõįźü üķļģį:"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "ĮšļģåģįźńõóģŻķļ äéźōõįźü üķļģį ėåßšåé!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "ĮšļģåģįźńõóģŻķļ äéźōõįźü üķļģį ėåßšåé!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "įķé÷ķåżčēźå ōļ %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Åźźßķēóē óżķäåóēņ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ÄéįźļšŽ ėåéōļõńćßįņ äéźōżļõ."
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "ÅšéėļćŻņ åźōõšłōŽ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7524,35 +7804,46 @@ msgstr ""
"šńüóāįóē, źįčžņ źįé ļšļéį䎚ļōå įšįńįßōēōē šėēńļöļńßį šåńß źłäéźļż \n"
"÷ńŽóōē, ėŻīēņ źėåéäß źįé ōļģŻį Ž ļģÜäįņ åńćįóßįņ."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Äéźōõįźü üķļģį SMB åīõšēńåōēōŽ:"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP äéåżčõķóē SMB åīõšēńåōēōŽ:"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "¼ķļģį šüńļõ:"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "ĻģÜäį åńćįóßįņ:"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "×ńŽóē įõōüģįōēņ įķß÷ķåõóēņ"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Åßōå ōļ üķļģį ōļõ åīõšēńåōēōŽ Ž ē IP ōļõ šńŻšåé ķį äļčļżķ!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Ōļ üķļģį ćéį ōēķ Samba ėåßšåé!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7576,7 +7867,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7585,7 +7876,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7593,11 +7884,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "ÅšéėļćŻņ åźōõšłōŽ NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7611,52 +7902,69 @@ msgstr ""
"ōļ üķļģį ōļõ åźōõšłōŽ óōļķ ļšļßļ åšéčõģåßōå šńüóāįóē, źįčžņ źįé\n"
"ļšļéį䎚ļōå įšįńįßōēōē šėēńļöļńßį šåńß źłäéźļż ÷ńŽóōē źįé ėŻīēņ źėåéäß."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "ÅīõšēńåōēōŽņ åźōõšžóåłķ"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "¼ķļģį ļõńÜņ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Ōļ üķļģį ōļõ åīõšēńåōēōŽ NCP ėåßšåé!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Ōļ üķļģį ōēņ NCP ļõńÜņ ėåßšåé!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "ÅšéėļćŻņ åźōõšłōŽ socket"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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, šńŻšåé ķį äžóåōå ōļ \n"
"äéźōõįźü üķļģį ōļõ åźōõšłōŽ źįé šńļįéńåōéźÜ ōļķ įńéčģü čżńįņ."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
-msgstr "¼ķļģį åźōõšłōŽ"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+msgid "Printer host name or IP missing!"
msgstr "¼ķļģį åźōõšłōŽ ėåßšåé!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "¼ķļģį åźōõšłōŽ"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "ÓõóźåõŽ åźōõšłōŽ URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
#, fuzzy
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
@@ -7667,11 +7975,11 @@ msgstr ""
"šńŻšåé ķį ōēńåß åßōå ōéņ CUPS åßōå ōéņ Foomatic šńļäéįćńįöŻņ. ¼÷é šłņ äåķ "
"õšļóōēńßęļķōįé üėļé ļé URI ōżšļé įšü üėį ōį spoolers."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "øķį ółóōü URI šńŻšåé ķį åéóį÷čåß!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7681,25 +7989,30 @@ msgstr ""
"Ōį šåäßį ŠåńéćńįöŽ źįé Ōļšļčåóßį äåķ ÷ńåéÜęåōįé ķį \n"
"óõģšėēńłčļżķ. Åßķįé įšėÜ ó÷üėéį ćéį ōļõņ ÷ńŽóōåņ."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "¼ķļģį åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ōļšļčåóßį"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7714,26 +8027,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Ółóōü;"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "ÅšéėļćŽ ģļķōŻėļõ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Ōß ōżšļõ åźōõšłōŽ Ż÷åōå;"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7742,18 +8055,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7763,12 +8076,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7776,7 +8089,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7789,7 +8102,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7799,34 +8112,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "ÅšéėļćŽ %s šńŻšåé ķį åßķįé įźŻńįéļņ įńéčģüņ!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "ÅšéėļćŽ %s šńŻšåé ķį åßķįé įńéčģüņ!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "ÅšéėļćŽ %s åźōüņ ļńßļõ!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "ČŻėåōå ķį åźōõšžóåōå ģéį äļźéģįóō韎 óåėßäį;"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "ÄļźéģŽ čõńžķ"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7834,44 +8147,44 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "ÅźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Ōõšéźü"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Åźōżšłóē äļźéģįóōéźžķ óåėßäłķ..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Åźōżšłóē äļźéģįóōéźžķ óåėßäłķ..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Åźōżšłóē äļźéģįóōéźžķ óåėßäłķ..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Åźōżšłóē äļźéģįóōéźžķ óåėßäłķ..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7887,7 +8200,7 @@ msgstr ""
"\n"
"øćéķå ółóōÜ ē åźōżšłóē"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7897,16 +8210,16 @@ msgstr ""
"Ģšļńåß ķį šåńÜóåé źÜšļéļņ ÷ńüķļņ ģŻ÷ńé ē åźōżšłóē ķį īåźéķŽóåé.\n"
"øćéķå ółóōÜ ē åźōżšłóē;"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "ŹįķŻķįņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7915,15 +8228,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7932,7 +8245,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7940,41 +8253,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7984,7 +8297,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7993,46 +8306,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ÄéįźļšŽ ėåéōļõńćßįņ äéźōżļõ."
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ÄéįźļšŽ ėåéōļõńćßįņ äéźōżļõ."
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ÄéįźļšŽ ėåéōļõńćßįņ äéźōżļõ."
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "ÄéįźļšŽ ėåéōļõńćßįņ äéźōżļõ."
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Źėåßóéģļ"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "ÅšéėļćŻņ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8041,9 +8354,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8054,18 +8367,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8075,51 +8388,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8127,63 +8440,63 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Ōļ üķļģį ōļõ åźōõšłōŽ šńŻšåé ķį šåńéŻ÷åé ģüķļ ćńÜģģįōį, įńéčģļżņ źįé ōļķ "
"÷įńįźōŽńį underscore"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "ŹįķŻķįņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Åźźßķēóē óżķäåóēņ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Ńżčģéóē äéźōżļõ"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ē ļčüķē äåķ Ż÷åé ńõčģéóōåß įźüģē"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8191,12 +8504,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Ńżčģéóē äéźōżļõ"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8206,34 +8519,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Šļéü óżóōēģį åźōżšłóēņ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå;"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Õųēėü"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Šįńįķļśźü"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8248,12 +8561,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Šļéü óżóōēģį åźōżšłóēņ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå;"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8267,66 +8580,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "ÅšéėļćŽ Spooler EźōõšłōŽ"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Šļéü óżóōēģį åźōżšłóēņ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå;"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ńżčģéóē åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "ÅšéėļćŻņ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Ńżčģéóē åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Čį čŻėįōå ķį ńõčģßóåōå Żķįķ åźōõšłōŽ;"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "ÅźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8337,7 +8650,7 @@ msgstr ""
"ÕšÜń÷ļõķ ļé įźüėļõčåņ ļõńŻņ åźōżšłóēņ.\n"
"Ģšļńåßōå ķį šńļóčŻóåōå źé Üėėåņ Ž ķį įėėÜīåōå ōéņ õšÜń÷ļõóåņ."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8347,141 +8660,137 @@ msgstr ""
"ÕšÜń÷ļõķ ļé įźüėļõčåņ ļõńŻņ åźōżšłóēņ.\n"
"Ģšļńåßōå ķį šńļóčŻóåōå źé Üėėåņ Ž ķį įėėÜīåōå ōéņ õšÜń÷ļõóåņ."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Ńżčģéóē äéźōżļõ"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Źįķļķ韎 ŹįōÜóōįóē"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "øīļäļņ"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Óżķäåóē Internet"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "ÅšéėļćŽ ģļķōŻėļõ åźōõšłōŽ"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Åźōżšłóē äļźéģįóōéźžķ óåėßäłķ..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "ČŻėåōå ķį äļźéģÜóåōå ōéņ ńõčģßóåéņ;"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Ōļšéźüņ åźōõšłōŽņ"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "ČŻėåōå ķį åšįķåźźéķŽóåōå ōļ äßźōõļ;"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
@@ -8536,8 +8845,9 @@ msgstr ""
"ĮöŽóōå ōį źåķÜ įķ äåķ åšéčõģåßōå ftp proxy"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Ōļ Url šńŻšåé ķį īåźéķÜ ģå'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Ōļ URL šńŻšåé ķį īåźéķÜ ģå 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8586,43 +8896,6 @@ msgstr "įšļōõ÷ßį mkraid (ģŽšłņ įšļõóéÜęļõķ ōį raidtools;)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Äåķ õšÜń÷ļõķ įńźåōŻņ źįōįōģŽóåéņ ćéį RAID åšéšŻäļõ %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Įõōü ōļ åšßšåäļ šńŻšåé ķį ÷ńēóéģļšļéēčåß ģå šńļóļ÷Ž. ŹÜķåé ōļ óżóōēģÜ óįņ\n"
-"šéļ åõźļėü÷ńēóōļ, įėėÜ šļėż åõįßóčēōļ. Äåķ šńŻšåé ķį ÷ńēóéģļšļéēčåß óå "
-"óżóōēģį\n"
-"óõķäåäåģŻķļ óōļ Internet Ž LAN. Äåķ õšÜń÷ļõķ ėŻīåéņ źėåéäéÜ."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Ģå įõōü ōļ åšßšåäļ įóöįėåßįņ åßķįé äõķįōŽ ē ÷ńŽóē ōļõ óõóōŽģįōļņ óōļ \n"
-"Internet łņ åīõšēńåōēōŽ. Ē įóöÜėåéį åßķįé įńźåōÜ õųēėŽ žóōå ķį äŻ÷åōįé\n"
-"ōįõōü÷ńļķåņ óõķäŻóåéņ įšü šļėėļżņ šåėÜōåņ."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Ńżčģéóē LĮĶ"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "ÅšéėļćŻņ"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Åźźßķēóē ōļõ ALSA (Advanced Linux Sound Architecture) óõóōŽģįōļņ Ž÷ļõ"
@@ -8940,7 +9213,7 @@ msgstr "Éķōåńķåō"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "ŹįōÜóōįóē óõóōŽģįōļņ"
@@ -9064,7 +9337,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "ŹŻķōńļ ÅėŻć÷ļõ"
@@ -9163,21 +9436,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Šįńįźįėž įšļóõķäåčåßōå źįé ģåōÜ šįōŽóōå Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Šįńįźįėž åšįķįóõķäåčåßōå łņ %s ćéį åķåńćļšļßēóē ōłķ įėėįćžķ"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9185,176 +9458,176 @@ msgstr ""
"Äåķ ģšļńž ķį äéįāÜół ōļķ šßķįźį źįōįōģŽóåłķ, åßķįé šļėż źįōåóōńįģŻķļņ :(\n"
"Čį šńļóšįčŽół ķį óõķå÷ßół įöįéńžķōįņ ōéņ ėįķčįóģŻķåņ źįōįōģŽóåéņ"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "ĀÜóē ÄåäļģŻķłķ"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "ĀÜóē ÄåäļģŻķłķ"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Šńļó莟ē ÷ńŽóōē"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "ŠåėÜōēņ DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_ĀļŽčåéį"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Äå óõķäŻčēźå"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "ÄéįćńįöŽ"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "ÅšéėŻīōå įń÷åßļ"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Šńļó莟ē ÷ńŽóōē"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "ŠåėÜōēņ DHCP"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ńżčģéóē..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "åšįķįńżčģéóē"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Šįńįźįėž åéóÜćåōå ōē äéóźŻōōį Åźźßķēóēņ óōļķ ļäēćü %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Äåķ õšÜń÷åé äéįčŻóéģļņ ļäēćüņ äéóźŻōōįņ"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "ÓöÜėģį!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Ńõčģßóåéņ ģåōÜ ōēķ åćźįōÜóōįóē"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9369,23 +9642,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Boot Ōżšļõ Ńżčģéóē"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Šńļåōļéģįóßį äéóźŻōįņ įõōüģįōēņ åćźįōÜóōįóēņ"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9393,40 +9666,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Óõć÷įńēōŽńéį!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "ÅćźįōÜóōįóē"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Šńļó莟ē ÷ńŽóōē"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Ģļńöļšļßēóē įń÷åßļõ loopback %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9434,7 +9720,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9442,34 +9728,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "ÄļźéģŽ čõńžķ"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9477,737 +9827,800 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "ÓöÜėģį źįōÜ ōēķ įķÜćķłóē ōļõ įń÷åßļõ %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "ÅšéėļćŽ šįźŻōłķ"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "ÄéįćńįöŽ ļõńÜņ"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Įöįßńåóē Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Źłäéźü üķļģį"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Šįńįźįėž šńļóšįčŽóōå īįķÜ"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Šįńįźįėž šńļóšįčŽóōå īįķÜ"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "īįķįšėēźōńļėļćŽóōå ōļķ źłäéźü šńüóāįóēņ"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Šįńįźįėž åšéėŻīōå äéįńżčģéóē šėēźōńļėļćßļõ."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
+msgid "Please check if you are using a DVDR device"
+msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Šįńįźįėž źÜķōå źėéź óå ģéį źįōÜōģēóē"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "ÅšéėŻīōå įń÷åßļ"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "ÓõóźåõŽ äéźōżļõ"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Ōżšļņ"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Źłäéźü üķļģį"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Šįńįźįėž åšéėŻīōå ģéį ćėžóóį."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Ģå ńļäÜźé"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Ģå ńļäÜźé"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "ŠįńÜģåōńļé ļäēćļż"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ńõčģßóåéņ äéźōżļõ"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Šńļåō. óõó. įń÷."
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "ÓõóźåõŽ šļķōéźéļż: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "ÅšéėļćŻņ"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Óå šļéÜ óåéńéįźŽ šüńōį åßķįé óõķäåäåģŻķļ ōļ modem óįņ;"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Ńõčģßóåéņ äéźōżļõ"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Šįńįźįėž åšéėŻīōå ōżšļ šļķōéźéļż."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Óżķäåóē LAN"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Ōńüšļņ óżķäåóēņ åźōõšłōŽ"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "ÅšįķįöļńÜ įšü äéóźŻōōį"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Šįńįźįėž åšéėŻīōå ōżšļ šļķōéźéļż."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "¶ėėļ"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "ÅćźįōÜóōįóē óõóōŽģįōļņ"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "ÅšįķįöļńÜ įšü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "ÅšįķįöļńÜ įšü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Šįńįźįėž åšéėŻīōå ōżšļ šļķōéźéļż."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "ŠńļóįńģļóģŻķļ"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Šńļēćļżģåķļ"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "ŹįōÜóōįóē:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "ÅšįķįöļńÜ įšü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Åšüģåķļ -»"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Čį åćźįōįóōįčļżķ ōį šįńįźÜōł šįźŻōį"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Šįńįźįėž åšéėŻīōå ģéį ćėžóóį."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Šįńįźįėž åšéėŻīōå ģéį ćėžóóį."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Šįńįźįėž åšéėŻīōå ģéį ćėžóóį."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "ŹįōåóōńįģŻķļ åöåäńéźü įń÷åßļ"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Įšļ莟åõóē óå įń÷åßļ"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ńõčģßóåéņ äéźōżļõ"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ńõčģßóåéņ äéźōżļõ"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Ńżčģéóē LĮĶ"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Ńżčģéóē LĮĶ"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Šńļåō. óõó. įń÷."
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10218,7 +10631,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10239,7 +10652,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10248,7 +10661,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10272,7 +10685,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10289,21 +10702,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10317,17 +10730,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10344,7 +10757,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10384,7 +10797,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10395,7 +10808,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10408,7 +10821,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10447,95 +10860,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Ē åćźįōÜóōįóē ōļõ %s įšŻōõ÷å. ŠńļźėŽčēźå ōļ įźüėļõčļ óöÜėģį:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Åńćįėåßį źļķóüėįņ"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "ŹŻķōńļ ÅėŻć÷ļõ"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "Ćéį åéäéźļżņ"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Šļķōßźé"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "¼ķļģį šüńļõ:"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "ÅźōõšłōŽņ"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Ļäēćüņ Ńżčģéóēņ Äéźōżļõ"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Šéóōļšļßēóē ōįõōüōēōįņ"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "ÅšéėļćŽ šįźŻōłķ"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Šįńįźįėž šåńéģŻķåōå"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10547,150 +10987,150 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "øīļäļņ"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "šüńōį"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "øīļäļņ"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
"Ģšļńåßōå ķį åšéėŻīåōå źįé Üėėåņ ćėžóóåņ šļõ čį åßķįé äéįčŻóéģåņ ģåōÜ ōļ "
"šŻńįņ ōēņ åćźįōÜóōįóēņ"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Ńżčģéóē äéźōżļõ (%d adapters)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Šńļößė: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "ÄéįćńįöŽ šńļößė..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Šńļößė ćéį äéįćńįöŽ:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "ĶŻļ šńļößė..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "¼ķļģį óõóōŽģįōļņ: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Šńüóāįóē óōļ Internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Ōżšļņ:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Šżėē äéźōżļõ:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "ÄéåšéöÜķåéį:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "ŹįōÜóōįóē:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Ńżčģéóē Šńüóāįóēņ óōļ Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Ńżčģéóē LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Ļäēćüņ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "ÄéåšéöÜķåéį"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Šńłōüźļėėļ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "ŹįōÜóōįóē:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Ńżčģéóē ōļšéźļż äéźōżļõ..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "ĢÜćļņ..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Åķåńćļšļßēóē"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Šįńįźįėž šåńéģŻķåōå... ÅöįńģļćŽ ńõčģßóåłķ"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "ÓõķäŻčēźå"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Äå óõķäŻčēźå"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Óżķäåóē..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Įšļóżķäåóē..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10698,42 +11138,42 @@ msgstr ""
"Äåķ Ż÷åōå źÜšļéį ńõčéóģŻķē äéåšéöÜķåéį.\n"
"Ńõčģßóōå ōéņ źÜķļķōįņ źėßź óōļ 'Ńżčģéóē'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Ńżčģéóē LĮĶ"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "ŠńļóįńģļćŻįņ %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Šńłōüźļėėļ Åźźßķēóēņ"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Īåźßķēóįķ óōēķ åźźßķēóē óõóōŽģįōļņ"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "šåėÜōēņ DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr ""
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10741,121 +11181,121 @@ msgstr ""
"Äåķ Ż÷åōå óżķäåóē ģå ōļ internet.\n"
"ÄēģéļõńćŽóōå ģßį źÜķļķōįņ źėßź óōļ 'Ńżčģéóē'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Ńżčģéóē óżķäåóēņ Äéįäéźōżļõ (internet)"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Ńżčģéóē Óżķäåóēņ Äéįäéźōżļõ (internet)"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Ōżšļņ óżķäåóēņ: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "ŠįńÜģåōńļé"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Šżėē äéźōżļõ"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "ŹÜńōį Ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "ŠåėÜōēņ DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "÷ńŽóē: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "¼ķļģį įńčńžģįōļņ (module)"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "ĢŻćåčļņ"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "äēģéļõńćßį äéóźŻōōįņ åźźßķēóēņ"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "åī' ļńéóģļż"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "ÓöÜėģį DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Żźäļóē šõńŽķį"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "ĆåķéźÜ"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Šåńéļ÷Ž Šńļ÷łńēģŻķłķ"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "šńļįéńåō韯ņ åšéėļćŻņ ōļõ mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Šńļó莟ē įńčńžģįōļņ (module)"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "ģåōÜ āßįņ"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "įķ ÷ńåéÜęåōįé"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "šįńÜėåéųē ōłķ įńčńłģÜōłķ (modules) scsi"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "šįńÜėåéųē ōłķ įńčńłģÜōłķ (modules) raid"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "ĮšļģÜźńõķóē įńčńžģįōļņ (module)"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "øīļäļņ (Output)"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Äēģéļõńćßį äéóźŻōōįņ"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Óéćļõńåõōåßōå šłņ Żķį ģŻóļ åßķįé šįńüķ ćéį ōē óõóźåõŽ %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10864,12 +11304,12 @@ msgstr ""
"Äåķ õšÜń÷åé ģŻóļ ćéį ōē óõóźåõŽ %s.\n"
"Šįńįźįėž åéóÜćåōå Żķį."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Įäõķįģßį fork: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10880,103 +11320,103 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Ļėļźėēńžčēźå"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Šńļåōļéģįóßį åćźįōÜóōįóēņ"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "įšįćüńåõóē"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10985,121 +11425,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Ģļńöļš. źįōįōģŽó."
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Ńżčģéóē LĮĶ"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Óēģåßļ óżķäåóēņ"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "ÅšéėŻīōå źįōįōģŽóåéņ šńļņ ģļńöļšļßēóē"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Ćńįöåßļ"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Įźżńłóē"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "ÅźōõšłōŽņ"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "ÅćźįōÜóōįóē óõóōŽģįōļņ"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "ÅšéėŻīōå įń÷åßļ"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "ĢŽķõģį Init"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ óōļ óżóōēģÜ óįņ!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "ÅćźįōÜóōįóē"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ óōļ óżóōēģÜ óįņ!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "øīļäļņ"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Åšéģåńéóģüņ óżķäåóēņ Internet"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Åšéģåńéóģüņ óżķäåóēņ Internet åķåńćļšļéēģŻķļņ"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11111,31 +11556,31 @@ msgstr ""
"\n"
"Ōß čŻėåōå ķį źÜķåōå;"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "įšåķåńćļšļßēóē"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Üźõńļ"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "åšįķįńżčģéóē"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Įšåķåńćļšļßēóē åīõšēńåōēōžķ..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Åšéģåńéóģüņ óżķäåóēņ Internet įšåķåńćļšļéēģŻķļņ"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Åšéģåńéóģüņ óżķäåóēņ Internet įšåķåńćļšļéēģŻķļņ"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11147,19 +11592,19 @@ msgstr ""
"\n"
"Ōß čŻėåōå ķį źÜķåōå;"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "åķåńćļšļßēóē"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Åķåńćļšļßēóē åīõšēńåōēōžķ..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Åšéģåńéóģüņ óżķäåóēņ Internet åķåńćļšļéēģŻķļņ"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11174,21 +11619,21 @@ msgstr ""
"Óēģåßłóē: ×ńåéÜęåóōå Żķįķ šńļóįńģļćŻį äéźōżļõ Żōóé žóōå ķį äēģéļõńćŽóåōå Żķį "
"ōļšéźü äßźōõļ (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ÄéåšéöÜķåéį %s (÷ńŽóē įńčńžģįōļņ %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "ÄéåšéöÜķåéį %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ óōļ óżóōēģÜ óįņ!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11196,11 +11641,11 @@ msgstr ""
"Äåķ āńŻčēźå šńļóįńģļćŻįņ äéźōżļõ Ethernet óōļ óżóōēģÜ óįņ. Šįńįźįėž "
"÷ńēóéģļšļéåßóōå ōļ šńüćńįģģį ńżčģéóēņ õėéźļż."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "ÓõóźåõŽ äéźōżļõ"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11215,7 +11660,7 @@ msgstr ""
"\n"
"Čį ńõčģéóōåß ōļ Ōļšéźü óįņ Äßźōõļ ģå įõōüķ ōļķ šńļóįńģļćŻį."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11223,12 +11668,12 @@ msgstr ""
"Šįńįźįėž åšéėŻīōå ōé šńļóįńģļćŻįņ äéźōżļõ čį óõķäåčåß\n"
"óōļ ōļšéźü óįņ äßźōõļ."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Ē ļčüķē äåķ Ż÷åé ńõčģéóōåß įźüģē"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11238,17 +11683,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Boot Ōżšļõ Ńżčģéóē"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Ńõčģßóåéņ Äéįäéźōżļõ (Internet)"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11259,7 +11704,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11271,34 +11716,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP äéåżčõķóē åīõšēńåōēōŽ CUPS:"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"ŠéčįķŽ åšįķį÷ńēóéģļšļßēóē ōēņ äéåżčõķóēņ LAN óōēķ ōńŻ÷ļõóį ńżčģéóē ōļõ %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Įķé÷ķåżōēźå ńżčģéóē firewall!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11306,20 +11751,20 @@ msgstr ""
"Šńļóļ÷Ž! Įķé÷ķåżōēźå õšÜń÷ļõóį ńżčģéóē firewall. ŗółņ ÷ńåéįóōļżķ ļńéóģŻķåņ"
"\"÷åéńļźßķēōåņ\" ńõčģßóåéņ ģåōÜ ōēķ åćźįōÜóōįóē."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Ńżčģéóē..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Ńżčģéóē, åćźįōÜóōįóē ėļćéóģéźļż, åźźßķēóē åīõšēńåōēōžķ..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Šńüāėēģį źįōÜ ōēķ åćźįōÜóōįóē ōļõ šįźŻōļõ %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11330,23 +11775,23 @@ msgstr ""
"õšļėļćéóōŻņ óōļ ōļšéźü óįņ äßźōõļ, ģå ōēķ ÷ńŽóē įõōüģįōēņ ńżčģéóēņ äéźōżļõ "
"(DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Ē ńżčģéóē Ż÷åé Žäē ćßķåé, įėėÜ įõōŽ ōē óōéćģŽ åßķįé įšåķåńćļšļéēģŻķē."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Ē ńżčģéóē Ż÷åé Žäē ćßķåé, źįé įõōŽ ōē óōéćģŽ åßķįé åķåńćļšļéēģŻķē."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Ļ Åšéģåńéóģüņ óżķäåóēņ Internet äåķ Ż÷åé ńõčģéóōåß šļōŻ."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Ńżčģéóē åšéģåńéóģļż óżķäåóēņ Äéįäéźōżļõ (internet)"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11361,20 +11806,13 @@ msgstr ""
"\n"
"ŹÜķōå źėßź óōļ Ńżčģéóē ćéį ķį īåźéķŽóåōå ōļķ ļäēćü åćźįōÜóōįóēņ."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ŹŻķōńļ ÅėŻć÷ļõ"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "ÅšéėŻīōå ōļ åńćįėåßļ šļõ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11383,108 +11821,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Źįķįäéźü (ŹåģšŻź)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Åõńžšē"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Ćįėėéźü"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Éóėįķäéźü"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Åõńžšē"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "óåéńéįźü"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "ŠńļźėŽčēźå óöÜėģį źįōÜ ōēķ åćźįōÜóōįóē ōłķ šįźŻōłķ:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11508,11 +11950,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "×ńŽóē: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Šįńįźįėž åšéėŻīōå äéįńżčģéóē šėēźōńļėļćßļõ."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "ČŻėåōå ōļ BackSpace ķį åšéóōńŻöåé Delete óōēķ źļķóüėį;"
@@ -11536,7 +11978,7 @@ msgstr "Äåķ ģšļńž ķį īåźéķŽół ōļ live upgrade!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -11647,24 +12089,24 @@ msgstr "Ēģåńļėüćéļ"
msgid "Content of the file"
msgstr "Šåńéå÷üģåķļ ōļõ įń÷åßļõ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "šįńįźįėž šåńéģŻķåōå, åšåīåńćįóßį įń÷åßļõ: %s"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "ÅėįöńéÜ ńżčģéóē"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -11673,127 +12115,128 @@ msgstr ""
"Åäž, čį ģšļńŻóåōå ķį ńõčģßóåōå ōļõņ http źįé ftp proxies\n"
"ģå Ž ÷łńßņ login źįé źłäéźü šńüóāįóēņ\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "¼ķļģį äéźōżļõ"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "ÅīõšēńåōēōŽņ ōį÷õäńļģåßļõ Postfix, åīõšēńåōēōŽņ ķåžķ Inn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "ÅīõšēńåōēōŽņ NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "ÅīõšēńåōēōŽņ"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "ÅīõšēńåōēōŽņ åźōõšžóåłķ"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "ÅīõšēńåōēōŽņ"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Ģļńöļšļßēóē"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Ńõčģßóåéņ ÷ńłģÜōłķ"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Šįńįźįėž šńļóšįčŽóōå īįķÜ"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Įšļ莟åõóē Łņ"
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Šįńįźįėž åšéėŻīōå ōżšļ šļķōéźéļż."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "äåķ āńŻčēźå serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Åīļģļßłóē ōńßōļõ šėŽźōńļõ;"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Åķōļšéóģüņ óõóźåõžķ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "ÄļźéģŽ čõńžķ"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "ÅšéėŻīōå źÜńōį ćńįöéźžķ"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "ÓõóźåõŽ åźźßķēóēņ"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11801,7 +12244,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11821,15 +12264,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Ńżčģéóē Firewalling"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Ńżčģéóē firewalling"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11841,7 +12284,7 @@ msgstr ""
"ø÷åōå Žäē óōēģģŻķļ Żķį firewall.\n"
"ŹÜķōå źėßź óōļ Ńżčģéóē ćéį ķį įėėÜīåōå Ž ķį äéįćńÜųåōå ōļ firewall"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12103,56 +12546,60 @@ msgstr "Įäõķįģßį įķļßćģįōļņ %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "ÓöÜėģį źįōÜ ōļ Üķļéćģį ōļõ %s ćéį åććńįöŽ: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Ńżčģéóē Firewalling"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Šįńįźįėž šåńéģŻķåōå, šńļåōļéģįóßį åćźįōÜóōįóēņ"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -12200,6 +12647,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Åńćįėåßį Ž÷ļõ: mp3 Ž midi players, ģßźōåņ źėš"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Āéāėßį źįé ļäēćļß ćéį ōļ Linux źįé ōļ åėåżčåńļ ėļćéóģéźü"
@@ -12287,10 +12738,6 @@ msgid "Office Workstation"
msgstr "Óōįčģüņ åńćįóßįņ ćńįöåßļõ"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "ÅīõšēńåōēōŽņ"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, źėš"
@@ -12353,6 +12800,10 @@ msgid "Clients for different protocols including ssh"
msgstr "ŠåėÜōåņ ćéį äéįöļńåōéźÜ šńłōüźļėėį óõģšåńéėįģāįķļģŻķļõ ōļõ ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Šżėē Éķōåńķåō"
@@ -12384,6 +12835,106 @@ msgstr "ŠļėõģŻóį - ÅććńįöŽ CD"
msgid "Scientific Workstation"
msgstr "Óōįčģüņ Åńćįóßįņ Åšéóōēģļķéźžķ åöįńģļćžķ"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Įõōü ōļ åšßšåäļ šńŻšåé ķį ÷ńēóéģļšļéēčåß ģå šńļóļ÷Ž. ŹÜķåé ōļ óżóōēģÜ "
+#~ "óįņ\n"
+#~ "šéļ åõźļėü÷ńēóōļ, įėėÜ šļėż åõįßóčēōļ. Äåķ šńŻšåé ķį ÷ńēóéģļšļéēčåß óå "
+#~ "óżóōēģį\n"
+#~ "óõķäåäåģŻķļ óōļ Internet Ž LAN. Äåķ õšÜń÷ļõķ ėŻīåéņ źėåéäéÜ."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Ģå įõōü ōļ åšßšåäļ įóöįėåßįņ åßķįé äõķįōŽ ē ÷ńŽóē ōļõ óõóōŽģįōļņ óōļ \n"
+#~ "Internet łņ åīõšēńåōēōŽ. Ē įóöÜėåéį åßķįé įńźåōÜ õųēėŽ žóōå ķį äŻ÷åōįé\n"
+#~ "ōįõōü÷ńļķåņ óõķäŻóåéņ įšü šļėėļżņ šåėÜōåņ."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "ÅšéėļćŻņ"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "ĮóöÜėåéį"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Šįńįźįėž åšéėŻīōå äéįńżčģéóē šėēźōńļėļćßļõ."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Šįńįźįėž äļźéģÜóōå ōļ šļķōßźé"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Ōļ Url šńŻšåé ķį īåźéķÜ ģå'ftp:'"
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Šįńįźįėž åšéėŻīōå ōį šįźŻōį šļõ čŻėåōå ķį åćźįōįóōŽóåōå"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Įöįßńåóē Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Šßķįźįņ"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "ÅīõšēńåōēōŽņ NTP"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "ĮšļģåģįźńõóģŻķļņ åźōõšłōŽņ"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "ÅćźįōÜóōįóē šįźŻōļõ %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "ĮķÜćķłóē āÜóēņ ļäēćžķ CUPS"
+
+#~ msgid "Control Center"
+#~ msgstr "ŹŻķōńļ ÅėŻć÷ļõ"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "ÅšéėŻīōå ōļ åńćįėåßļ šļõ čŻėåōå ķį ÷ńēóéģļšļéŽóåōå"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "äåķ āńŻčēźå serial_usb\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "ōļ fsck įšŻōõ÷å ģå źłäéźü åīüäļõ %d Ž óŽģį %d"
@@ -12451,9 +13002,6 @@ msgstr "Óōįčģüņ Åńćįóßįņ Åšéóōēģļķéźžķ åöįńģļćžķ"
#~ msgid "Setting security level"
#~ msgstr "Ńżčģéóē åšéšŻäļõ įóöįėåßįņ"
-#~ msgid "Graphics card"
-#~ msgstr "ŹÜńōį ćńįöéźžķ"
-
#~ msgid "Select a graphics card"
#~ msgstr "ÅšéėŻīōå źÜńōį ćńįöéźžķ"
@@ -12536,6 +13084,3 @@ msgstr "Óōįčģüņ Åńćįóßįņ Åšéóōēģļķéźžķ åöįńģļćžķ"
#~ msgid "Percentage of packages to install"
#~ msgstr "Šļóļóōü šįźŻōłķ šńļņ åćźįōÜóōįóē"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "ÅšéėŻīōå åšßšåäļ įóöįėåßįņ"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 148083a67..82e13b453 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -57,54 +57,54 @@ msgstr "Elektu X servilon"
msgid "X server"
msgstr "X servilo"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Plur-ekrana konfigura¼o"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Elektu memorkapaciton de via grafika karto"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree Konfigurado"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Kiun konfiguron de XFree vi deziras havi?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "ISDN-a Konfigura¼on"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,11 +144,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Akomodata"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Grafika karto"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Ekrano"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Distingivo"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Jeso"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Ęesu"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -161,32 +207,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Elektu ekranon"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Ekrano"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Akomodata"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Genera"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Malfaru"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -208,11 +250,11 @@ msgstr ""
"sinkronamplekson kiu estas preter la kapabloj de via ekrano: vi eble\n"
"difektus vian ekranon. Se vi dubas, elektu zorgeman opcion."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horizontala sinkronrapido (horizontal sync rate)"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikala refrežigrapido (vertical refresh rate)"
@@ -236,57 +278,42 @@ msgstr "16 milionoj koloroj (24 bitoj)"
msgid "4 billion colors (32 bits)"
msgstr "4 miliardoj koloroj (32 bitoj)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Distingivoj"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Distingivo"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Elektu distingivon kaj kolorprofundon"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Nuligu"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Jeso"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ęu vi deziras provi la konfigura¼on?"
@@ -295,71 +322,71 @@ msgstr "Ęu vi deziras provi la konfigura¼on?"
msgid "Test of the configuration"
msgstr "Provu konfigura¼on"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavara aranųo: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Speco de muso: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Musaparato: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Ekrano: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Ekrana horizontala sinkronrapido (horizontal sync rate): %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekrana vertikala refrežigrapido (vertical refresh rate): %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafika karto: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Graifka memoro: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Kolorprofuneco: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Distingivo: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 servilo: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X Fenestro ęe komenco"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -368,165 +395,182 @@ msgstr ""
"Mi povas konfiguri vian komputilon tiel ke ųi ażtomate lanęos X kiam ųi\n"
"ekfunkcias. Ęu vi deziras ke X ażtomate lanęos?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Kia estas via ISDN-a konekta¼o?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Unua sektoro de starta subdisko"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĘefStartRikordo)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO Instalado"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startžargilon?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub Instalado"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Startžargilo ęefaj opcioj"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Startžargilo por uzi"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Startžargila instalado"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Starta aparato"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakta"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Grafika reųimo"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaż starti defażltan sistemon"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Limigu komandliniajn opciojn"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "limigu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ęiuj startadoj"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Preciza kvanto de memoro se bezonata (trovis %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Ebligu multoblajn profilojn"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Donu kvanton de memoro en MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
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:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Defażlta Mastruma Sistemo?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -535,7 +579,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -543,155 +587,156 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aż žanųi la ekzistantajn."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Žanųu"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Danųera"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Defażlta"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-grandeco"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Forigu enskribon"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Vi devas havi interžanųan subdiskon"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ęi tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Ęu vi havas alian?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ęu vi havas iun %s interfacon?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -702,17 +747,17 @@ msgstr ""
"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
"Ekzemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modulaj opcioj:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -729,15 +774,15 @@ msgstr ""
"por la informo ųi bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"ųi ne devus każzi difekton."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Ażtomate esploru"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -746,54 +791,54 @@ msgstr ""
"Žargado de modulo %s malsukcesis.\n"
"Ęu vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ęi tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ęi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ęi tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -802,32 +847,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Želo"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Ażtomata-enregistrado"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -836,20 +881,20 @@ msgstr ""
"Mi povas konfiguri vian komputilon por ażtomate enregistri unu uzulon kiam\n"
"ųi startas. Se vi ne deziras uzi ęi tion, alklaku la `Nuligu' butonon."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Elektu la defażltan uzulon:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanęi:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -857,39 +902,39 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaż la instalado"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ęiuj"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Ęi tiu paka¼o devus esti promociata.\n"
"Ęu vi certas ke vi deziras malelekti ųin?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -898,42 +943,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Lażnorma"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -943,7 +988,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi ųi surrete.\n"
"Ųi ne havas pasvortojn."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -951,7 +996,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraż\n"
"ne rekomendita."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -960,13 +1005,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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -980,7 +1025,7 @@ msgstr ""
"La sekureco nun estas sufięe alta por uzi la sistemon kiel servilo kiu\n"
"akceptas konektojn de multaj klientoj."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -989,27 +1034,44 @@ 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:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcioj"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Elektu sekurnivelon?"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1026,20 +1088,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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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"
@@ -1047,133 +1109,256 @@ 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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
msgid "not enough room in /boot"
msgstr "mankas sufięe 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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kie vi deziras instali la startžargilon?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr ""
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
#, fuzzy
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Dosiero"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Dosiero/_Foriru"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<stir>F"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NovStila Ekrano"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tradicia Ekrano"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Tradicia Gtk+ Ekrano"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub modalo"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot modalo"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Instalu sistemon"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Eraro"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "agrabla(j)"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Elektu instalklason"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfiguru"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Elektado de individuaj paka¼oj"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistema modalo"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Jes"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1219,69 +1404,120 @@ msgid "Screenshots will be available after install in %s"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaż la instalado"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Franca"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Germana"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Greka"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norvega"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Sveda"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Itala"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "seria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "nova"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Servilo"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Bonvole, provu la muson"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "Prokura servilo devus esti http://..."
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Servilo"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Surmetingo: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opcioj: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Bonvolu fari rezervan kopion de via dateno antaże"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Legu zorge"
@@ -1295,15 +1531,6 @@ msgstr ""
"sufięas)\n"
"ęe la komenco de la disko"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Eraro"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Soręisto"
@@ -1329,7 +1556,7 @@ msgid "Please click on a partition"
msgstr "Bonvolu klaki sur subdiskon"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detaloj"
@@ -1358,13 +1585,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Interžanųa"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Malplena"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Alia"
@@ -1372,12 +1599,12 @@ msgstr "Alia"
msgid "Filesystem types:"
msgstr "Specoj de dosiersistemoj:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Kreu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1387,7 +1614,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Uzu ``%s'' anstataże"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Forigu"
@@ -1395,7 +1622,7 @@ msgstr "Forigu"
msgid "Use ``Unmount'' first"
msgstr "Uzu ``Malmuntu'' antaże"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1404,77 +1631,77 @@ msgstr ""
"estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Elektu agon"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "2a Etendata (Ext2)"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Žanųu al Spertula reųimo"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Žanųu al Normala reųimo"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Malfaru"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ęu mi devus dażri malgraże?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Ęu eliru sen konservi"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Ęu eliru sen skribi la subdisktabelon?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ęu vi deziras provi la konfigura¼on?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Ażtomate disponigu"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Forvižu ęion"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Plu"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Detektado de fiksdisko(j)"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Ęiuj el la subdiskoj estas uzata"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Mi ne povas aldoni plu da subdiskoj"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1482,35 +1709,35 @@ msgstr ""
"Por havi plu da subdiskoj, bonvole forigu unu por povi krei etendigitan\n"
"subdiskon"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Skribu subdiskotabelon"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Sava subdiskotabelo"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Ażtomata muntado de demetebla medio"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1518,11 +1745,11 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Ęu dażras tamen?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Averto"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1530,131 +1757,114 @@ msgstr ""
"Enžovu disketon en drajvo\n"
"Ęiuj datenoj sur tiu disketo estos perdata"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Provas savi subdisktabelon"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Montru informon"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Surmetingo"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opcioj"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Regrandecigu"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Movu"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatu"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Aldonu al RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Aldonu al LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Malmuntu"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Forigu de RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Forigu de LVM (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Žanųu RAID (Redundanca Aro de Malmultekostaj Diskoj)"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Uzu por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Kreu novan subdiskon"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Komenca sektoro: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Surmetingo: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Prefero: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Žanųu subdiskspecon"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kiun dosierosistemo vi deziras uzi?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kie vi deziras munti retrokonektan dosieron %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kie vi deziras munti aparato %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1662,139 +1872,144 @@ msgstr ""
"Ne povas malfiksi surmetingon ęar ęi tiu subdisko estas uzata por\n"
"retrokonektado. Unue forigu la retrokonektadon."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Kie vi deziras munti aparato %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Kalkulas FAT dosiersistemajn limojn"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Regrandecigas"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ęi tiu subdisko ne estas regrandecigebla"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Ęiuj datenoj en ęi tiu subdisko devus esti rezervata"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Post vi regrandecigas subdiskon %s, ęiuj datenoj en ęi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Elektu la novan grandecon"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Grandeco en MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Al kiu disko vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektoro"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Al kiu sektoro vi deziras movi?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Movante"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Movas subdisko..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nova"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr ""
"Elektu ekzistantan RAID (Redundanca Aro de Malmultekostaj Diskoj) por\n"
"aldoni al"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Vi ne povas uzi ęi tiun subdiskon por retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Retrokonektado"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Retrokonekta dosieronomo: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Vera nomo"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Alia retrokonektado jam uzas tiun dosieron, elektu alian"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Dosiero jam ekzistas. Ęu vi deziras uzi ųin?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Modulaj opcioj:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "aparato"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "nivelo"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "grandeco de pecoj"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Zorgu: ęi tiu operacio estas danųera."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Kiun specon de subdiskado?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Ęi tiu paka¼o devus esti promociata.\n"
"Ęu vi certas ke vi deziras malelekti ųin?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1806,7 +2021,7 @@ msgstr ""
"Aż vi uzos LILO kaj ųi ne funkcios, aż vi ne uzos LILO kaj vi ne bezonas\n"
"/boot."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1818,7 +2033,7 @@ msgstr ""
"subdiskon. Se vi intencas uzi la LILO startadministranto, zorgu aldoni\n"
"/boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1828,139 +2043,139 @@ msgstr ""
"Neniu startžargilo povas trakti tiun sen /boot subdisko.\n"
"Do zorgu aldoni /boot subdiskon."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La subdisktabelo de drajvo %s estos skribata al disko!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Vi bezonos restarti antaż ol la žanųo povas efektiviųi"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Post vi formatas la subdiskon %s, ęiuj datenoj en ęi tiu subdisko estos\n"
"perdata"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatas"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatas subdiskon %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid malsukcesis"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Mankas sufięan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Mankas sufięan da libera spaco por disponigi novajn subdiskojn"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Distingivo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Aparato: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-a diskingolitero: %s (nur konjekto)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Speco: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nomo: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Komenco: sektoro %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Grandeco: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoroj"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "De cilindro %d al cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ne formatita\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Muntita\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID (Redundanca Aro de Malmultekostaj Diskoj) md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Retrokonekta(j) dosiero(j): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1968,27 +2183,27 @@ msgstr ""
"Subdisko startata defażlte\n"
" (por MS-DOS starto, ne por \"lilo\")\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Nivelo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Grandeco de pecoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Retrokonekta dosieronomo: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1996,7 +2211,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2004,65 +2219,60 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Grandeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrio: %s cilindroj, %s kapoj, %s sektoroj\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Informo: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-aj (Redundanca Aro de Malmultekostaj Diskoj) diskoj %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Subdiskotabelospeco: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ęe buso %d identiga¼o %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opcioj: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Speco de dosiersistemo: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ęi tiu pasvorto ests tro simpla (ųi devas esti almenaż %d signoj longa)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "La pasvortoj ne egalas"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2116,23 +2326,23 @@ msgstr "NIS Domajno"
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2149,59 +2359,59 @@ msgstr ""
msgid "server"
msgstr "servilo"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Surmetingoj devas komenci kun antaża /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jam estas subdisko kun surmetingo ęe %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ęi tiu dosierujo devus resti interne de la radika dosierosistemo (/)"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Vi bezonas veran dosiersistemon (ext2, reiserfs) por tiu surmetingo\n"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Mankas sufięan da libera spaco por disponigi novajn subdiskojn"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2210,259 +2420,263 @@ msgstr ""
"novajn dosiersistemojn. Bonvolu kontroli vian ekipa¼on por la każzo de ęi "
"tiu problemo."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Vi ne havas iujn ajn subdiskojn!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Malproksima printilo"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Genera"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memoro de Karto (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Formatas"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Žanųu subdiskspecon"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Ęesu"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Helpo"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Helpo"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Helpo/_Pri..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Muso"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Memoro de Karto (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Nuligu"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Muso"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Priskribo"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Ażtentikigado"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Elektu dosieron"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Prokura kluzaparato"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 butonoj"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Ęesu"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Helpo"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Helpo/_Pri..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Ażtomate esploru"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Vidu hardvaran informon"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Konfiguru muson"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Montru informon"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Konfiguru muson"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Duobla surmetingo %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Bonvole atendu"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekundoj"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Malproksima printilo"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Genera"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Ażtomate esploru"
+msgid "Card model :"
+msgstr "Memoro de Karto (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Žanųu subdiskspecon"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatas"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3484,7 +3698,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3492,7 +3706,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3512,26 +3726,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enžovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
@@ -3570,7 +3784,7 @@ msgstr ""
"\n"
"Ęu vi deziras dażri tamen?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vi devas havi interžanųan subdiskon"
@@ -3756,12 +3970,12 @@ msgstr ""
"Eraro okazis, sed mi ne scias kiel trakti ųin bone.\n"
"Dażri je via propra risko."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duobla surmetingo %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3773,12 +3987,12 @@ msgstr ""
"Kontrolu la KDROM sur instalata komputilo per\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -3788,7 +4002,7 @@ msgstr "Neniu disketilo havebla"
msgid "Entering step `%s'\n"
msgstr "Eniras pažon `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3800,80 +4014,80 @@ msgstr ""
"instaladon. Por ęi tio, premu `F1' kiam vi startas de KDROM, kaj sekve\n"
"tajpu `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Instalklaso"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
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:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Elektado de Paka¼aj Grupoj"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Elektado de individuaj paka¼oj"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tuta grandeco: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Malbona paka¼o"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nomo: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Grandeco: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Graveco: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Vi ne povas elekti ęi tiun paka¼on ęar ne estas sufięe da spaco por instali\n"
"ųin."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "La sekvaj paka¼oj estos instalataj"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "La sekvaj paka¼oj estos malinstalataj"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Vi ne povas elektu/malelektu ęi tiun paka¼on"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ęi tiu estas deviga paka¼o, vi ne povas malelekti ųin"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Vi ne povas malelekti ęi tiun paka¼on. Ųi estas jam instalita."
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3881,77 +4095,77 @@ msgstr ""
"Ęi tiu paka¼o devus esti promociata.\n"
"Ęu vi certas ke vi deziras malelekti ųin?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Vi ne povas malelekti ęi tiun paka¼on. Ųi devus esti promociata."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instalu"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Žargu/Konservu sur disketo"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Elektado de individuaj paka¼oj"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Eliru instalprogramon"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Elektu la paka¼ojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instalanta"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Taksas"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tempo restanta "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Preparas instaladon"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paka¼oj"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Instalanta paka¼o %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptu"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3967,17 +4181,17 @@ msgstr ""
"kiam vi finos.\n"
"Se vi ne havas ųin, klaku \"Nuligu\" por eviti la instaladon de ęi tiu KDROM."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Ęu vi deziras dażri tamen?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi paka¼ojn:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de paka¼oj:"
@@ -4151,108 +4365,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klavaro"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranųon."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Kiun instalklaso deziras vi?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instalu/Ųisdatigu"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Ęu tiu ęi estas instalado aż ųisdatigado?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Rekomendata"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Spertulo"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Ųisdatigu"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Elektado de individuaj paka¼oj"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Muspordo"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via muso konektata."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Konfiguras PCMCIA kartojn..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Konfiguras IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "neniuj haveblaj subdiskoj"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Elektu surmetingojn"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4269,7 +4483,7 @@ msgstr ""
"\n"
"Ęu vi konsentas perdi ęiujn subdiskojn?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4277,76 +4491,76 @@ msgstr ""
"DiskDrake malsukcesis ųuste legi la subdisktabelon.\n"
"Dażri je via propra risko!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Radikosubdisko"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Kiu estas la radikosubdisko (/) ęe via sistemo?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Vi bezonas restarti por la žanųoj al la subdisktabelo efektivigi"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Ęu kontrolas malbonajn blokojn?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formatas subdiskojn"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreas kaj formatas dosieron %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nesufięa interžanųospaco por plenumi instalado, bonvolu aldoni iom"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Seręas haveblajn paka¼ojn"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Seręas haveblajn paka¼ojn"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Trovadas paka¼ojn por promocii"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Vi ne povas malelekti ęi tiun paka¼on. Ųi estas jam instalita."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Trovadas paka¼ojn por promocii"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4354,56 +4568,56 @@ msgid ""
msgstr ""
"Via komputilo ne havas sufięe da spaco por instalado aż promocio (%d > %d)."
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Žargu de disketo"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Žargas de disketo"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Elektado de Paka¼oj"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Enžovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Konservu sur disketo"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4423,11 +4637,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4436,21 +4650,21 @@ msgstr ""
"Instalas paka¼o %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Enžovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Enžovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4517,7 +4731,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4529,180 +4743,189 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la paka¼ojn"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktu la spegulon por havigi la liston de havebla paka¼oj"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ęu via hardvara horloųo estas ųustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP Servilo"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ęu vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Forigu Vindozon"
+msgid "Windows Domain"
+msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ażtentikigado"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Ażtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Ażtentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS Servilo"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Ażtentikiga LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS Domajno"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP Servilo"
+msgid "Authentication Windows Domain"
+msgstr "Ażtentikiga LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domajna nomo"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4730,19 +4953,19 @@ msgstr ""
"Se vi deziras krei startdisketon por via sistemo, enžovu disketon en la\n"
"unua drajvo kaj klaku \"JES\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4766,7 +4989,7 @@ msgstr ""
"sistemaj paneoj. Ęu vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4775,28 +4998,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Bedażrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enžovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Preparas startžargilon"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4804,11 +5027,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Ęu vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4816,16 +5039,16 @@ msgstr ""
"Eraro dażre mi instalis \"aboot\",\n"
"Ęu mi devus provi perforte instali eę se tio detruas la unuan subdiskon?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-žargilon"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startžargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4836,24 +5059,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Enžovu malplenan disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Kreas ażtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4872,15 +5095,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Kreu ażtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4889,15 +5112,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Ażtomata"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj paka¼oj"
@@ -4925,402 +5148,465 @@ msgstr ""
msgid "Choose a file"
msgstr "Elektu agon"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Antaża"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Sekvanta ->"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Malbona elekta¼o, provu denove\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Via elekta¼o? (defażlo estas %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Via elekta¼o? (defażlo estas %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcioj: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Ęu vi deziras uzi aboot-on?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Via elekta¼o? (defażlo estas %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ęe¶a (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Germana"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak-a"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Hispana"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finna"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Franca"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norvega"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Pola"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusa"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Sveda"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Unuiųinta Regna klavaro"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Usona klavaro"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albana"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armena (malnova)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armena (skribmažina)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbajųana (latina)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "ebligu"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armena (fonetika)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgara"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazila (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estona"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarusa"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Svisa (germana aranųo)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Svisa (franca aranųo)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ęe¶a (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Germana (neniom da mortaj klavoj)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Dana"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-a (Norvega)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak-a (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estona"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Kartvela (\"Rusa\" aranųo)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Kartvela (\"Latina\" aranųo)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Greka"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hungara"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroata"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israela"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israela (fonetika)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Irana"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islanda"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Itala"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japana 106 klavoj"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korea klavaro"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latinamerika"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Loko"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Litova AZERTY-a (malnova)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Litova AZERTY-a (nova)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litova \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litova \"fonetika\" QWERTY-a"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Loko"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedona"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azerbajųana (cirila)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Nederlanda"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Pola (qwerty aranųo)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Pola (qwertz aranųo)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugala"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanada (Kebeka)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Rumana (qwertz-a)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Rumana (qwerty-a)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusa (Yawerty-a)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovaka (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovaka (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbajųana (cirila)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Tabelo"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Taja klavaro"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turka (tradicia \"F\" modelo)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turka (moderna \"Q\" modelo)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrajna"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Usona klavaro (internacia)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnama \"numero-vica\" QWERTY-a"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslava (latina/cirila)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5329,37 +5615,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefonnumero"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formatu subdiskojn"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5463,52 +5749,44 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finu"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Sekvanta ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Antaża"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ęu tio ęi pravas?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Informo"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Etendu Arbon"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Maletendu Arbon"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Žanųu inter ebena kaj ordigita je grupoj"
@@ -5532,6 +5810,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "uzu dhcp"
@@ -5560,7 +5842,7 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanęu la\n"
"aparatokonfigurilon."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Elektu la retan interfacon"
@@ -5574,7 +5856,7 @@ msgstr ""
msgid "no network card found"
msgstr "neniu retkarto trovita"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -5590,7 +5872,7 @@ msgstr ""
"Via požtejo devus esti plene specifita požtejo,\n"
"ekzemple ``miakomputilo.mialaborejo.miafirmao.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Požtejo"
@@ -5620,7 +5902,7 @@ msgstr "Kia estas via ISDN-a konekta¼o?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5748,43 +6030,43 @@ msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
msgid "Dialup options"
msgstr "Telefon-konektaj opcioj"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nomo de konekto"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefonnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Salutnomo"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP (Pasvorta Ażtentikigada Protokolo)"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Programeto-bazata"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Finaparato-bazata"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domajna nomo"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Unu DNS-a Servilo (nedeviga)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
@@ -5882,13 +6164,13 @@ msgstr "Elektu la defażltan uzulon:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Spertuloreųimo"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
@@ -5997,7 +6279,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
#, fuzzy
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -6010,7 +6292,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de ęi tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi žanųos ęi tiun konfiguron."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6020,43 +6302,43 @@ msgstr ""
"Ęiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Ażtomata IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Kreu pražargdisketon"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6068,40 +6350,40 @@ 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:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Prokura servilo devus esti ftp://..."
@@ -6113,7 +6395,7 @@ msgstr "Interreta Konfigurado"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ęu vi deziras provi konekti al la interreto nun?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
#, fuzzy
msgid "Testing your connection..."
msgstr "Konfiguru interretan konekta¼on"
@@ -6142,43 +6424,43 @@ msgstr "Konfigurado de Konekto"
msgid "Please fill or check the field below"
msgstr "Bonvole plenigu aż marku la suban kampon"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ de Karto"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Memoro de Karto (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "I/O (Eneligo) de Karto"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "I/O 0 (Eneligo 0) de Karto"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "I/O 1 (Eneligo 1) de Karto"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Via persona telefonnumero"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Nomo de interretprovizanto (ekz-e provizanto.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Telefonnumero de interretprovizanto"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Provizanto DNS 1 (nedeviga)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Provizanto DNS 2 (nedeviga)"
@@ -6187,30 +6469,30 @@ msgstr "Provizanto DNS 2 (nedeviga)"
msgid "Choose your country"
msgstr "Elektu vian klavaron"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Diskuma modalo"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Speco de konekto"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Konta Salutnomo (uzula nomo)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Konta Pasvorto"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6246,7 +6528,7 @@ msgstr "Malbona rezerva dosiero"
msgid "Error writing to file %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6289,7 +6571,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6318,7 +6600,7 @@ msgstr "Malproksima printilo"
msgid "Printer on remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Malproksimaj lpd servilo"
@@ -6337,7 +6619,7 @@ msgstr "SMB/Vindozo 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Printservilo"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printila Aparato URI"
@@ -6346,112 +6628,112 @@ msgstr "Printila Aparato URI"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Loka printilo"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Malproksima printilo"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Eraro skribante al dosiero %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulo %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP de SMB servilo"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Defażlta)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Kiel estas la printilo konektata?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6462,17 +6744,21 @@ msgstr ""
"ęi tie; printiloj estos ażtomate dektektataj. Se vi havas dubojn,\n"
"elektu \"Malproksima CUPS servilo\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfigura¼o"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6483,7 +6769,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6493,36 +6779,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
#, fuzzy
msgid "CUPS server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Pordo"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Post-instala konfigurado"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6535,37 +6821,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Loka printilo"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Loka printilo"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6579,53 +6896,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Malproksima printilo"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Provu pordojn"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Vindozo 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Duobla surmetingo %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Reta Printilo (TCP/ingo)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Vindozo 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6633,43 +6947,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6677,7 +6982,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6685,83 +6990,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalanta paka¼o %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Instalanta paka¼o %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Instalanta paka¼o %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Legas datumbason de CUPS peliloj..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Malproksimaj lpd Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6771,31 +7031,51 @@ msgstr ""
"printservilo kaj la printviconomon ęe tiu servilo en kiun taskoj devus\n"
"esti metata."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Malproksima požtejo"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Malproksima požtejo"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Malproksima požtejo"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Duobla surmetingo %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Startas vian konekta¼on..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Haltas de la reto"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Vindozo 9x/NT) Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6810,35 +7090,46 @@ msgstr ""
"aldone al la opuzan nomon de la printilo vi deziras atingi kaj iun ajn\n"
"tażgan salutnomon, pasvorton, kaj laborgrupan informon."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Požtejo de SMB servilo"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP de SMB servilo"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Opuza nomo"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Laborgrupo"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Malproksima printilo"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6862,7 +7153,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6871,7 +7162,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6879,11 +7170,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6896,88 +7187,109 @@ msgstr ""
"printvican nomon por la printilo vi deziras atingi kaj iun ajn tażgan\n"
"salutnomon kaj pasvorton."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Printservilo"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Printvica Nomo"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Ing-Printilaj Opcioj"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Por printi al inga printilo, vi bezonas provizi la\n"
"požtejon de la printilo kaj opcie la pordnumeron."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Printilaj Požtejo"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Printilaj Požtejo"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Printila Aparato URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nomo de printilo"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Loko"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Legas datumbason de CUPS peliloj..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6992,28 +7304,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Ęu tio ęi pravas?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kiun specon de printilo vi havas?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7022,18 +7334,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7043,12 +7355,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7056,7 +7368,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7069,7 +7381,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7079,34 +7391,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ęu vi deziras provi printado?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Provu pordojn"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7114,45 +7426,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Jes, printu ambaż de la provpaųojn"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Lażnorma"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Printas provpaųo(j)n..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Printas provpaųo(j)n..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Printas provpaųo(j)n..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Printas provpaųo(j)n..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7168,7 +7480,7 @@ msgstr ""
"\n"
"Ęu ųi ųuste funkcias?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7178,16 +7490,16 @@ msgstr ""
"Ęi tiu eble postulas iom da tempo antaż ol la printilo komencas.\n"
"Ęu ųi ųuste funkcias?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7196,15 +7508,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7213,7 +7525,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7221,41 +7533,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7265,7 +7577,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7274,46 +7586,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Haltas de la reto"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Malfermu"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7322,9 +7634,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7335,19 +7647,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7357,51 +7669,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7409,61 +7721,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Neniu printilo"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Startas vian konekta¼on..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7471,12 +7783,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfiguras reto"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7486,34 +7798,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Alta"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranoja"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7528,12 +7840,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7547,70 +7859,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Elektu Printilan Konekton"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kiun printsistemo vi deziras uzi?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalanta paka¼o %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Printilaj opcioj"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfiguru Printilon"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ęu vi deziras konfiguri printilon?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Printilo"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7621,7 +7933,7 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aż žanųi la ekzistantajn."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7631,141 +7943,137 @@ msgstr ""
"Jen la sekvantaj printvicoj.\n"
"Vi povas aldoni pli aż žanųi la ekzistantajn."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Konfiguru retumon"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normala Modalo"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Ęesu"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ęu vi deziras provi la konfigura¼on?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interreta Konfigurado"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ęu vi deziras provi la konfigura¼on?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Disdividado de Interreta Konekto"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printilan Konekton"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Printas provpaųo(j)n..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ęu vi deziras provi la konfigura¼on?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Malproksima printilo"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Loka printilo"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ęu vi deziras provi la konfigura¼on?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Legas datumbason de CUPS peliloj..."
@@ -7815,8 +8123,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Prokura servilo devus esti ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Prokura servilo devus esti http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -7865,42 +8173,6 @@ msgstr "mkraid malsukcesis (eble raidtools mankas)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufięaj subdiskoj por RAID nivelo %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"vi devus uzi ęi tiun nivelon zorge. Ųi faras vian komputilon pli facila\n"
-"por uzi, sed delikatega: vi devus neniam uzi ųi surrete.\n"
-"Ųi ne havas pasvortojn."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Kun ęi tiu sekurnivelo, uzado de ęi tiu komputilo kiel servilo ebliųas.\n"
-"La sekureco nun estas sufięe alta por uzi la sistemon kiel servilo kiu\n"
-"akceptas konektojn de multaj klientoj."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfigura¼o"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opcioj"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8196,7 +8468,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8321,7 +8593,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Konekti al la interreto"
@@ -8420,22 +8692,22 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Instalanta paka¼o %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Bonvole adiażu kaj sekve uzu Kontrol-Alt-Retropažo (Ctrl-Alt-Backspace)."
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la žanųojn."
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8443,175 +8715,175 @@ msgstr ""
"Mi ne povas legi vian subdisktabelon, ųi estas tro difektita por mi :(\n"
"Mi penos dażri per blankigi difektitajn subdiskojn"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Datumbazoj"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Datumbazoj"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS Servilo"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS Servilo"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Aldonu uzanto"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Helpo"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Ne konektita"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Forigu"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Elektu dosieron"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Aldonu uzanto"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguru"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Enžovu disketon en drajvo %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neniu disketilo havebla"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Eraro"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8626,23 +8898,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Kreas ażtoinstalan disketon"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8650,40 +8922,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Gratulojn!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Instalu"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Aldonu uzulon"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Formatas retrokonektan dosieron %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "Dosierlokigtabelo (FAT)"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8691,7 +8976,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8699,34 +8984,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Provu pordojn"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Malbona rezerva dosiero"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8734,737 +9083,800 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Eraro legante dosiero %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Paka¼oj"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Bonvole, elektu vian klavaran aranųon."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Bonvolu klaki sur subdiskon"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Bonvolu klaki sur subdiskon"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
+msgid "Please check if you are using a DVDR device"
+msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Bonvolu klaki sur subdiskon"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Elektu dosieron"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Musaparato: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restażru de disketo"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Restażru de dosiero"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Restażru de dosiero"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Antaża"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Restażru de dosiero"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Sekvanta ->"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "La sekvaj paka¼oj estos instalataj"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Bonvole, provu la muson"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfigura¼o"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9475,7 +9887,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9496,7 +9908,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9505,7 +9917,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9529,7 +9941,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9546,21 +9958,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9574,17 +9986,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9601,7 +10013,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9641,7 +10053,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9652,7 +10064,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9665,7 +10077,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9704,94 +10116,121 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalado de %s malsukcesis. La sekvanta eraro okazis:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr ""
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Konekti al la interreto"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "Spertulo"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Muso"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Malproksima printilo"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Opuza nomo"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printilo"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "ISDN-a Konfigura¼on"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Ażtentikigado"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Elektado de Paka¼oj"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Bonvole atendu"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9803,320 +10242,320 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Eliru instalprogramon"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "porto"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Eliru instalprogramon"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaż la instalado"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
msgstr "ISDN-a Konfigura¼on"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
#, fuzzy
msgid "Profile: "
msgstr "muntado malsukcesis: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Požtejo: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
#, fuzzy
msgid "Internet access"
msgstr "Interreto"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Speco:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Kluzo:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
#, fuzzy
msgid "Interface:"
msgstr "Interreto"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Stato:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
#, fuzzy
msgid "Configure Internet Access..."
msgstr "Konfiguru servojn"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Pelilo"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfaco"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokolo"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Stato:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
#, fuzzy
msgid "Configure Local Area Network..."
msgstr "Konfiguru lokan reton"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Soręisto..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Apliku"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Provu konfigura¼on"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektita"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Ne konektita"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Konektu..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Malkonektu..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN Konfigura¼o"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adaptilo %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Aktiva"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Aktiva"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
#, fuzzy
msgid "Internet connection configuration"
msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
#, fuzzy
msgid "Internet Connection Configuration"
msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Speco de konekto"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Kluzo"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "uzado: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-3,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulonomo"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Grandeco"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "Startdiskokreado"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "defażlta"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Eraro DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Kerna versio"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Ųenerala"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Spertulejo"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opciaj argumentoj"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Aldonu modulon"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "devigu"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "se bezonata"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "forlasu SCSI-ajn modulojn"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "forlasu RAID-ajn modulojn"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Forprenu modulon"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Skribu"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Konstruu la diskon"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10125,12 +10564,12 @@ msgstr ""
"Ne estas medio en aparato %s.\n"
"Bonvole enžovu ųin."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne povis forki: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10141,104 +10580,104 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "neniu retkarto trovita"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Finata"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparas instaladon"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "limigu"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10247,120 +10686,125 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatu subdiskojn"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfigura¼o"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Surmetingo"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elektu la subdiskoj kiuj vi deziras formati"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Oficejo"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Ęesigu"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Printilo"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Instalu sistemon"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Elektu dosieron"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Malproksima printilo"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Instalu"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -10370,33 +10814,33 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "malebligu"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "forsendu"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "rekonfiguru"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
#, fuzzy
msgid "Disabling servers..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Disdividado de Interreta Konekto nuntempe malkapabligata"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -10406,20 +10850,20 @@ msgid ""
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "ebligu"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10435,21 +10879,21 @@ msgstr ""
"\n"
"Ęu vi deziras konfiguri Disdividadon de Interreta Konekto?\n"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interfaco %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Via komputilo ne havas retadaptilon!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10457,11 +10901,11 @@ msgstr ""
"Mi ne detektas eterretan retadaptilom sur via sistemo. Bonvole lanęu la\n"
"aparatokonfigurilon."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Reta interfaco"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10476,19 +10920,19 @@ msgstr ""
"\n"
"Ęu vi deziras konfiguri vian Lokan Reton (LAN) kun ęi tiu adaptilo?"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Bonvole elektu kiun retadaptilon estos konektata al via Loka Reto (LAN)."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Ekrano ne estas konfigurata"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10498,17 +10942,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Post-instala konfigurado"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10519,7 +10963,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10531,33 +10975,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP de SMB servilo"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ebla konflikto pri Loka-Reta adreso trovata en nuna konfiguro de %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Konfigura¼o de barilo detektata!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10565,50 +11009,50 @@ msgstr ""
"Averto. Ekzistanta konfigura¼o de barilo detektata. Vi eble devas permane\n"
"fiksi ųin poste de la instalado."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Mi konfiguras komandodosierojn, instalas programojn, startas servilojn..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problemoj instalante paka¼on %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La konfigurado de la disdividado de la Interreta konekto jam estas farita.\n"
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Disdividado de Interreta Konekto nuntempe kapabligata"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interreta konekta¼o kaj konfiguro"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10618,21 +11062,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Konekti al la interreto"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Elektu la ilon kiun vi deziras instali"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10641,108 +11077,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Kebeka)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Eżropo"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Franca"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Islanda"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Eżropo"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "seria"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Estis eraro dum instalado de paka¼oj:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10766,11 +11206,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Bonvole, elektu vian klavaran aranųon."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
@@ -10799,7 +11239,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -10911,148 +11351,149 @@ msgstr "Kalendaro"
msgid "Content of the file"
msgstr "Enhavoj de la dosiero"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "bonvole atendu, mi vortanalizas la dosieron: %s"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Konfigura¼on"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domajna nomo"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS Servilo"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Datumbazoj"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS Servilo"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS Servilo"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Servilo"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Printservilo"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "Servilo"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Formatas"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Interreta Konfigurado"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Bonvole provu denove"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Savu Kiel..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "neniu serial_usb (seria USB) trovita\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Ęu vi deziras emuli trian musbutonon?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Detektas aparatojn..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Provu pordojn"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Elektu grafikan karton"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Starta aparato"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11060,7 +11501,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11080,15 +11521,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Konfigura¼o de barilo"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Konfigura¼o de barilo"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11096,7 +11537,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11288,56 +11729,60 @@ msgstr ""
msgid "Can't open %s for writing: %s\n"
msgstr "Ne povis malfermi %s por skribi: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Konfigura¼o de barilo"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Preparas instaladon"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "TTT/FTP"
@@ -11386,6 +11831,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
@@ -11478,10 +11927,6 @@ msgid "Office Workstation"
msgstr "Laborstacio"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servilo"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
@@ -11544,6 +11989,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Interreto"
@@ -11577,6 +12026,106 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "vi devus uzi ęi tiun nivelon zorge. Ųi faras vian komputilon pli facila\n"
+#~ "por uzi, sed delikatega: vi devus neniam uzi ųi surrete.\n"
+#~ "Ųi ne havas pasvortojn."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Kun ęi tiu sekurnivelo, uzado de ęi tiu komputilo kiel servilo ebliųas.\n"
+#~ "La sekureco nun estas sufięe alta por uzi la sistemon kiel servilo kiu\n"
+#~ "akceptas konektojn de multaj klientoj."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opcioj"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Elektas sekurnivelon"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Bonvole, elektu vian klavaran aranųon."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Bonvole, provu la muson"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Prokura servilo devus esti ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Bonvole, elektu la paka¼ojn kiujn vi deziras instali."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Forigu Vindozon"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tabelo"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP Servilo"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Malproksima printilo"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Instalanta paka¼o %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Instalanta paka¼o %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Instalanta paka¼o %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Legas datumbason de CUPS peliloj..."
+
+#, fuzzy
+#~ msgid "Control Center"
+#~ msgstr "Konekti al la interreto"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Elektu la ilon kiun vi deziras instali"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "neniu serial_usb (seria USB) trovita\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Elektu opciojn por servilo"
@@ -11641,9 +12190,6 @@ msgstr "Laborstacio"
#~ msgid "Setting security level"
#~ msgstr "Elektas sekurnivelon"
-#~ msgid "Graphics card"
-#~ msgstr "Grafika karto"
-
#~ msgid "Select a graphics card"
#~ msgstr "Elektu grafikan karton"
@@ -11731,6 +12277,3 @@ msgstr "Laborstacio"
#~ msgid "Percentage of packages to install"
#~ msgstr "Procento da paka¼oj por instali"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Elektu sekurnivelon?"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 04456509a..fbb11c1eb 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -58,11 +58,11 @@ msgid "X server"
msgstr "X server"
#
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Mitme monitori seadistamine"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,44 +70,44 @@ msgstr ""
"Süsteemis on võimalik kasutada mitut monitori.\n"
"Mida Te soovite teha?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Valige graafikamälu suurus"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree sätted"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Millise XFree konfiguratsiooni soovite kasutada?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Seadista kõik monitorid sõltumatult"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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 võib omada paremat 2D tuge."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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 VÕIB OLLA EBASTABIILNE.\n"
"Teie kaarti toetab ka XFree %s, millel on ehk parem 2D tugi."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -146,11 +146,57 @@ msgstr ""
"Teie videokaardi 3D graafikakiirendit saab kasutada koos XFree %s-ga.\n"
"SEE ON AGA EKSPERIMENTAALNE JA VÕIB OLLA EBASTABIILNE."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Isetehtud"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Graafikakaart"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Kuvatihedus"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Välju"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -163,32 +209,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Valige monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Isetehtud"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Tavaline"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Tagasi"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -208,11 +250,11 @@ msgstr ""
"suurem kui Teie monitor võimaldab. Vastasel juhul võib Teie monitor hävida.\n"
"Kui kahtlete, valige pigem väiksem väärtus."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Realaotussagedus"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Ekraaniuuendussagedus"
@@ -236,57 +278,42 @@ msgstr "16 miljonit värvi (24 bitti)"
msgid "4 billion colors (32 bits)"
msgstr "4 miljardit värvi (32 bitti)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Kuvatihedused"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Kuvatihedus"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Valige kuvatihedus ja värvisügavus"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Katkesta"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Kas soovite seadistusi proovida?"
@@ -295,71 +322,71 @@ msgstr "Kas soovite seadistusi proovida?"
msgid "Test of the configuration"
msgstr "Proovime seadistusi"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatuuriasetus: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiire tüüp: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiire port: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Realaotussagedus: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Ekraanisagedus: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Graafikakaart: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Videomälu: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Värvisügavus: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Kuvatihedus: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X stardib nüüd"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -368,165 +395,182 @@ msgstr ""
"Teie arvutis on võimalik käivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Millist ISDN ühendust kasutate?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Partitsiooni algusesse"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO installimine"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub installimine"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO tekstiresiimis"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO graafikaresiimis"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laadimine DOS/Windowsist (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Alglaaduri peasätted"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei tööta vanema BIOSi korral)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktne"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Graafikamood"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasõna"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Salasõna (uuesti)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Piira käsurea suvandeid"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "piiratud"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Puhasta /tmp igal laadimisel"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Kui vaja, täpsusta RAM suurust (leitud %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Võimalda mitut profiili"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Anna mälu suurus megabaitides"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Säte ``Piira käsurea suvandeid'' on ilma salasõnata mittekasutatav"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Salasõnad ei klapi"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -535,7 +579,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -543,156 +587,157 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tõsta?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Tähis"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Vaikimisi"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd suurus"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Eemalda kirje"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Tühi kirjetähis ei ole lubatud"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Teil peab olema saaleala"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Selline tähis on juba kasutusel"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mõni %s liides?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -703,17 +748,17 @@ msgstr ""
"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
"Näiteks: \"io=0x300 irq=7\""
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Mooduli parameetrid:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -729,15 +774,15 @@ msgstr ""
"määratleda või lasta juhtprogrammil ise Teie arvutit kompida? Võib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Määrake parameetrid"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -746,54 +791,54 @@ msgstr ""
"Moodule %s laadimine ei õnnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Salasõna on liiga lihtne"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Kasutajatunnus tohib sisaldada ainult väikesi tähti, numbreid, - ja _"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -802,32 +847,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Kasutaja õige"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -836,57 +881,57 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 pärast installimist"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kõik"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -895,42 +940,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Kõrge"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Kõrge"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -940,14 +985,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasõnad on nüüd kasutusel, kuid võrku ühendamine ei ole siiski soovitav."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -955,13 +1000,13 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -972,7 +1017,7 @@ msgid ""
"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -981,32 +1026,49 @@ msgstr ""
"Süsteem on täielikult suletud. Võrgust kasutamine on võimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Eelistused"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Valige turvatase"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1031,111 +1093,207 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
#. -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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "selle kohta (veel) abi ei saa.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fail"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fail/_Välju"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle kategoriseeritud jälgimine"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle jälgimine"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tavaline jälgimine"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Traditsiooniline Gtk+ jälgimine"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Käivita alglaadimisel Aurora"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Valimisviis"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Alglaadimismood"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Süsteemi installimine"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Viga"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree86 %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "pintsaklips"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Valige paigaldusmeetod"
+
+#: ../../bootlook.pm_.c:258
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1147,43 +1305,71 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Seadista"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Salvest paketivalik"
+
+#: ../../bootlook.pm_.c:270
+#, fuzzy
+msgid "Themes"
+msgstr "Puu"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Töömood"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ei taha automaatselt siseneda"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei saa lugeda faili /etc/inittab: %s"
@@ -1228,67 +1414,117 @@ msgstr "Partitsioone ei saa enam lisada"
msgid "Screenshots will be available after install in %s"
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prantsusmaa"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgia"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Saksa"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Kreeka"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norra"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Vaata"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Itaalia"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "seerial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Uus"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Palun testige hiirt"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "Vahendaja peab olema kujul http://..."
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Ühenduspunkt:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Eelistused: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Palun tehke oma andmetest enne tagavarakoopia"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lugege hoolega!"
@@ -1301,15 +1537,6 @@ msgstr ""
"Kui soovite kasutada aboot-i, jätke palun ketta algusesse vähemalt 2048 \n"
"sektorit vaba ruumi"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Viga"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Abimees"
@@ -1335,7 +1562,7 @@ msgid "Please click on a partition"
msgstr "Palun valige partitsioon"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Üksikasjad"
@@ -1364,13 +1591,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Saaleala"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Tühi"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Muu"
@@ -1378,12 +1605,12 @@ msgstr "Muu"
msgid "Filesystem types:"
msgstr "Failisüsteemi tüübid: "
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Tekita"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tüüp"
@@ -1393,7 +1620,7 @@ msgstr "Tüüp"
msgid "Use ``%s'' instead"
msgstr "Kasutage pigem ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Kustuta"
@@ -1401,83 +1628,83 @@ msgstr "Kustuta"
msgid "Use ``Unmount'' first"
msgstr "Kasutage enne \"Ühenda lahti\""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s tüübi muutmisel hävivad kõik seal olnud andmed"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Valige tegevus"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Tavakasutaja > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ekspert > Tavakasutaja"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Tagasi"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Jätkate ikkagi?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Lõpeta ilma salvestamata"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Lõpetate ilma partitsioonitabelit salvestamata?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Paiguta ise"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Kustuta kõik"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Veel.."
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Kõik primaarsed partitsioonid on kasutusel"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Partitsioone ei saa enam lisada"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1485,35 +1712,35 @@ msgstr ""
"Et saada rohkem partitsioone, kustutage palun üks, et luua laiendatud "
"partitsioon"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Kirjuta partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Päästa partitsioonitabel"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "CD/flopi/.. autoühendamine"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Valige fail"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1521,11 +1748,11 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Hoiatus"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1533,131 +1760,114 @@ msgstr ""
"Pange tühi flopi masinasse\n"
"Kõik andmed sellel hävivad"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Proovin päästa partitsioonitabelit"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Meili informatsioon"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Ühenduspunkt"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Eelistused"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Muuda suurust"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Liiguta"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Vorminda"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ühenda"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Lisa RAIDi"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Lisa LVMi"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ühenda lahti"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Eemalda RAIDist"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Eemalda LVMist"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modifitseeri RAIDi"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Kasuta loopback-ina"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Looge uus partitsioon"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Algsektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Ühenduspunkt:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Eelistus: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Muuda partitsiooni tüüp"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Mis failisüsteemi soovite kasutada?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kuhu soovite loopback-faili %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kuhu soovite seadme %s ühendada?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1665,133 +1875,138 @@ msgstr ""
"Seda ühenduspunkti ei saa eemaldada, kuna partitsioon on kasutusel.\n"
"loopback-ina. Eemaldage enne loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Kuhu soovite seadme %s ühendada?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Arvutan FAT failisüsteemi piire"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muudan suurust"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "See partitsioon ei ole muudetav"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Selle partitsiooni andmetest võiks olla tagavarakoopia"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s suuruse muutmisel hävivad sellel kõik andmed"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Valige uus suurus"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Suurus (MB): "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Millisele kettale soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Millisele sektorile soovite seda ümber paigutada?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Paigutan ümber"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Liigutan partitsiooni..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Vali olemasolev RAID, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "uus"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Vali olemasolev LVM, millele lisada"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM nimi?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Seda partitsiooni ei saa loopback-ina kasutada"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "loopback faili nimi:"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Pärisnimi"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "See fail on juba loopback-ina kasutusel, valige mõni muu"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Fail on juba olemas. Kas kasutan seda?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Mooduli parameetrid:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "seade"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "tase"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ühiku suurus"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Vaadake ette: see võib olla ohtlik."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Mis tüüpi partitsioonid teete?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Valige paketid mida soovite installida"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1803,7 +2018,7 @@ msgstr ""
"Kui kasutate LILO-t, ei tööta see sel moel, kui aga ei kasuta, ei ole Teile "
"ka /boot vajalik"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1814,7 +2029,7 @@ msgstr ""
"füüsiliselt tagapool 1024-t silindrit ja Teil ei ole /boot partitsiooni.\n"
"Kui plaanite kasutada LILO alglaadurit, lisage kindlasti /boot partitsioon"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1824,137 +2039,137 @@ msgstr ""
"Ilma /boot partitsioonita ei ole võimalik sellist süsteemi laadida.\n"
"Lisage kindlasti /boot partitsioon!"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ketta %s partitsioonitabel salvestatakse!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Muudatuste jõustamiseks vajate alglaadimist"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Partitsiooni %s vormindamisel hävivad sellel kõik andmed"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Vormindan"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Vormindan loopback faili %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Vormindan partitsiooni %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid ebaõnnestus"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Ei ole piisavalt ruumi uute partitsioonide jaoks"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Kuvatihedus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Seade: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kettatähis: %s (arvatavasti)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Algus: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Suurus: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorit"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindrid %d kuni %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Vormindatud\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Vormindamata\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Ühendatud\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "loopback fail(id): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1962,27 +2177,27 @@ msgstr ""
"Partitsioonilt toimub alglaadimine\n"
" (MS-DOS-i, mitte lilo jaoks)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Tase %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ühiku suurus %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "loopback faili nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1994,7 +2209,7 @@ msgstr ""
"juhtpartitsiooniga, parem oleks\n"
"seda mitte puutuda.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2007,64 +2222,59 @@ msgstr ""
"võimaldab mitme operratsioonisüsteemi\n"
"laadimist.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Suurus: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geomeetria: %s silindrit, %s pead, %s sektorit\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-kettad %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitsioonitabeli tüüp: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "siinil %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Eelistused: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Failisüsteemi tüüp: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Salasõna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Salasõnad ei klapi"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2118,23 +2328,23 @@ msgstr "NIS domeen"
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaõnnestus"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ei oska seadet %s vormindada tüüpi %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2151,60 +2361,60 @@ msgstr ""
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS ei ole kasutatav alla 16MB partisioonidel"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS ei ole kasutatav alla 32MB partisioonidel"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Ühenduspunktid peavad algama kaldkriipsuga (/)"
# c-format
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ühenduspunktile %s on juba üks partitsioon määratud\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "See kataloog peab jääma kokku juurfailisüsteemiga"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "See ühenduspunkt vajab tõelist (ext2, reiserfs) failisüsteemi\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Te ei saa ühenduspunkti %s jaoks LVM loogilist ketast kasutada"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Ei ole piisavalt ruumi automaatpaigutuseks"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaõnnestus: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2212,259 +2422,263 @@ msgstr ""
"Tekkis viga: failisüsteemi loomiseks ei leitud ühtki seadet. Palun\n"
"kontrollige oma riistvara."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Teil ei ole ühtki partitsiooni!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Kasuta automaattuvastust"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Tavaline"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kaardi mälu (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "vormindatakse"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Muuda partitsiooni tüüp"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Välju"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Abi"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Abi"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Abi/_Misvärk"
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Hiir"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kaardi mälu (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Katkesta"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Hiir"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Kirjeldus"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autentimisviis"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Valige fail"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Lüüsipoolne seade"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 nuppu"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Välju"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Abi"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Abi/_Misvärk"
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Proovida niisama"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kõvaketta leidmine"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Info riistvara kohta"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiire seadmine"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Näita lisainfot"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Hiire seadmine"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "leiti port %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Palun oodake"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekundit"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Kasuta automaattuvastust"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Tavaline"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Proovida niisama"
+msgid "Card model :"
+msgstr "Kaardi mälu (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuda partitsiooni tüüp"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "vormindatakse"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3827,7 +4041,7 @@ msgstr ""
"\n"
"Katkestamiseks valige \"Katkesta\"."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3835,7 +4049,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3855,20 +4069,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita võimatu"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3876,7 +4090,7 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
@@ -3914,7 +4128,7 @@ msgstr ""
"\n"
"Jätkate ikkagi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Teil peab olema saaleala"
@@ -4090,12 +4304,12 @@ msgstr ""
"Tekkis mingi viga, aga seda ei suuda programm ise klaarida.\n"
"Jätkake omal vastutusel."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Ühenduspunkt %s on määratud topelt"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4106,12 +4320,12 @@ msgstr ""
"Teie CD-lugeja või CD on ilmselt vigane.\n"
"Paketifaile CD-l saate kontrollida käsuga \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -4121,7 +4335,7 @@ msgstr "Flopiseade ei ole kättesaadav"
msgid "Entering step `%s'\n"
msgstr "Järgmine samm: '%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4132,78 +4346,78 @@ msgstr ""
"Kui nii juhtub, proovige palun tekstipõhjalist paigaldust. Selleks \n"
"vajutaga laadimisel F1 ja sisestage 'text'"
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Installi klass"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Palun valige üks järgnevatest paigaldusklassidest"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Valik paketthaaval"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Suurus kokku: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Vigane pakett"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versioon: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Suurus: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Tähtsus: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Seda paketti ei saa valida, kettaruumi ei ole paigalsuseks piisavalt"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Eemaldamiseks on valitud järgmised paketid"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Seda paketti ei saa (mitte) valida"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "See pakett on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "See pakett on juba installitud"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4211,77 +4425,77 @@ msgstr ""
"Selle paketi peaks uuendame\n"
"Olete kindel, et Te ei vali seda?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Selle paketi peate valima, sest selle uuendamine on kohustuslik"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Näita automaatselt valitud pakette"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installimine"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Salvest paketivalik"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Eemaldamine"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Installin"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Oletan"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Aega jäänud "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paketti"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Paketi %s installimine"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Nõus"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4295,17 +4509,17 @@ msgstr ""
"Palun sisestage CD pealdisega \"%s\" lugejasse ja vajutage <OK>.\n"
"Kui teil säherdust ei ole, vajutage <Katkesta>"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4626,108 +4840,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatuur"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Võimalike klaviatuuride täielik nimekiri"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Millist installi klassi Te soovite"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installimine/Uuendus"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "On see installimine või taastamine?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Soovituslik"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Uuendus"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Salvest paketivalik"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Hiire port"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Nuppude teesklemine"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Teeskle 2 hiirenupp"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Teeskle 3 hiirenuppu"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kaartide seadmine..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE seadistamine"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ei leia partitsioone"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Otsin partitsioonidelt ühenduspunkte"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Valige ühenduspunktid"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4743,7 +4957,7 @@ msgstr ""
"(Viga oli selline: %s)\n"
"Kas olete nõus partitsioonide kaotamisega?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4751,137 +4965,137 @@ msgstr ""
"DiskDrake ei saanud partitsioonitabeli lugemisega hakkama.\n"
"Jätkate omal vastutusel!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Juurpartitsiooni ei leitud"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Juurpartitsioon"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Millisel partitsioonil hoiate juurkataloogi (/)?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Partitsioonitabeli säilitamiseks vajate alglaadimist"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Blokkide kontroll?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Vormindan partitsioone"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Loon ja vormindan faili %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Saaleala on installimiseks liiga väike, palun lisage"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Otsin kättesaadavaid pakette"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Otsin uuendatavaid pakette"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "See pakett on juba installitud"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Otsin uuendatavaid pakette"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Teie kõvakettal ei ole piisavalt vaba ruumi (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Taasta flopilt"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Salvesta flopile"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4900,11 +5114,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4913,21 +5127,21 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4995,7 +5209,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5007,185 +5221,195 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, 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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvõte"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Eemalda Windows(TM)"
+msgid "Windows Domain"
+msgstr "Gnome tööjaam"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasõna"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Salasõna puudub"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Salasõna on liiga lihtne (peaks olema vähemalt %d tähemärki)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS server:"
#: ../../install_steps_interactive.pm_.c:1138
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "Authentication Windows PDC"
+msgid "Authentication Windows Domain"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1139
+#: ../../install_steps_interactive.pm_.c:1142
#, fuzzy
-msgid "Windows Domain"
-msgstr "Gnome tööjaam"
+msgid "Domain Admin User Name"
+msgstr "Domeeninimi"
-#: ../../install_steps_interactive.pm_.c:1140
+#: ../../install_steps_interactive.pm_.c:1143
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS server:"
-
-#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
-msgstr ""
+msgid "Domain Admin Password"
+msgstr "Salasõna uuesti"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5213,19 +5437,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5249,7 +5473,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5258,28 +5482,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5287,11 +5511,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5299,16 +5523,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaõnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5325,17 +5549,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Pange palun tühi flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5345,7 +5569,7 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5377,15 +5601,15 @@ msgstr ""
"Abi süsteemi edasiseks konfigureerimiseks saab eelkõige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5398,15 +5622,15 @@ msgstr ""
"\n"
"Võite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5433,405 +5657,469 @@ msgstr ""
msgid "Choose a file"
msgstr "Valige tegevus"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Edasijõudnud"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Eelmine"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Tekst"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Halb valik, proovige palun uuesti\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Eelistused: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Teie valik? (vaikimisi %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "TØehhi (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "DVORAK"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Hispaania"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Soome"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Prantsuse"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norra"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Poola"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Vene"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Rootsi"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Briti"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armeenia (vanem)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armeenia (trükimasin)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Aserbaidžaani (ladina)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "luba"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeenia (foneetiline)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaaria"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiilia (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Eesti"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Valgevene"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Šveitsi (Saksa asetus)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Šveitsi (Prantsuse asetus)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tšehhi (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Saksa (ilma sammuta)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Taani"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "DVORAK (Norra)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "DVORAK (US)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruusia (vene)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruusia (ladina)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Kreeka"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungari"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroaadi"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Iisraeli"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Iisraeli foneetiline"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iraani"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Itaalia"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Jaapani 106 klahviga"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korea"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Ladina-Ameerika"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Asukoht"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Leedu AZERTY (vanem)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Leedu AZERTY (uuem)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Leedu numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Leedu foneetiline QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Asukoht"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedoonia"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Aserbaidžaani (kirillitsa)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollandi"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Poola (QWERTY)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Poola (QWERTZ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Vene (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Sloveenia"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovaki (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovaki (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Aserbaidžaani (kirillitsa)"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:269
#, fuzzy
-msgid "Tamil"
-msgstr "Tabel"
+msgid "Tamil (Unicode)"
+msgstr "i18n (kena)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Tai"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Türgi (\"F\" mudel)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Türgi (\"Q\" mudel)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US (rahvusvaheline)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnami numbrireaga QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavia (koos kirillitsaga)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5840,37 +6128,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ringühendus %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarühmad (logical volumes)\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Vormindamine"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5973,51 +6261,43 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Lõpeta"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Järgmine ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Eelmine"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Kas see on sobiv?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Ava puu"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Sule puu"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud või sorteerimata"
@@ -6040,6 +6320,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "dhcp"
@@ -6067,7 +6351,7 @@ msgstr ""
"Ühtki võrgukaarti ei õnnestunud tuvastada\n"
"Seega ei saa ka sellist ühendust seadistada."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Valige võrguliides"
@@ -6081,7 +6365,7 @@ msgstr ""
msgid "no network card found"
msgstr "võrgukaarti ei leitud"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Võrguseadistused"
@@ -6097,7 +6381,7 @@ msgstr ""
"Masina nimi peab olema esitatud täiskujul,\n"
"nagu ``minumasin.minufirma.ee''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Masinanimi"
@@ -6125,7 +6409,7 @@ msgstr "Millist ISDN ühendust kasutate?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6250,43 +6534,43 @@ msgstr "Millisesse seerialporti on Teie modem ühendatud?"
msgid "Dialup options"
msgstr "DialUp parameetrid"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Ühenduse nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Kasutajakonto"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Skriptipõhine"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminalipõhine"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domeeninimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Esimene nimeserver (soovituslik)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
@@ -6398,13 +6682,13 @@ msgstr "Valige profiil, mida seadistada"
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Otsin printerit..."
@@ -6515,7 +6799,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6525,7 +6809,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et sätteid mitte muuta."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6535,43 +6819,43 @@ msgstr ""
"Kõik read tuleb sisestada IP-aadressi kujul\n"
"(Näiteks 12.34.56.78)"
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame võrgukaardi %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Võrgu mask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Käivitub laadimisel"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6583,40 +6867,40 @@ msgstr ""
"nagu ``minumasin.minufirma.ee''.\n"
"Kui Teil on vaikimisi lüüs, siis sisestage ka selle IP-aadress"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Vahendaja peab olema kujul ftp://..."
@@ -6628,7 +6912,7 @@ msgstr "Interneti sätted"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Kas soovite oma internetiühendust proovida?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Testime Teie ühendust..."
@@ -6656,43 +6940,43 @@ msgstr "Internetiühenduse sätted"
msgid "Please fill or check the field below"
msgstr "Palun täida allpool olev väli"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kaardi IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kaardi mälu (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kaardi IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kaardi IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kaardi IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Teie telefoninumber"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Teenusepakkuja tunnus (näiteks minuisp.ee)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Sissehelistamiskeskuse number"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 (võib jätta tühjaks)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 (võib jätta tühjaks)"
@@ -6701,30 +6985,30 @@ msgstr "DNS 2 (võib jätta tühjaks)"
msgid "Choose your country"
msgstr "Klaviatuuri valik"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Valimisviis"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ühenduse tüüp: "
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Kasutajatunnus"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Salasõna"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6760,7 +7044,7 @@ msgstr "Kõlbmatu tagavarakoopia"
msgid "Error writing to file %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6806,7 +7090,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6835,7 +7119,7 @@ msgstr "Võrguprinter"
msgid "Printer on remote CUPS server"
msgstr "CUPS printserver"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd printserver"
@@ -6854,7 +7138,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Printserver:"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Printeri seadme URI"
@@ -6863,112 +7147,112 @@ msgstr "Printeri seadme URI"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Kohalik printer"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Võrguprinter"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Viga faili %s kirjutamisel"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(moodul %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serveri IP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Vaikimisi)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Vali printeri ühendusviis"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Kuidas on see printer ühendatud?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6979,17 +7263,21 @@ msgstr ""
"printereid seadistada, need leitakse automaatselt.\n"
"Kui kahtlete, valige \"CUPS printserver\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN sätted"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "CUPS printserver"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7000,7 +7288,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7010,36 +7298,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-aadress peab olema formaadis 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Pordi number peab olema ikkagi number"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS serveri IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Alglaaduri stiil"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7052,37 +7340,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Kohalik printer"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Võrguprinter"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Kohalik printer"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7096,53 +7415,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Kasuta automaattuvastust"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Võrguprinter"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Proovin porte"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "tuvastati %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Võrguprinter (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7150,43 +7466,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Kättesaadavad paketid"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7194,7 +7501,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7202,83 +7509,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Seadistused"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Paketi %s installimine"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Loetakse CUPS juhtprogramme"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Võrguprinteri sätted"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7288,31 +7550,51 @@ msgstr ""
"printserveri nime ja prindijärjekorra nime, mida soovite\n"
"serveril kasutada."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Võrguprinter"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Printserveri nimi:"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "tuvastati %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Testime Teie ühendust..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Seiskame võrguliidesed"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) printeri sätted"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7325,35 +7607,46 @@ msgstr ""
"printserveri IP-aadressi, samuti ka serveri poolt jagatava printeri\n"
"nime ning serveri poolt aktsepteeritud kasutajatunnuse, salasõna ja töögrupi"
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB serveri nimi"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB serveri IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Jagatav printer"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Töögrupp"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Kasuta automaattuvastust"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7377,7 +7670,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7386,7 +7679,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7394,11 +7687,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare printeri sätted"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7410,88 +7703,109 @@ msgstr ""
"nime (NB! See võib olla erinev tema TCP/IP nimest!) samuti nagu ka\n"
"prindijärjekorra nime serveril ning kasutajatunnuse ja salasõna"
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Printserver:"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Prindijärjekorra nimi:"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Pistikprinteri sätted"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Sisestage palun printeri masinanimi ja võimaluse\n"
"korral pordi number"
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Printeri seadme URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Printeri nimi"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Asukoht"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Loetakse CUPS juhtprogramme"
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Võrguprinter"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7506,28 +7820,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Kas see on sobiv?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Võrguprinter"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Mis tüüpi printer see on?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7536,18 +7850,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7557,12 +7871,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7570,7 +7884,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7583,7 +7897,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7593,34 +7907,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Proovin porte"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7628,45 +7942,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Jah, trüki mõlemad testleheküljed"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Printer"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Standardtööriistad"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7682,7 +7996,7 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7695,16 +8009,16 @@ msgstr ""
"\n"
"Kas tulemust on juba näha?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7713,15 +8027,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7730,7 +8044,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7738,41 +8052,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7782,7 +8096,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7791,47 +8105,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Seiskame võrguliidesed"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Seiskame võrguliidesed"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Seiskame võrguliidesed"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Seiskame võrguliidesed"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Hiir"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7840,9 +8154,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7853,19 +8167,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7875,51 +8189,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7927,62 +8241,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Printeri nimi tohib sisaldada vaid tähti, numbreid ja alakriipsu"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Printerit ei ole"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Sea printer"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Testime Teie ühendust..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Võrgusätted"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7990,12 +8304,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Võrguseadistused"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8005,34 +8319,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Kõrge"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranoiline"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8047,12 +8361,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8066,69 +8380,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Vali printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Millist printimissüsteemi soovite kasutada?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Paketi %s installimine"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Otse ühendatud printeri sätted"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Printeri sätted"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Kas soovite printerit seadistada?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8139,7 +8453,7 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8149,141 +8463,137 @@ msgstr ""
"Kirjeldatud on järgnevad prindijärjekorrad.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Võrgusätted"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Tavakasutus"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Välju"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Interneti sätted"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Internetiühenduse jagamine"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Printeri ühendusviis"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Trükitakse testlehekülg(i)..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Kas soovite seadistusi proovida?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Võrguprinter"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Kohalik printer"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Kas soovite võrguühendust taaskäivitada?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Loetakse CUPS juhtprogramme"
@@ -8335,8 +8645,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Vahendaja peab olema kujul ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vahendaja peab olema kujul http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8387,39 +8697,6 @@ msgstr "mkraid ebaõnnestus (puudub 'raidtools'?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
-"haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit ühendama\n"
-"ei teiste arvutitega ega ka mitte Internetti."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr "Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "ISDN sätted"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Eelistused"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8698,7 +8975,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -8821,7 +9098,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Juhtimiskeskus"
@@ -8921,22 +9198,22 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Paketi %s installimine"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Palun väljuge ja vajutage siis Ctrl-Alt-BackSpace"
# c-format
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8944,178 +9221,178 @@ msgstr ""
"Partitsioonitabel on loetamatu, liiga rikutud DrakX-i jaoks :(\n"
"Proovin loetamatud kirjed puhastada"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Interneti sätted"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Server, Andmebaasid"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Server, Andmebaasid"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS server:"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS server:"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
#, fuzzy
msgid "Etherboot Floppy/ISO"
msgstr "Loo alglaadimisflopi"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Lisa kasutaja"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/_Abi"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Ei ole ühendatud"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Kustuta"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Valige fail"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Lisa kasutaja"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Seadista..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "seadista uuesti"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Pane flopi seadmesse %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Viga"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Paigaldusjärgsed sätted"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9130,23 +9407,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Loon kiirpaigaldusflopi"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9154,40 +9431,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Õnnitleme!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Installimine"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Tavakasutaja"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Vormindan loopback faili %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9195,7 +9485,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9203,34 +9493,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Proovin porte"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Kõlbmatu tagavarakoopia"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9238,739 +9592,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Viga faili %s lugemisel"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Salasõna puudub"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Palun valige partitsioon"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Palun valige partitsioon"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Palun valige paketid installimiseks"
+msgid "Please check if you are using a DVDR device"
+msgstr "Palun valige partitsioon"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Valige fail"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Palun valige paketid installimiseks"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Palun valige paketid installimiseks"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Võrgu mask:"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tüüp"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
#, fuzzy
msgid "across Network"
msgstr "Võrgu mask:"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+#, fuzzy
+msgid "on Tape Device"
+msgstr "Printeri seade"
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Hiire port: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN ühendus"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Vali printeri ühendusviis"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Tekst"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Installimiseks on valitud järgmised paketid"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Kõlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Palun testige hiirt"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Palun valige paketid installimiseks"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Võrgu sätted"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9981,7 +10399,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10002,7 +10420,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10011,7 +10429,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10035,7 +10453,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10052,21 +10470,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10080,17 +10498,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10107,7 +10525,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10147,7 +10565,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10158,7 +10576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10171,7 +10589,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10210,96 +10628,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installimine ebaõnnestus. Tekkis järgnev viga:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsooliprogrammid"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Juhtimiskeskus"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "kohustuslik"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Hiir"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Võrguprinter"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Jagatav printer"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
#, fuzzy
msgid "Windows Migration tool"
msgstr "Gnome tööjaam"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Kasuta diskdrake-i"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Võrgu sätete abimees"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Tegevused"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakett"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Palun oodake"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10311,335 +10756,335 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Välju programmist"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Välju programmist"
+
+#: ../../standalone/drakbug_.c:182
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Seadistan uuesti abimehega..."
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Teisi keeli saab valida pärast installimist"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Võrgusätted (%d liidest)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profiil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Kustuta profiil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profiil kustutamiseks:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Uus profiil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Masinanimi: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internetiühendus"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tüüp: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Vaikelüüs:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Liides:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Olek:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Seadiste internetiühendus..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Juhtprogramm"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Liides"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokoll"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Olek:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Seadista kohtvõrk (LAN) ..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Abimees..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Rakenda"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Palun oodake... Rakendan seadistusi"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ühendatud"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Ei ole ühendatud"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Ühenda..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Lahuta..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Võrgukaart %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Laadimisprotokoll"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Käivitub laadimisel"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP klient"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Aktiivne"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Aktiivne"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Ühenduse tüüp: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameetrid"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Vaikelüüs"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Võrgukaart"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP klient"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr ""
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Module name"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Size"
msgstr "Suurus: %s"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
#, fuzzy
msgid "drakfloppy"
msgstr "Taasta flopilt"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
#, fuzzy
msgid "boot disk creation"
msgstr "Alglaadimise stiil"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "tavaline"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
#, fuzzy
msgid "kernel version"
msgstr "Interneti tööjaam"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
#, fuzzy
msgid "General"
msgstr "Tavaline"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
#, fuzzy
msgid "Expert Area"
msgstr "Ekspertresiim"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
#, fuzzy
msgid "Add a module"
msgstr "Tavakasutaja"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
#, fuzzy
msgid "force"
msgstr "Veel.."
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr ""
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
#, fuzzy
msgid "omit scsi modules"
msgstr "kasutades moodulit"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr ""
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
#, fuzzy
msgid "Remove a module"
msgstr "Viimane leht enne"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr ""
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Keela võrguühendus"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10647,105 +11092,105 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s ei leitud"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Tehtud"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Vorminda flopi"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Valmistun installimiseks"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "piiratud"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10754,122 +11199,127 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Vormindamine"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "RPM-ide eemaldamine"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "ISDN sätted"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Ühenduspunkt"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Valige partitsioonid, mida soovite vormindada"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Kontor"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Katkesta"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Printer"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Valige fail"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Võrguprinter"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Initsialiseerimisteade"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Teie süsteemis ei ole võrgukaarti!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Installimine"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Teie süsteemis ei ole võrgukaarti!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Välju programmist"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Internetiühenduse jagamine"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetiühenduse jagamine töötab"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10881,31 +11331,31 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "keela"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "tühista"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "seadista uuesti"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Peaten serverid..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Internetiühendust nüüd enam ei jagata"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetiühendust hetkel ei jagata"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10917,19 +11367,19 @@ msgstr ""
"\n"
"Mida Te soovite teha?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "luba"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Käivitan serverid..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Internetiühenduse jagamine nüüd töötab"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10943,21 +11393,21 @@ msgstr ""
"\n"
"Märkus: kohtvõrgu (LAN) jaoks on vajalik eraldi võrgukaardi olemasolu."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liides %s (kasutab moodulit %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Liides %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Teie süsteemis ei ole võrgukaarti!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10965,11 +11415,11 @@ msgstr ""
"Ühtki võrgukaarti ei ole hetkel seadistatud. Palun kasutage selleks "
"riistvara sätteseadjat."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Võrguliides"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10984,7 +11434,7 @@ msgstr ""
"\n"
"Kohtvõrgu sätted seotakse selle liidesga."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10992,12 +11442,12 @@ msgstr ""
"Palun valige millist võrguliidest soovite kasutada kohtvõrgu\n"
"jaoks."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor ei ole seadistatud"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11007,17 +11457,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Alglaaduri stiil"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Interneti sätted"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11028,7 +11478,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11040,34 +11490,34 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serveri IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Võimalik kohtvõrgu aadressi konflikt %s konfiguratsioonis!\n"
#
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Leitud tulemüüri sätted!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11075,20 +11525,20 @@ msgstr ""
"Hoiatus! Leiti olemasolevad tulemüüri sätted. Tõenäoliselt peaksite need "
"hiljem üle vaatame."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Seadistan..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Häälestan skriptid, installin tarkvara, käivitan serverid..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Probleemid paketi %s installimisel"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11098,24 +11548,24 @@ msgstr ""
"Nüüd saate internetiühendust jagada teistele kohtvõrgu arvutitele, kasutades "
"neil automaatset konfigureerimist (DHCP)"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Internetiühenduse jagamine on juba seadistatud aga hetkel keelatud."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"Internetiühenduse jagamine on juba seadistatud ja see on praegu aktiivne."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetiühenduse jagamist ei ole kunagi seadistatud"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Interneti jagamise seadistamine"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11130,20 +11580,13 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Juhtimiskeskus"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Valige kasutatav vahend"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11152,108 +11595,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanada (Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Prantsusmaa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Islandi"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Euroopa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "seerial"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Pakettide installimisel tekkis viga:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11277,11 +11724,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Kas soovite konsoolil kasutada BackSpace-i kui Delete?"
@@ -11305,7 +11752,7 @@ msgstr "Ei saa kiiruuendust alustada !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -11418,148 +11865,149 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "LAN sätted"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domeeninimi"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS server:"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Server, Andmebaasid"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS server:"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS server:"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "seade"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Printserver:"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "huvitav"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "vormindatakse"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Seadistused"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Palun proovige veel"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Salvesta kui..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "ei leitud: serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Teeskleme keskmist hiirenuppu?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Otsin printerit..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Proovin porte"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Valige graafikakaart"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Alglaadimisseade"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11567,7 +12015,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11588,15 +12036,15 @@ msgid ""
msgstr ""
#
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Tulemüüri sätted"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Tulemüüri sätted"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11608,7 +12056,7 @@ msgstr ""
"Tulemüüri olete juba seadistanud.\n"
"Valige 'Seadista', et midagi muuta"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11846,55 +12294,59 @@ msgstr "Võrgukaart %s: %s"
msgid "Can't open %s for writing: %s\n"
msgstr "Seadme %s avamine kirjutamiseks ebaõnnestus: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Võrgu sätete abimees"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Palun oodake, valmistun installimiseks"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Server, Veeb/FTP"
@@ -11944,6 +12396,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Audio-värgid: mp3 ja midi, mikserid jms"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Raamatud ja Howto-d Linux ja vabavara kohta"
@@ -12032,10 +12488,6 @@ msgid "Office Workstation"
msgstr "Kontori tööjaam"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm jne"
@@ -12097,6 +12549,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Mitmete protokollide, sealhulgas ssh kliendid"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Internetiühendus"
@@ -12129,6 +12585,103 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Seda tase muudab küll süsteemi lihtsalt kasutatavaks, kui väga\n"
+#~ "haavatavaks: ligipääsupiirangute puudumise tõttu ei peaks arvutit "
+#~ "ühendama\n"
+#~ "ei teiste arvutitega ega ka mitte Internetti."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr "Sellel turvatasemel võib süsteemi kasutada Internetis ka serverina."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Eelistused"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Turvalisus"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Palun valige klaviatuuriasetus"
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Palun testige hiirt"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Palun valige paketid installimiseks"
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Vahendaja peab olema kujul ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Palun valige paketid installimiseks"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Eemalda Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tabel"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS server:"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Võrguprinter"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Paketi %s installimine"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Paketi %s installimine"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Paketi %s installimine"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Loetakse CUPS juhtprogramme"
+
+#~ msgid "Control Center"
+#~ msgstr "Juhtimiskeskus"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Valige kasutatav vahend"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "ei leitud: serial_usb\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Valige X server"
@@ -12193,9 +12746,6 @@ msgstr "Teadustööjaam"
#~ msgid "Setting security level"
#~ msgstr "Turvataseme seadmine"
-#~ msgid "Graphics card"
-#~ msgstr "Graafikakaart"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valige graafikakaart"
@@ -12260,9 +12810,6 @@ msgstr "Teadustööjaam"
#~ msgid "Percentage of packages to install"
#~ msgstr "Installitavate pakettide protsent"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Valige turvatase"
-
#~ msgid "Complete (%dMB)"
#~ msgstr "Täielik (%d MB)"
@@ -12323,9 +12870,6 @@ msgstr "Teadustööjaam"
#~ msgid "Local Printer Device"
#~ msgstr "Otse ühendatud printer"
-#~ msgid "Printer Device"
-#~ msgstr "Printeri seade"
-
#~ msgid "Closing your connection..."
#~ msgstr "Sulgeme nüüd ühenduse..."
@@ -12374,9 +12918,6 @@ msgstr "Teadustööjaam"
#~ "Hoiatan, võrguliides on juba seadistatud. Järgnevalt seadistame selle "
#~ "uuesti."
-#~ msgid "New"
-#~ msgstr "Uus"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mõistetav (%s), palun täpsustage\n"
@@ -13696,9 +14237,6 @@ msgstr "Teadustööjaam"
#~ msgid "Enable num lock at startup"
#~ msgstr "Lülita Num Lock käivitamisel sisse"
-#~ msgid "Confirm Password"
-#~ msgstr "Salasõna uuesti"
-
#~ msgid "What is your system used for?"
#~ msgstr "Milline on Teie süsteemi kasutusala?"
@@ -13734,9 +14272,6 @@ msgstr "Teadustööjaam"
#~ msgid "Search"
#~ msgstr "Otsi"
-#~ msgid "Tree"
-#~ msgstr "Puu"
-
#~ msgid "Sort by"
#~ msgstr "Sortimine"
@@ -13746,9 +14281,6 @@ msgstr "Teadustööjaam"
#~ msgid "Installed packages"
#~ msgstr "Installitud paketid"
-#~ msgid "Available packages"
-#~ msgstr "Kättesaadavad paketid"
-
#~ msgid "Show only leaves"
#~ msgstr "Näita ainult üksikuid"
@@ -13869,9 +14401,6 @@ msgstr "Teadustööjaam"
#~ msgid "i18n (very nice)"
#~ msgstr "i18n (väga kena)"
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (kena)"
-
#~ msgid "Which serial port is your mouse connected to?"
#~ msgstr "Millisesse seerialporti on Teie hiir ühendatud?"
@@ -14422,9 +14951,6 @@ msgstr "Teadustööjaam"
#~ "Mis porti on Teie printer ühendatud? \n"
#~ "(paneme tähele, et /dev/lp0 on sama mis LPT1:)?"
-#~ msgid "tie"
-#~ msgstr "pintsaklips"
-
#~ msgid "brunette"
#~ msgstr "brünett"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index c22b4e0e5..6cd53a3eb 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2002-07-22 18:53+0200\n"
"Last-Translator: Ińigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
@@ -59,11 +59,11 @@ msgstr "Aukeratu X zerbitzaria"
msgid "X server"
msgstr "X zerbitzaria"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Buru anitzeko konfigurazioa"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,44 +71,44 @@ msgstr ""
"Zure sistemak buru anitzeko konfigurazioa onartzen du.\n"
"Zer egin nahi duzu?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Hautatu txartel grafikoaren memoria-tamaina"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree konfigurazioa"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "XFree-ren zein konfigurazio izan nahi duzu?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Buru guztiak independenteki konfiguratu"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Erabili Xinerama hedapena"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguratu \"%s\"%s txartela soilik"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazioarekin"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,11 +154,57 @@ msgstr ""
"ekin,\n"
"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Pertsonalizatua"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Txartel grafikoa"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitorea"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Bereizmena"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ados"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Irten"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -171,31 +217,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Aukeratu monitorea"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitorea"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Pertsonalizatua"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generikoa"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
msgstr "Saltzailea"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -218,11 +260,11 @@ msgstr ""
" handiagoko monitorerik ez zehaztea: monitorea honda dezakezu.\n"
" Zalantzarik baduzu, aukeratu ezarpen kontserbadore bat."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Freskatze-maiztasun horizontala"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Freskatze-maiztasun bertikala"
@@ -246,57 +288,42 @@ msgstr "16 milioi kolore (24 bit)"
msgid "4 billion colors (32 bits)"
msgstr "4 mila milioi kolore (32 bit)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Bereizmenak"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Bereizmena"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Aukeratu bereizmena eta kolorearen sakonera"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Txartel grafikoa: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Utzi"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ados"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Konfigurazioa probatu nahi duzu?"
@@ -305,71 +332,71 @@ msgstr "Konfigurazioa probatu nahi duzu?"
msgid "Test of the configuration"
msgstr "Konfigurazioaren proba"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Teklatu-diseinua: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Sagu-mota: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Sagu-gailua: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorea: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorearen SinkHoriz: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorearen FreskBert: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Txartel grafikoa: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memoria grafikoa: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Kolorearen sakonera: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Bereizmena: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 zerbitzaria: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 kontrolatzailea: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X abioan"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -378,166 +405,183 @@ msgstr ""
"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
"Berrabiaraztean X hastea nahi duzu?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Nolakoa da zure ISDN konexioa?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Arrankeko partizioaren lehen sektorea"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Unitateko lehen sektorea (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO instalazioa"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abioko kargatzailea?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub instalazioa"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO testu-menuarekin"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO menu grafikoarekin"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Windows-etik abiarazi (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Abioko kargatzailearen aukera nagusiak"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Erabili beharreko abioko kargatzailea"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Abioko kargatzailearen instalazioa"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Abioko gailua"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ez du funtzionatzen BIOS zaharretan)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Trinkoa"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "trinkotu"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Bideo modua"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasahitza"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Murriztu komando-lerroko aukerak"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "murriztu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Garbitu /tmp abiatzen den bakoitzean"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Zehaztu RAM tamaina beharrezkoa bada (%d MB aurkituak)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Gaitu profil anitzak"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Eman ram-tamaina MBtan"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Saiatu berriro"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Hasierako mezua"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Open Firmware-ren atzerapena"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Nukleoaren abioaren denbora-muga"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Gaitu CDtik abiaraztea?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Gaitu OF abiaraztea?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "SE lehenetsia?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -551,7 +595,7 @@ msgstr ""
"\n"
"Zein da zure abioko unitatea?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -559,131 +603,132 @@ msgstr ""
"Hauek dira sarrerak.\n"
"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Gehitu"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Eginda"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Aldatu"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Beste SE bat (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Imajina"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Erantsi"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Irakurri/idatzi"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Ez-segurua"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiketa"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Lehenetsia"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-tamaina"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "BideorikEz"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Kendu sarrera"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s interfaze aurkitu dira"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Baduzu besterik?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ba duzu %s interfazerik?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ez"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Bai"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Ikus hardwarearen informazioa"
@@ -692,17 +737,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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s %s txartelaren kontrolatzailea instalatzen"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(%s modulua)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -712,7 +757,7 @@ msgstr ""
"Ohartu sartzen den edozein helbide 0x aurrizkiarekin jarri behar dela, adib. "
"'0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -723,17 +768,17 @@ msgstr ""
"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
"Adibidez, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modulu-aukerak:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Zein %s kontrolatzaile probatu behar dut?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -752,15 +797,15 @@ msgstr ""
"blokeatuko du, baina\n"
"horrek ez luke kalterik egin beharko."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Autoproba"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Zehaztu aukerak"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -769,55 +814,55 @@ msgstr ""
"Huts egin du %s modulua kargatzean.\n"
"Beste parametro batzuekin saiatu nahi duzu berriro?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "X programen atzipena"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Pasahitz hau sinpleegia da"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Gehitu erabiltzailea"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -826,32 +871,32 @@ msgstr ""
"Sartu erabiltzaile bat\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Onartu erabiltzailea"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Benetako izena"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Erabiltzaile-izena"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikonoa"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -859,19 +904,19 @@ msgstr ""
"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
"Eginbide hau erabili nahi duzu?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Aukeratu erabiltzeko hizkuntza bat."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -880,35 +925,35 @@ msgstr ""
"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
"ditzakezu"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Denak"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Ez konpartitu"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -924,11 +969,11 @@ msgstr ""
"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
"daiteke.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -937,31 +982,31 @@ msgstr ""
"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
"honetan erabiltzeak gehitzeko."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Ongi etorri Crackers-era"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Txikia"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estandarra"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Handia"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Handiagoa"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoidea"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -971,7 +1016,7 @@ msgstr ""
"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -979,7 +1024,7 @@ msgstr ""
"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
"da komeni oraindik."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -987,7 +1032,7 @@ msgstr ""
"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -995,7 +1040,7 @@ msgstr ""
"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
"dira."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1009,7 +1054,7 @@ msgstr ""
"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
"soila bada, hobe duzu maila apalagoa."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1017,27 +1062,44 @@ msgstr ""
"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
"Segurtasun-eginbideak maximoan jarrita daude."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Aukerak"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Aukeratu segurtasun-maila"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Segurtasun-maila"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Erabili libsafe zerbitzarietarako"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1054,109 +1116,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Mahaigaina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Hasi menua"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "oraindik ez da laguntzarik inplementatu.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Abioko estilo-konfigurazioa"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxategia"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxategia/I_rten"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "NewStyle kategorizatze-monitorea"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NewStyle monitorea"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Monitore tradizionala"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Gtk+ monitore tradizionala"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Abiarazi Aurora abioan"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub modua"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot modua"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Instalatu sistema"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Errorea"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "%s kopiatzen"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "BideorikEz"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Hautatu instalazio-klasea"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1165,42 +1323,69 @@ msgstr ""
"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfiguratu"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Gorde pakete-hautapena"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistema modua"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Abiarazi X-Window sistema hasieran"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Ados"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
@@ -1245,61 +1430,113 @@ msgid "Screenshots will be available after install in %s"
msgstr ""
"%s(e)n instalazioa egindakoan pantaila-argazkiak erabilgarri egongo dira"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frantzia"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgika"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Txekiar errepublika"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Alemania"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grezia"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norvegia"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Suedia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Herbehereak"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italia"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Estatu Batuak"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Modelo ezezaguna"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "berria"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Zerbitzaria"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Idatzi CD idazgailuaren abiadura"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "URLaren hasieran 'http:' jarri behar du"
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Zerbitzaria"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Muntatze-puntua: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Aukerak: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Egin zure datuen babeskopia lehendabizi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Irakurri arretaz"
@@ -1312,15 +1549,6 @@ msgstr ""
"Aboot erabiltzeko asmoa baduzu, utzi lekua (2048 sektore nahikoa da)\n"
"diskoaren hasieran"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Errorea"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Morroia"
@@ -1346,7 +1574,7 @@ msgid "Please click on a partition"
msgstr "Egin klik partizio batean"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Xehetasunak"
@@ -1374,13 +1602,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Hutsik"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Bestelakoa"
@@ -1388,12 +1616,12 @@ msgstr "Bestelakoa"
msgid "Filesystem types:"
msgstr "Fitxategi-sistemen motak:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Sortu"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Mota"
@@ -1403,7 +1631,7 @@ msgstr "Mota"
msgid "Use ``%s'' instead"
msgstr "Erabili ``%s'' horren ordez"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Ezabatu"
@@ -1411,7 +1639,7 @@ msgstr "Ezabatu"
msgid "Use ``Unmount'' first"
msgstr "Erabili ``Desmuntatu'' lehendabizi"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1419,72 +1647,72 @@ msgstr ""
"%s partizio-mota aldatu ondoren, partizio honetako datu guztiak galdu egingo "
"dira"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Aukeratu partizio bat"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Aukeratu beste partizio bat"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Irten"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Aldatu aditu modura"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Aldatu modu normalera"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Desegin"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Irten gorde gabe"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Irten partizio-taula idatzi gabe?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "/etc/fstab aldaketak gorde nahi dituzu?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Auto-esleitu"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Garbitu dena"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Gehiago"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Disko gogorraren informazioa"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Lehen mailako partizio guztiak erabilita daude"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ezin da partizio gehiago gehitu"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1492,31 +1720,31 @@ msgstr ""
"Partizio gehiago edukitzeko, ezabatu horietako bat partizio hedatu bat sortu "
"ahal izateko"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Gorde partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Leheneratu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Berreskuratu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Birkargatu partizio-taula"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Euskarri aldagarrien automuntatzea"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Hautatu fitxategia"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1524,11 +1752,11 @@ msgstr ""
"Babeskopiako partizio-taulak ez du tamaina bera\n"
"Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Kontuz"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1536,129 +1764,112 @@ msgstr ""
"Sartu diskete bat unitatean\n"
"Disketeko datu guztiak galdu egingo dira"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Partizio-taula berreskuratzen saiatzen"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Informazio xehea"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Muntatze-puntua"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Aukerak"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Aldatu tamaina"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Lekuz aldatu"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formateatu"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntatu"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Gehitu RAIDi"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Gehitu LVMri"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmuntatu"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Kendu RAIDetik"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Kendu LVMtik"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Aldatu RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Erabili atzera-begiztarako"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Sortu partizio berria"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Hasierako sektorea: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Tamaina MBtan: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Fitxategi-sistemaren mota: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Muntatze-puntua: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Hobespena: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Atzera-begiztako fitxategia kendu?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Aldatu partizio-mota"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Zein fitxategi-sistema nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "ext2tik ext3ra aldatzen"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Non muntatu nahi duzu %s atzera-begiztako fitxategia?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Non muntatu nahi duzu %s gailua?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1667,133 +1878,138 @@ msgstr ""
"erabiltzen delako\n"
"Kendu atzera-begizta lehendabizi"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Non muntatu nahi duzu %s gailua?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "FAT fitxategi-sistemaren mugak kalkulatzen"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Tamaina aldatzen"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Partizio honi ezin zaio tamaina aldatu"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Partizio honetako datu guztiek babeskopia eduki beharko lukete"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa tamainaz aldatu ondoren, partizioko datu guztiak galdu egingo "
"dira"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Aukeratu tamaina berria"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Tamaina berria MBtan: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Zein diskotara eraman nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektorea"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Zein sektoretara eraman nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Lekuz aldatzen"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Partizioa lekuz aldatzen..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Aukeratu lehendik dagoen RAID bat gehitzeko"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "berria"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Aukeratu lehendik dagoen LVM bat gehitzeko"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM izena?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Partizio hau ezin da atzera-begiztarako erabili"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Atzera-begizta"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Atzera-begiztako fitxategi-izena: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Eman fitxategi-izen bat"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fitxategi hau beste atzera-begizta batek erabiltzen du, aukeratu beste bat"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Fitxategia badago lehendik ere. Erabili?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Muntatze-aukerak"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Hainbat"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "gailua"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "maila"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "zatiaren tamaina"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Kontuz ibili: eragiketa hau arriskutsua da."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Nolako partizioa?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "%s paketea behar da. Instalatu nahi duzu?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1804,7 +2020,7 @@ msgstr ""
"Edo LILO erabiltzen duzu eta ez du funtzionatuko, edo ez duzu LILO "
"erabiltzen eta ez duzu /boot erabili beharrik"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1816,7 +2032,7 @@ msgstr ""
"LILO abioko kudeatzailea erabiltzeko asmoa baduzu, ez ahaztu /boot partizioa "
"gehitzea"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1827,45 +2043,45 @@ msgstr ""
"dezakeenik.\n"
"Beraz, kontuan izan /boot partizioa gehitu behar duzula"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s unitatearen partizio-taula diskoan idatziko da!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Berrabiarazi egin beharko duzu aldaketek eragina izan dezaten"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s partizioa formateatu ondoren, partizioko datu guztiak galdu egingo dira"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "%s atzera-begiztako fitxategia formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "%s partizioa formateatzen"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Ezkutatu fitxategiak"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Eraman fitxategiak partizio berrira"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1874,83 +2090,83 @@ msgstr ""
" %s direktorioak baditu datu batzuk\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Fitxategiak partizio berrira eramaten"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "%s kopiatzen"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "%s kentzen"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s partizioa %s da orain"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Gailua: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS unitate-letra: %s (uste hutsa)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Mota: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Izena: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Hasi: %s sektorea\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Tamaina: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d zilindrotik %d zilindrora\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formateatua\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Formateatu gabe\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Muntatuta\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1959,7 +2175,7 @@ msgstr ""
"Atzera-begiztako fitxategia(k):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1967,27 +2183,27 @@ msgstr ""
"Lehenespenez abiarazteko partizioa\n"
" (MS-DOS abiorako, ez lilo-rako)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "%s maila\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "%s zatiaren tamaina\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "%s RAID-diskoak\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Atzera-begiztako fitxategi-izena: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1999,7 +2215,7 @@ msgstr ""
"partizioa izan daiteke, hobe duzu\n"
"bere horretan uztea.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2011,63 +2227,58 @@ msgstr ""
"sistemaren abio bikoitza\n"
"egiteko da.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Tamaina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s zilindro, %s buru, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "%s LVM-diskoak\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partizio-taularen mota: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d kanalean id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Aukerak: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Fitxategi-sistema enkriptatzeko gakoa"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Aukeratu fitxategi-sistema enkriptatzeko gakoa"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Enkriptatze-gako hau sinpleegia da (gutxienez %d karaktere izan behar ditu)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Enkriptatze-gakoak ez datoz bat"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Enkriptatze-gakoa"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Enkriptatze-gakoa (berriro)"
@@ -2118,23 +2329,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:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s(r)i formatua emateak huts egin du"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "errorea %s desmuntatzean: %s"
@@ -2151,33 +2362,33 @@ msgstr "/usr-rekin"
msgid "server"
msgstr "zerbitzaria"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Muntatzen-puntuek / batez hasi behar dute"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jadanik badago %s muntatze-puntua duen partizio bat\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ezin da LVM bolumen logikoa erabili %s muntatze-punturako"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Direktorio honek erroko fitxategi-sisteman egon behar du"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2185,25 +2396,25 @@ msgstr ""
"Egiazko fitxategi-sistema (ext2/ext3, reiserfs, xfs, or jfs) behar duzu "
"muntatze-puntu honentzako\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ezin da fitxategi-sistema enkriptatua erabili %s muntatze-punturako"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Ez dago nahikoa leku libre auto-esleitzeko"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Ez dago zer eginik"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errorea %s idazteko irekitzean: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2211,250 +2422,254 @@ msgstr ""
"Errorea gertatu da - ez da fitxategi-sistema berriak sortzeko gailu "
"baliozkorik aurkitu. Aztertu zure hardwarea arazo honen arrazoia bilatzeko"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Ez duzu partiziorik!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-msgid "Auto-detect"
-msgstr "Auto-detektatu"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr "Ezezaguna|Generikoa"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Ezezaguna|CPH05X (bt878) [saltzaile ugari]"
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Ezezaguna|CPH06X (bt878) [saltzaile ugari]"
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-"TB txartela moderno gehienentzako, GNU/Linux kernelaren bttv moduloak "
-"parametro egokiak auto-detektatzen ditu.\n"
-"Zure txartela ez bada egokiro detektatzen, sintonizatzaile eta txartela mota "
-"egokiak behartu ditzakezu hemen. Hautatu zure tb parametro egokiak "
-"beharrezkoa bada"
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr "Txartela modeloa :"
-
-#: ../../harddrake/bttv.pm_.c:197
-msgid "PLL setting :"
-msgstr "PLL ezarpenak :"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr "Eskuratze buffer kopurua :"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "mmap erabiliz eskuratzerako eskuratze buffer kopurua"
-
-#: ../../harddrake/bttv.pm_.c:199
-msgid "Tuner type :"
-msgstr "Sintonizatzaile mota :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr "Irrati euskarria :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr "irrati euskarria gaitu"
-
-#: ../../harddrake/ui.pm_.c:12
-msgid "/_Quit"
-msgstr "/_Irten"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Laguntza"
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr "/_Laguntza..."
-
#: ../../harddrake/ui.pm_.c:15
-msgid "/_About..."
-msgstr "/_Honi buruz..."
-
-#: ../../harddrake/ui.pm_.c:22
#, fuzzy
msgid "Model"
msgstr "Modulua"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Txartela modeloa :"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Utzi"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr "Busa"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Modulua"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr "Euskarri mota"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Azalpena"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
msgstr "Bus identifikazioa"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr "Busean kokapena"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Hautatu fitxategia"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Atebide-gailua"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 botoi"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Irten"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Laguntza"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Laguntza..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "Harddrake laguntza"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_Honi buruz..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "Harddrakeri buruz"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
+"Bertsioa:"
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Egilea:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
msgstr "Harddrake2 bertsioa "
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
msgstr "Detektatu hardwarea"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Konfiguratu modulua"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
msgstr "Informazioa"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr "Exekutatu ezarpen tresna"
-#: ../../harddrake/ui.pm_.c:158
-msgid "Configure module"
-msgstr "Konfiguratu modulua"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr "Detekzio martxan"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Itxaron mesedez"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr "lehenengo mailakoa"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
msgstr "bigarren mailakoa"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, c-format
msgid "Running \"%s\" ..."
msgstr "\"%s\" exekutatzen ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr "Harddrakeri buruz"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Auto-detektatu"
-#: ../../harddrake/ui.pm_.c:280
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
-msgstr ""
-"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
-"Bertsioa:"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Ezezaguna|Generikoa"
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
-msgstr "Egilea:"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ezezaguna|CPH05X (bt878) [saltzaile ugari]"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr "Harddrake laguntza"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ezezaguna|CPH06X (bt878) [saltzaile ugari]"
-#: ../../harddrake/ui.pm_.c:287
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"Description of the fields:\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
+"TB txartela moderno gehienentzako, GNU/Linux kernelaren bttv moduloak "
+"parametro egokiak auto-detektatzen ditu.\n"
+"Zure txartela ez bada egokiro detektatzen, sintonizatzaile eta txartela mota "
+"egokiak behartu ditzakezu hemen. Hautatu zure tb parametro egokiak "
+"beharrezkoa bada"
+
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Txartela modeloa :"
+
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Sintonizatzaile mota :"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "Eskuratze buffer kopurua :"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "mmap erabiliz eskuratzerako eskuratze buffer kopurua"
+
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "PLL ezarpenak :"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Irrati euskarria :"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "irrati euskarria gaitu"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
@@ -4337,7 +4552,7 @@ msgstr ""
"Egin klik \"Utzi\" botoian disko gogor honetako daturik eta partiziorik\n"
"galdu gabe eragiketa hau bertan behera uzteko."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4349,7 +4564,7 @@ msgstr ""
"instalazio euskarriarekin sinkronizatuta (mesedez sortu abiapen diskete "
"berria)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "%s ere formateatu behar duzu"
@@ -4379,20 +4594,20 @@ msgstr ""
"\n"
"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sartu FAT formatuko diskete bat %s unitatean"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Diskete honek ez du FAT formaturik"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4400,7 +4615,7 @@ msgstr ""
"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
"defcfg=floppy''rekin"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Errorea %s fitxategia irakurtzean"
@@ -4438,7 +4653,7 @@ msgstr ""
"\n"
"Jarraitu hala ere?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "FAT partizio bat eduki behar duzu /boot/efi-n muntatuta"
@@ -4616,12 +4831,12 @@ msgstr ""
"Errore bat gertatu da, baina ez dakit behar bezala maneiatzen.\n"
"Jarraitu zure ardurapean."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Bikoiztu %s muntatze-puntua"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4633,12 +4848,12 @@ msgstr ""
"Probatu CDROMa ordenagailu instalatu batean \"rpm -qpl Mandrake/RPMS/*.rpm\" "
"erabiliz.\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
@@ -4648,7 +4863,7 @@ msgstr "Ez dago diskete-unitate erabilgarririk"
msgid "Entering step `%s'\n"
msgstr "`%s' urratsean sartzen\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4660,77 +4875,77 @@ msgstr ""
"Horretarako,\n"
"sakatu `F1' CDROMetik abiaraztean, gero sartu `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Instalazio-klasea"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Aukeratu instalazio-klase hauetako bat:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Pakete-taldearen hautapena"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Pakete indibidualen hautapena"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Guztira: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Pakete txarra"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Izena: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Bertsioa: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamaina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Garrantzia: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ezin duzu pakete hori hautatu: ez dago instalatzeko lekurik"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Ondorengo pakete hauek instalatuko dira"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Ondorengo pakete hauek kenduko dira"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Ezin duzu pakete hau hautatu/desautatu"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Nahitaezko paketea da, ezin da desautatu"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Ezin duzu pakete hau desautatu. Dagoeneko instalatuta dago"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4738,74 +4953,74 @@ msgstr ""
"Pakete hau bertsio-berritu beharrean dago\n"
"Ziur zaude desautatu nahi duzula?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ezin duzu pakete hau desautatu. Bertsio-berritu egin behar da"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Erakutsi automatikoki hautatutako paketeak"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instalatu"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Kargatu/Gorde disketean"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Pakete-hautapena eguneratzen"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Gutxieneko instalazioa"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Aukeratu instalatu nahi dituzun paketeak"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instalatzen"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Kalkulatzen"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Geratzen den denbora "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Itxaron, instalazioa prestatzen"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paketeak"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "%s paketea instalatzen"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Onartu"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Ezetsi"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4819,17 +5034,17 @@ msgstr ""
"Sartu \"%s\" etiketa duen CDROMa unitatean eta sakatu Ados.\n"
"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Errore bat izan da paketeak ordenatzean:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Errore bat izan da paketeak instalatzean:"
@@ -5140,104 +5355,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr "Ziur zaude lizentzia errefusatzen duzula?"
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teklatua"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Aukeratu zure teklatu-diseinua."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Hona hemen teklatu erabilgarri guztien zerrenda"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Zein instalazio-klase nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instalatu/Eguneratu"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Zer egin nahi duzu: instalazioa ala eguneratzea?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Gomendatua"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Aditua"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Bertsio-berritu"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Paketeak bakarrik bertsio-berritu"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Aukeratu sagu-mota."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Sagu-ataka"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aukeratu sagua konektatuta dagoen serieko ataka."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Botoien emulazioa"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "2. botoiaren emulazioa"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "3. botoiaren emulazioa"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA txartelak konfiguratzen..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE konfiguratzen"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ez dago partizio erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Partizioak eskaneatzen muntatze-puntuak aurkitzeko"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Aukeratu muntatze-puntuak"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5255,7 +5470,7 @@ msgstr ""
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5263,7 +5478,7 @@ msgstr ""
"DiskDrake-k ezin izan du partizio-taula behar bezala irakurri.\n"
"Jarraitu zure ardurapean!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5272,68 +5487,68 @@ msgstr ""
"baina zure sistema abiarazteko, bootstrap partizioa sortu beharko duzu "
"DiskDrake-rekin"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Ez da erroko partiziorik aurkitu bertsio-berritzea egiteko"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Erroko partizioa"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Zein da zure sistemaren (/) erroko partizioa?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Berrabiarazi egin behar duzu partizio-taulako aldaketek eragina izateko"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Aukeratu formateatu nahi dituzun partizioak"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Bloke txarrak egiaztatu?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Partizioak formateatzen"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fitxategia sortzen eta formateatzen"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Pakete erabilgarriak bilatzen eta rpm databaseak berreraikitzen..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Pakete erabilgarriak bilatzen"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Bertsio-berritzeko paketeak bilatzen"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
msgid "Looking at packages already installed..."
msgstr "Instalatutako paketeen artean bilatzen..."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Bertsio-berritzeko paketeak bilatzen"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5342,7 +5557,7 @@ msgstr ""
"Zure sistemak ez du nahikoa leku instalatzeko edo bertsio-berritzeko (%d > %"
"d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5350,35 +5565,35 @@ msgstr ""
"Aukeratu pakete-hautapena disketean kargatzea edo gordetzea.\n"
"Formatua instalazio automatikoa egiteko sortutako disketeena bezalakoa da."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Disketetik kargatu"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Disketetik kargatzen"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Pakete-hautapena"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Sartu pakete-hautapena daukan diskete bat"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Gorde disketean"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Instalazio-mota"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5386,15 +5601,15 @@ msgstr ""
"Ez duzu talde edo paketerik hautatuta\n"
"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Xrekin"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
@@ -5413,11 +5628,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" etiketadun CDROMa"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Instalazioa prestatzen"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5426,21 +5641,21 @@ msgstr ""
"%s paketea instalatzen\n"
"%% %d"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Instalazio-ondorengo konfigurazioa"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sartu abioko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5514,7 +5729,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5534,180 +5749,189 @@ msgstr ""
"\n"
"Eguneratzeak instalatu nahi dituzu?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Hardwarearen ordua GMTn ezarria"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Urruneko CUPS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Inprimagailurik ez"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "ISA soinu-txartela duzu?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
"konfiguratzeko "
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
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:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Laburpena"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Sagua"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Ordu-zona"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Inprimagailua"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN txartela"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Soinu-txartela"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Telebista-txartela"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr "Windows PDC"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Windows Domeinua"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Fitxategi lokalak"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ezarri root-aren pasahitza"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Pasahitzik ez"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP basea dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS domeinua"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS zerbitzaria"
#: ../../install_steps_interactive.pm_.c:1138
-msgid "Authentication Windows PDC"
-msgstr "Autentifikazioa Windows PDC"
-
-#: ../../install_steps_interactive.pm_.c:1139
-msgid "Windows Domain"
-msgstr "Windows Domeinua"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
-msgid "PDC Server Name"
-msgstr "PDC Zerbitzari Izena"
+#, fuzzy
+msgid "Authentication Windows Domain"
+msgstr "Autentifikazioa Windows PDC"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domeinu-izena:"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-"Honek W2K PDC batentzako lan egin dezan, seguruenik administradoreak "
-"exekutatu beharko du: C:\\>net localgroup \"Pre-Windows 2000 Compatible Acess"
-"\" everyone /add eta berrabiatu zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5738,19 +5962,19 @@ msgstr ""
"lehen\n"
"unitatean eta sakatu \"Ados\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Lehen diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Bigarren diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Saltatu"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5778,7 +6002,7 @@ msgstr ""
"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5792,28 +6016,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:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sartu diskete bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Abioko disketea sortzen"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Abioko kargatzailea prestatzen"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5825,11 +6049,11 @@ msgstr ""
"Instalazioak jarraitu egingo du, baina\n"
"BootX erabili beharko duzu makina abiarazteko"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "aboot erabili nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5837,15 +6061,15 @@ msgstr ""
"Errorea aboot instalatzean, \n"
"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Abioko kargatzailea instalatzen"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
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:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5863,17 +6087,17 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Auto-instalazioko disketea sortzen..."
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5883,7 +6107,7 @@ msgstr ""
"\n"
"Ziur zaude orain irten nahi duzula?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5916,16 +6140,16 @@ msgstr ""
"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Sortu auto-instalazioko disketea"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5939,15 +6163,15 @@ msgstr ""
"\n"
"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatizatua"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Errepikatu"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Gorde pakete-hautapena"
@@ -5975,24 +6199,35 @@ msgstr "consolehelper falta da"
msgid "Choose a file"
msgstr "Aukeratu fitxategi bat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Aurreratua"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Oinarrizkoa"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Aurrekoa"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Hurrengoa"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Aukera okerra, saiatu berriro\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Zure aukera? (%s lehenetsia) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6001,35 +6236,35 @@ msgstr ""
"Zuk bete beharreko sarrerak:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Zure aukera? (0/1, lehenetsia `%s' da) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "`%s' botoia : %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Botoi honetan klik egin nahi duzu?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr " sartu 'void' sarrera hutsa jartzeko"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Zure aukera? (lehenetsia: `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Hainbat gauza dituzu aukeran (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6039,7 +6274,7 @@ msgstr ""
"edo sakatu Sartu, jarraitzeko.\n"
"Zure aukera? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6048,327 +6283,379 @@ msgstr ""
"=> Kontuz, etiketa bat aldatu da:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Berriro bidali"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "txekiarra (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "alemana"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "espainiarra"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "finlandiarra"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "frantsesa"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "norvegiarra"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "poloniarra"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "errusiarra"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "suediarra"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Erresuma Batuko teklatua"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Estatu Batuetako teklatua"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "albaniarra"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "armeniarra (zaharra)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "armeniarra (idazmakina)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "armeniarra (fonetikoa)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "azerbaijandarra (latinoa)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "belgikarra"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "gaitu"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "bulgariarra (fonetikoa)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "bulgariarra (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "brasildarra (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "estoniarra"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "bielorrusiarra"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "suitzarra (diseinu alemana)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "suitzarra (diseinu frantsesa)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "txekiarra (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "alemana (letra zaharkiturik ez)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "daniarra"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (Estatu Batuak)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (norvegiarra)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (suediarra)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "estoniarra"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "georgiarra (diseinu \"errusiarra\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "georgiarra (diseinu \"latinoa\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "grekoa"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "hungariarra"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "kroaziarra"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "israeldarra"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "israeldarra (fonetikoa)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "iraniarra"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "islandiarra"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "italiarra"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "japoniarra 106 tekla"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Koreako teklatua"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "latinamerikarra"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "letoniarra"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniako AZERTY (zaharra)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniako AZERTY (berria)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniako QWERTY \"ilara numerikoa\""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniako QWERTY \"fonetikoa\""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "letoniarra"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "mazedoniarra"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "serbiarra (zirilikoa)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "holandarra"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "poloniarra (qwerty diseinua)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "poloniarra (qwertz diseinua)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "portugesa"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "kanadarra (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "errumaniarra (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "errumaniarra (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "errusiarra (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "esloveniarra"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "eslovakiarra (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "eslovakiarra (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "serbiarra (zirilikoa)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "tamila"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "tamila (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "tamila (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thailandiako teklatua"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajikistango teklatua"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "turkiarra (tradizionala \"F\" modeloa)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "turkiarra (modernoa \"Q\" modeloa)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "ukrainarra"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Estatu Batuetako teklatua (nazioartekoa)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamdarra QWERTY \"ilara numerikoa\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "jugoslaviarra (latinoa)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Eskuineko Alt tekla"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Bi Maius teklak batera"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Kontrol eta Maius teklak batera"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "BlokMaius tekla"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ktrl eta Alt teklak batera"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt eta Maius teklak batera"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Menu\" tekla"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Ezkerreko \"Windows\" tekla"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Eskuineko \"Windows\" tekla"
@@ -6377,35 +6664,35 @@ msgstr "Eskuineko \"Windows\" tekla"
msgid "Circular mounts %s\n"
msgstr "%s muntaketa zirkularrak\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Kendu bolumen logikoak lehendabizi\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
msgid "a number"
msgstr "zenbaki bat"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "komaz banaturiko %d zenbaki"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr "komaz banaturiko %d karaktere-hilara"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr "komaz banaturiko zenbakiak"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
msgstr "komaz banaturiko karaktere-hilarak"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr "PCMCIA euskarririk ez dago 2.2 nukleoentzat. Erabili 2.4 nukleoa."
#: ../../mouse.pm_.c:25
@@ -6508,51 +6795,43 @@ msgstr "bat ere ez"
msgid "No mouse"
msgstr "Sagurik gabe"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Probatu sagua"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Sagua aktibatzeko,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "MUGITU GURPILA!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Amaitu"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Hurrengoa ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Aurrekoa"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Zuzena da?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Informazioa"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Zabaldu zuhaitza"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Tolestu zuhaitza"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
@@ -6575,6 +6854,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "erabili dhcp"
@@ -6602,7 +6885,7 @@ msgstr ""
"Zure sisteman ez da ethernet sare-moldagailurik detektatu.\n"
"Ezin dut konexio-mota hau konfiguratu."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Aukeratu sare-interfazea"
@@ -6616,7 +6899,7 @@ msgstr ""
msgid "no network card found"
msgstr "ez da sare-txartelik aurkitu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Sarea konfiguratzen"
@@ -6632,7 +6915,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Ostalari-izena"
@@ -6660,7 +6943,7 @@ msgstr "Nolakoa da zure ISDN konexioa?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6785,43 +7068,43 @@ msgstr "Aukeratu modema konektatuta dagoen serieko ataka."
msgid "Dialup options"
msgstr "Telefonoz deitzeko aukerak"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Konexio-izena"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefono-zenbakia"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Saio-hasierako ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-ean oinarritua"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminalean oinarritua"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domeinu-izena:"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Lehen DNS zerbitzaria (aukerakoa)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
@@ -6933,13 +7216,13 @@ msgstr "Aukeratu konfiguratzeko profila"
msgid "Use auto detection"
msgstr "Erabili auto-detekzioa"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Gailuak detektatzen..."
@@ -7055,7 +7338,7 @@ msgstr ""
"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
"konfigurazioa berrabiarazi beharko duzu"
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7066,7 +7349,7 @@ msgstr ""
"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7076,42 +7359,42 @@ msgstr ""
"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Sareko %s gailua konfiguratzen"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (%s kontrolatzailea)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP helbidea"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Sare-maskara"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP automatikoa"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Abioan abiaraztekoa"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7123,40 +7406,40 @@ msgstr ""
"esate baterako, ``mybox.mylab.myco.com''.\n"
"Atebidearen IP helbidea ere sar dezakezu, baldin baduzu"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS zerbitzaria"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Atebidea (adib. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Atebide-gailua"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxy-en konfigurazioa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy-a"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy-a"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy-ak http://... izan behar du"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy-ak ftp://... izan behar du"
@@ -7168,7 +7451,7 @@ msgstr "Interneteko konfigurazioa"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Internetera orain konektatu nahi duzu?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Konexioa probatzen..."
@@ -7196,43 +7479,43 @@ msgstr "Konexioaren konfigurazioa"
msgid "Please fill or check the field below"
msgstr "Bete edo egiaztatu ondoko eremua"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Txartelaren IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Txartelaren mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Txartelaren S/I"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Txartelaren S/I_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Txartelaren S/I_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Zure telefono-zenbakia"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Hornitzailearen izena (adib. hornitzailea.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Hornitzailearen telefono-zenbakia"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Hornitzailearen dns 1 (aukerakoa)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Hornitzailearen dns 2 (aukerakoa)"
@@ -7240,28 +7523,28 @@ msgstr "Hornitzailearen dns 2 (aukerakoa)"
msgid "Choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Markatzeko modua"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Konexioaren abiadura"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Konexioaren denbora-muga (segundotan)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Kontuaren identifikatzailea (erabiltzaile-izena)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Kontuaren pasahitza"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr "Erresuma Batua"
@@ -7297,7 +7580,7 @@ msgstr "Babeskopia txarra"
msgid "Error writing to file %s"
msgstr "Errorea %s fitxategian idaztean"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7343,7 +7626,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue (Inprimatu, ez egon ilaran)"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7371,7 +7654,7 @@ msgstr "Urruneko inprimagailua"
msgid "Printer on remote CUPS server"
msgstr "Urruneko CUPS zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Urruneko lpd zerbitzariko inprimagailua"
@@ -7387,7 +7670,7 @@ msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
msgid "Printer on NetWare server"
msgstr "NetWare zerbitzariko inprimagailua"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Adierazi inprimagailuaren URI bat"
@@ -7395,110 +7678,110 @@ msgstr "Adierazi inprimagailuaren URI bat"
msgid "Pipe job into a command"
msgstr "Kanalizatu lana komando batean"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Modelo ezezaguna"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Inprimagailu lokalak"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Urruneko inprimagailuak"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " - \\/*%s ataka paraleloan"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", \\/*%s USB inprimagailua"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", funtzio anitzeko gailua \\/*%s ataka paraleloan"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", funtzio anitzeko gailua - USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", funtzio anitzeko gailua - HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", funtzio anitzeko gailua"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", %s atakan"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr " - \"%s\" LPD zerbitzaria, \"%s\" inprimagailua"
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr " - \"%s\" Windows zerbitzaria, \"%s\" konpartitzea"
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr " - \"%s\" Novell zerbitzaria, \"%s\" inprimagailua"
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", %s komandoaren bidez"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Inprimagailu gordina (kontrolatzailerik ez)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(%s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(makina honetan)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "\"%s\" CUPS zerbitzarian"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (lehenetsia)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Hautatu inprimagailu-konexioa"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Nola dago konektatuta inprimagailua?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7508,15 +7791,19 @@ msgstr ""
"Urruneko CUPS zerbitzariko inprimagailuak ez dituzu hemen konfiguratu behar; "
"horrelako inprimagailuak automatikoki detektatuko dira."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPSen konfigurazioa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Zehaztu CUPS zerbitzaria"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7535,7 +7822,7 @@ msgstr ""
"atakaren zenbakia, zerbitzaritik inprimagailuaren informazioa eskuratzeko; "
"bestela, utzi eremu hauek hutsik."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7552,32 +7839,32 @@ msgstr ""
"/etc/cups/cupsd.conf fitxategia eskuz. Ez ahaztu gero CUPS\n"
"berrabiaraztea (komandoa: \"service cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP helbideak honelako itxura izan behar du: 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Ataka-zenbakiak osoko zenbakia izan behar du!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS zerbitzariaren IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ataka"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "CUPS konfigurazio automatikoa"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Gehitu inprimagailu berria"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7600,49 +7887,67 @@ msgstr ""
"inprimagailu-kontrolatzaile, kontrolatzaile-aukera eta konexio-mota "
"erabilgarri guztiak jarriko ditu zure esku."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Inprimagailu lokala"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Ongi etorri inprimagailuak instalatzeko morroira\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Morroi honen bidez, ordenagailuarekin konektatutako inprimagailuak "
-"instalatzeko laguntza jasoko duzu.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Konektatu inprimagailua ordenagailuarekin eta piztu ezazu. Aurrera "
-"jarraitzeko, egin klik \"Hurrengoa\"n, eta instalazioa bertan behera uzteko "
-"egin klik \"Utzi\"n .\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Ordenagailu batzuk kraskatu egin daitezke inprimagailuen auto-detekzioan, "
-"desaktibatu \"Automatikoki detektatu inprimagailuak\", auto-detekzioa ez "
-"erabiltzeko. Erabili \"Aditu modua\" PrinterDrake-n, urruneko inprimagailu "
-"batean inprimatzea konfiguratu nahi baduzu eta zerrendan agertzen ez bada."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Automatikoki detektatu inprimagailuak"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Inprimagailu lokala"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7665,57 +7970,50 @@ msgstr ""
"lehenetsiak (paper-iturria, inprimatze-kalitatea...) aldatu nahi badituzu, "
"hautatu \"Inprimagailua\" Mandrake Kontrol Zentroko \"Hardwarea\" atalean."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Inprimagailuen detekzio automatikoa"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake-k lokalki konektatutako paraleloko edo USB inprimagailuak "
-"detekta ditzake automatikoki, baina sistema batzuetan auto-detekzioak "
-"BLOKEATU ETA HONDATU EGIN DITZAKE FITXATEGI-SISTEMAK! Beraz, ZUREA DA "
-"ARRISKUAREN ARDURA!\n"
-"\n"
-"Inprimagailuak automatikoki detektatu nahi dituzu?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Egin auto-detekzioa"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Ezarri inprimagailua eskuz"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probatu atakak"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "%s detektatua"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "\\/*%s ataka paraleloko inprimagailua"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "\\/*%s USB inprimagailua"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Sareko inprimagailua (TCP/socket-a)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT zerbitzariko inprimagailua"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7727,35 +8025,23 @@ msgstr ""
"baliokideak dira LPT1:, LPT2:..., lehen USB inprimagailua: /dev/usb/lp0, "
"bigarren USB inprimagailua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Gailua edo fitxategi-izena adierazi behar duzu!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Ez da inprimagailu lokalik aurkitu!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Sareko inprimagailuak soilik instalazioaren ondoren instala daitezke. "
-"Hautatu \"Hardwarea\" eta gero \"Inprimagailuak\" Mandrake Kontrol Zentroan."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Sareko inprimagailuak instalatzeko, hautatu \"Utzi\", hautatu \"Aditu modua"
-"\", eta egin klik \"Gehitu inprimagailu berria\" aukeran berriro."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Inprimagailu lokala"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7763,7 +8049,7 @@ msgstr ""
"Inprimagailu hau detektatu da automatikoki, zuk konfiguratu nahi duzuna ez "
"bada, idatzi gailuaren izena/fitxategi-izena"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7771,7 +8057,7 @@ msgstr ""
"Automatikoki detektatutako inprimagailuen zerrenda da hau. Hautatu "
"konfiguratu nahi duzuna edo idatzi gailuaren izena/fitxategi-izena"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7783,7 +8069,7 @@ msgstr ""
"baduzu konfigurazio pertsonalizatua, aldatu \"Eskuzko konfigurazioa"
"\"aukerara."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7795,7 +8081,7 @@ msgstr ""
"automatikoki egingo da. Inprimagailua ondo detektatu ez bada edo nahiago "
"baduzu konfigurazio pertsonalizatua, hautatu \"Eskuzko konfigurazioa\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7803,11 +8089,11 @@ msgstr ""
"Hautatu inprimagailua konektatuta dagoen ataka edo idatzi gailuaren izena/"
"fitxategi-izena"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7816,66 +8102,19 @@ msgstr ""
"lehen USB inprimagailua: /dev/usb/lp0, 2. USB inprimagailua: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Eskuzko konfigurazioa"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Zure inprimagailua funtzio anitzeko HP gailua da (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 eskanerrarekin), HP PhotoSmart P100 edo 1315 edo HP "
-"LaserJet 2200?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "HPOJ paketea instalatzen..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Gailua egiaztatzen eta HPOJ konfiguratzen..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "SANE paketea instalatzen..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Paketeak instalatzen..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Inprimagailu-ataka CUPSerako erabilgarri egiten..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Inprimagailuaren datu-basea irakurtzen..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Urruneko lpd inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7884,27 +8123,47 @@ msgstr ""
"ostalari-\n"
"izena eta zerbitzari horretako inprimagailu-izena eman behar dituzu."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Urruneko ostalari-izena"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Urruneko inprimagailu-izena"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Urruneko ostalari izena falta da!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Urruneko inprimagailu-izena falta da!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s detektatua"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Sarea abiarazten ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr " - \"%s\" Windows zerbitzaria, \"%s\" konpartitzea"
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "\"%s\" inprimagailuan inprimatzen"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7917,35 +8176,46 @@ msgstr ""
"konpartitze-izena eta erabiltzaile-izenak, pasahitzak eta lantalde-"
"informazioa ere."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB zerbitzariaren ostalaria"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB zerbitzariaren IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Konpartitze-izena"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Lantaldea"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Auto-detektatu"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Zerbitzari-izena edo zerbitzariaren IP eman behar da!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Samba konpartitze-izena falta da!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "SEGURTASUN OHARRA!"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7988,7 +8258,7 @@ msgstr ""
"koneksio motarekin Printdraken.\n"
"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8001,7 +8271,7 @@ msgstr ""
"lotura mota erabilizPrinterdrake-n.\n"
"\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8014,11 +8284,11 @@ msgstr ""
"Ziur zaude inprimagailu hau ezartzen jarraitu nahi duzula egiten ari zaren "
"moduan?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8030,51 +8300,70 @@ msgstr ""
"desberdina izatea!) eta baita atzitu nahi duzun inprimagailuaren inprimaketa-"
"ilararen izena eta erabiltzaile-izenak eta pasahitzak ere."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Inprimagailu-zerbitzaria"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Inprimaketa-ilararen izena"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP zerbitzari-izena falta da!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP ilara-izena falta da!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", \"%s\" TCP/IP ostalaria, %s ataka"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Inprimagailuaren ostalari-izena"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Inprimagailuaren ostalari izena falta da!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Inprimagailuaren ostalari-izena"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Inprimagailuaren URIa"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8084,11 +8373,11 @@ msgstr ""
"Foomatic zehaztapenak bete behar ditu. Kontuan izan spooler guztiek ez "
"dituztela URI mota guztiak onartzen."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Baliozko URI bat sartu behar da!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8097,23 +8386,27 @@ msgstr ""
"Azalpenaren eta Kokalekuaren eremuak ez dira nahitaez bete behar. "
"Erabiltzaileentzako iruzkinak dira."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Inprimagailuaren izena"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Kokalekua"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Inprimagailuaren datu-basea irakurtzen..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Inprimagailuaren datu-basea prestatzen..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Zure inprimagailu-modeloa"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8138,24 +8431,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Modeloa zuzena da"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Hautatu modeloa eskuz"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Inprimagailu-modeloaren hautapena"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Zein inprimagailu-modelo daukazu?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8169,7 +8462,7 @@ msgstr ""
"modeloa. Bilatu modelo egokia zerrendan kurtsorea okerreko modeloan edo "
"\"Inprimagailu gordinean\" badago."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8177,11 +8470,11 @@ msgstr ""
"Zure inprimagailua ez badago zerrendan, aukeratu bateragarria (ikus "
"inprimagailuaren eskuliburua) edo antzekoa den bat "
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI winprinter-en konfigurazioa"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8199,11 +8492,11 @@ msgstr ""
"funtzionatuko. Zure konexio-motaren ezarpena ez du kontuan hartuko "
"kontrolatzaileak."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet inprimagailuaren konfigurazioa"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8215,7 +8508,7 @@ msgstr ""
"zerbitzariak. Konektatu zure inprimagailua ataka lokal batera edo konfigura "
"ezazu konektatuta dagoen makinan."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8238,7 +8531,7 @@ msgstr ""
"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
"programa honekin."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8254,22 +8547,22 @@ msgstr ""
"Kontuan hartu inprimatzeko kalitatea oso handia bada askoz mantsoago "
"inprimatuko duela segurutik."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s aukerak osoko zenbakia izan behar du!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "%s aukerak zenbakia izan behar du!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "%s aukera barrutitik kanpo dago!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8278,11 +8571,11 @@ msgstr ""
"Inprimagailu hau (\"%s\")\n"
"lehenetsi nahi duzu?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Proba-orriak"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8295,39 +8588,39 @@ msgstr ""
"ateratzea ere. Gehienetan nahikoa izaten da proba-orri estandarra "
"inprimatzea."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Proba-orririk ez"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Inprimatu"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Proba-orri estandarra"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Proba-orri alternatiboa (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Proba-orri alternatiboa (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Argazkien proba-orria"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Ez inprimatu proba-orririk"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Proba-orria(k) inprimatzen..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8342,7 +8635,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8350,15 +8643,15 @@ msgstr ""
"Proba-orria(k) inprimagailura bidali dira.\n"
"Denbora pixka bat igaro liteke inprimatzen hasi arte.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Ongi egin du?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Inprimagailu \"gordina\""
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8372,7 +8665,7 @@ msgstr ""
"inprimagailua hautatzeko eta aukeren ezarpenak erraz aldatzeko erabiltzen "
"dira.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8382,8 +8675,8 @@ msgstr ""
"komandoa\" eremuan erabil ditzakezu ere, baina hor ez eman fitxategi-izena, "
"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8396,7 +8689,7 @@ msgstr ""
"ezarpenak. Gehitu nahi dituzun ezarpenak komando-lerroari, adib. \"%s "
"<fitxategia>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8407,7 +8700,7 @@ msgstr ""
"egin klik \"Inprimatzeko aukeren zerrenda\" botoian.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8415,7 +8708,7 @@ msgstr ""
"Hemen duzu inprimagailu honen inprimatzeko aukeren zerrenda:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8424,8 +8717,8 @@ msgstr ""
"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
"<fitxategia>\" komandoa.\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8435,7 +8728,7 @@ msgstr ""
"komandoa\" eremuan ere erabil dezakezu. Baina hor ez eman fitxategi-izena, "
"inprimatu behar den fitxategia aplikazioak ematen baitu.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8443,7 +8736,7 @@ msgstr ""
"Uneko inprimagailuaren aukera erabilgarrien zerrenda eskuratzeko, egin klik "
"\"Inprimatzeko aukeren zerrenda\" botoian."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8452,7 +8745,7 @@ msgstr ""
"Fitxategi bat komando-lerrotik (terminal-leihoa) inprimatzeko, erabili \"%s "
"<fitxategia>\" komandoa edo \"%s <fitxategia>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8468,7 +8761,7 @@ msgstr ""
"berehala etengo ditu bertan klik egitean. Papera trabatzen denean eta "
"horrelakoetan erabili ohi da.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8481,45 +8774,45 @@ msgstr ""
"daitezke. Aski da nahi diren ezarpenak komando-lerroan gehitzea, adib.: \"%s "
"<fitxategia>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "\"%s\" inprimagailuan inprimatzen"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Itxi"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Inprimatzeko aukeren zerrenda"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8537,9 +8830,9 @@ msgstr ""
"\n"
"Ez erabili \"scannerdrake\" gailu honekin!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8550,17 +8843,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Inprimagailu-datuak irakurtzen..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Transferitu inprimagailu-konfigurazioa"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8576,7 +8869,7 @@ msgstr ""
"dira transferituko.\n"
"Ilara guztiak ezin dira transferitu, ondorengo arrazoiak direla eta:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8584,7 +8877,7 @@ msgstr ""
"CUPSek ez ditu onartzen Novell zerbitzarietako inprimagailuak edo datuak "
"libre osatutako komando batean bidaltzen dituztenak.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8592,11 +8885,11 @@ msgstr ""
"PDQk inprimagailu lokalak, urruneko LPD inprimagailuak eta Socket/TCP "
"inprimagailuak soilik onartzen ditu.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDk eta LPRng-ek ez dute IPP inprimagailurik onartzen.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8604,7 +8897,7 @@ msgstr ""
"Gainera, programa honen edo \"foomatic-configure\"ren bidez sortu ez diren "
"ilarak ezin dira transferitu."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8614,7 +8907,7 @@ msgstr ""
"Halaber, fabrikatzaileek emandako PPD fitxategiekin edo jatorrizko CUPS "
"kontrolatzaileekin konfiguratutako inprimagailuak ezin dira transferitu."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8624,15 +8917,15 @@ msgstr ""
"Markatu transferitu nahi dituzun inprimagailuak eta sakatu\n"
"\"Transferitu\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Ez transferitu inprimagailuak"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Transferitu"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8643,12 +8936,12 @@ msgstr ""
"Sakatu \"Transferitu\" gainidazteko.\n"
"Beste izen bat idatz dezakezu, edo inprimagailu hori saltatu."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Inprimagailu-izenak letrak, zenbakiak eta azpimarra soilik eduki behar ditu"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8657,16 +8950,16 @@ msgstr ""
"\"%s\" inprimagailua badago lehendik ere,\n"
"bere konfigurazioa gainidatzi nahi duzu?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Inprimagailu-izen berria"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s transferitzen..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8675,29 +8968,29 @@ msgstr ""
"Zure lehengo inprimagailu lehenetsia (\"%s\") transferitu duzu, Inprimagailu "
"lehenetsia izan behar du %s inprimatze-sistema berrian ere?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Inprimagailuaren datuak freskatzen..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Urruneko inprimagailu baten konfigurazioa"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Sarea abiarazten ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Konfiguratu sarea orain"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Sare-funtzionalitatea ez dago konfiguratuta"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8709,11 +9002,11 @@ msgstr ""
"sarea konfiguratu gabe, ezin izango duzu orain konfiguratzen ari zaren "
"inprimagailua erabili. Zer egin nahi duzu?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Jarraitu sarea konfiguratu gabe"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8728,7 +9021,7 @@ msgstr ""
"\"Konexioa\" atalean, eta gero konfiguratu inprimagailua, Mandrake Kontrol "
"Zentroan bertan, \"Hardwarea\"/\"Inprimagailua\" atalean."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8738,24 +9031,24 @@ msgstr ""
"konfigurazioa eta hardwarea ondo dauden. Gero saiatu berriro urruneko "
"inprimagailua konfiguratzen."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Inprimatze-sistema berrabiarazten ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "handia"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoidea"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Inprimatze-sisteman segurtasun-maila %s instalatzen"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8780,11 +9073,11 @@ msgstr ""
"\n"
"Makina honetan konfiguratu nahi duzu inprimaketa?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Abioan inprimatze-sistema abiarazi"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8805,63 +9098,63 @@ msgstr ""
"\n"
"Inprimatze-sistema automatikoki hastea berriro aktibatu nahi duzu?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Instalatutako softwarea egiaztatzen..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "LPRng kentzen..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "LPD kentzen..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Hautatu inprimagailuaren spooler-a"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Zein inprimatze-sistema (spooler) erabili nahi duzu?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "\"%s\" inprimagailua ezartzen..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Foomatic instalatzen ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Inprimagailuaren aukerak"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake prestatzen..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Aplikazioak konfiguratzen..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Inprimaketa konfiguratu nahi duzu?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Inprimatze-sistema: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8873,7 +9166,7 @@ msgstr ""
"edo urruneko CUPS zerbitzari bateko inprimagailu bat Star Office/OpenOffice."
"org-rentzat erabilgarri egiteko."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8883,32 +9176,28 @@ msgstr ""
"bat lehenesteko edo informazioa ikusteko, egin klik bikoitza inprimagailu "
"batean."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Freskatu inprimagailu-zerrenda (urruneko CUPS inprimagailuak ikusteko)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Aldatu inprimatzeko sistema"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modu normala"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Irten"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Beste inprimagailu bat konfiguratu nahi duzu?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Aldatu inprimagailuaren konfigurazioa"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8917,104 +9206,104 @@ msgstr ""
"%s inprimagailua\n"
"Zer da inprimagailu honetan aldatu nahi duzuna?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Egin!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Inprimagailuaren konexio-mota"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Inprimagailuaren izena, azalpena, kokalekua"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Inprimagailuaren fabrikatzailea, modeloa, kontrolatzailea"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Inprimagailuaren fabrikatzailea, modeloa"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Ezarri inprimagailu hau lehenetsi gisa"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Gehitu inprimagailu hau Star Office/OpenOffice.org-n"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Kendu inprimagailu hau Star Office/OpenOffice.org-tik"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Inprimatu proba-orriak"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Ikasi inprimagailua erabiltzen"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Kendu inprimagailua"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "\"%s\" inprimagailu zaharra ezabatzen..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Inprimagailu lehenetsia"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "\"%s\" inprimagailua lehenetsi gisa ezarri da orain."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Star Office/OpenOffice.org-n inprimagailua gehitzen"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
"\"%s\" inprimagailua behar bezala gehitu da Star Office/OpenOffice.org-n."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-n gehitzean."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Inprimagailua Star Office/OpenOffice.org-tik kentzen"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"\"%s\" inprimagailua behar bezala kendu da Star Office/OpenOffice.org-tik."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
"Huts egin du \"%s\" inprimagailua Star Office/OpenOffice.org-tik kentzean."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "\"%s\" inprimagailua kendu nahi duzu?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "\"%s\" inprimagailua ezabatzen..."
@@ -9069,8 +9358,9 @@ msgstr ""
"Utzi hutsik ez baduzu ftp proxy-rik nahi"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "URLaren hasieran 'ftp:' jarri behar du"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URLaren hasieran 'http:' jarri behar du"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9119,42 +9409,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, baina\n"
-"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
-"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
-"Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen dituen \n"
-"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
-"soila bada, hobe duzu maila apalagoa."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Aukera aurreratuak"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Aukerak"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
@@ -9466,7 +9720,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fitxategi-konpartitzea"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Sistema"
@@ -9596,7 +9850,7 @@ msgstr ""
"konpilatzailearen ahalmen osoa eta iturburu irekiko garapen-ingurune onenak"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake-ren Kontrol Zentroa"
@@ -9716,20 +9970,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9737,159 +9991,159 @@ msgstr ""
"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
"Partizio txarrak garbitzen saiatuko naiz"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Mandrake Terminal Zerbitzariaren Ezarpena"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
msgstr "Gaitu Zerbitzaria"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
msgstr "Ezgaitu Zerbitzaria"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
msgstr "Abiatu Zerbitzaria"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
msgstr "Gelditu Zerbitzaria"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr "Etherboot Disketea/ISO"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr "Sare Abiapen Irudiak"
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
msgstr "Gehitu/Ezabatu erabiltzaileak"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr "Gehitu/Ezabatu Bezeroak"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Laguntza"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Abiapen Disketea"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr "Abiapen ISO"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr "Eraiki Kernel Osoa -->"
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr "Honek minutu batzuk beharko ditu."
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr "Ez da kernelik hautatu!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr "Eraiki NIC Bakarri -->"
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Ez da nic batere hautatu!"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr "Eraiki Kernel Guztiak -->"
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
msgstr "<-- Ezabatu"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
msgstr "NBI Guztiak Ezabatu"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
msgstr "Gehitu erabiltzailea -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr "<-- Ezabatu Erabiltzailea"
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr "Gehitu Bezeroa -->"
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr "<-- Ezabatu Bezeroa"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
msgstr "dhcpd Ezarpena..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr "Idatzi Ezarpena"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
msgstr "Mesedez sartu disketea:"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr "Ezin izan da disketea atzitu!"
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr "Disketea kendu dezakezu orain"
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
msgstr "Ez dago diskete-unitate erabilgarririk!"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO irudia %s da"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
#, fuzzy
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Zerbaitek hutsegin du!"
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "\"/etc/dhcpd.conf\" sortu behar da lehenbizi!"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Errorea!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ezin da aurkitu `%s' imajina-fitxategia, eta beharrezkoa da."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Instalazio automatikoaren konfiguratzailea"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9916,11 +10170,11 @@ msgstr ""
"\n"
"Jarraitu nahi duzu ?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Urrats automatikoen konfigurazioa"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9928,11 +10182,11 @@ msgstr ""
"Aukeratu urrats bakoitzean instalazioa errepikatuko den, ala eskuz egingo "
"duzun"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr "Auto-instalazioko disketea sortzen"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9944,12 +10198,12 @@ msgstr ""
"\n"
"Auto-instalazioko parametroak ezkerreko sekzioetan daude erabilgarri"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Zorionak!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9957,19 +10211,32 @@ msgstr ""
"Disketea behar bezala sortu da.\n"
"Orain zure instalazioa errepika dezakezu."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Instalazio automatikoa"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Gehitu elementu bat"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Kendu azken elementua"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9979,7 +10246,7 @@ msgstr ""
" DrakBackup-en berri-ematea \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9991,7 +10258,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10003,31 +10270,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "progresioa guztira"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Disko gogorraren babeskopia fitxategiak... "
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Erabiltzaile-fitxategien babeskopia... "
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Disko gogorraren babeskopia egiten..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Beste fitxategi batzuen babeskopia... "
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Erabili zinta babeskopia egiteko"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -10035,7 +10366,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -10044,7 +10375,7 @@ msgstr ""
"FTPk bidalitako fitxategi-zerrenda: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -10055,34 +10386,38 @@ msgstr ""
" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
"bidez.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr " Errorea posta bidaltzean. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Fitxategi-hautapena"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10090,26 +10425,27 @@ msgstr ""
"\n"
"Hautatu behar dituzun aukera guztiak.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Sistema-fitxategien babeskopia. ( /etc direktorioa )"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10117,40 +10453,61 @@ msgstr ""
"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
"ahal izango duzu."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Ez sartu arakatzailearen cache-a"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Kendu hautatutakoak"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Erabiltzaileak"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Erabili FTP konexioa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Transferitu"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Idatzi ostalariaren izena edo IPa."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10159,43 +10516,69 @@ msgstr ""
"Adierazi ostalariko direktorioa\n"
"babeskopia jartzeko."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Sartu saioa hasteko izena"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Sartu pasahitza"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Gogoratu pasahitza"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+#, fuzzy
+msgid "Need hostname, username and password!"
+msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Aukeratu CDko lekua"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Hautatu instalazio-abioa gehitu nahi\n"
-" baduzu CDan."
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Transferitu"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10203,21 +10586,36 @@ msgstr ""
"Adierazi CD idazgailuaren gailu-izena \n"
" adib.: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Hautatu fitxategia"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10225,57 +10623,57 @@ msgstr ""
"Adierazi Drakbackup-en gehieneko\n"
" tamaina "
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Erabili kuota babeskopia-fitxategientzat"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Sarea"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Mota"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "orduero"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "egunero"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "astero"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "hilero"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Erabili daemon-a"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10283,7 +10681,7 @@ msgstr ""
"Aukeratu babeskopiak egiteko \n"
"maiztasuna"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10291,7 +10689,7 @@ msgstr ""
"Aukeratu babeskopia \n"
"egiteko euskarria."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10299,59 +10697,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Ziurtatu cron daemon-a zerbitzuetan sartuta daukazula."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Zer"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Non"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Noiz"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Aukera gehiago"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr " Drakbackup-en konfigurazioa"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Aukeratu non egin nahi duzun babeskopia"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "disko gogorrean"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "sarean zehar"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Aukeratu zeren kopia egin nahi duzun"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Sistemaren babeskopia "
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Erabiltzaileen babeskopia"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Hautatu erabiltzailea eskuz"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10359,7 +10769,7 @@ msgstr ""
"\n"
"Babeskopien iturburua: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10367,7 +10777,7 @@ msgstr ""
"\n"
"- Sistema-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10375,7 +10785,7 @@ msgstr ""
"\n"
"- Erabiltzaile-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10383,7 +10793,7 @@ msgstr ""
"\n"
"- Bestelako fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10392,22 +10802,32 @@ msgstr ""
"\n"
"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Sagu-gailua: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10416,12 +10836,12 @@ msgstr ""
"\n"
"- Gorde FTPan, ostalari honetan : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10430,7 +10850,7 @@ msgstr ""
"\n"
"- Gorde FTPan, ostalari honetan : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10439,7 +10859,7 @@ msgstr ""
"\t\t erabiltzaile-izena: %s\n"
"\t\t bide-izena: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10447,19 +10867,19 @@ msgstr ""
"\n"
"- Aukerak:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tEz sartu sistema-fitxategiak\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBabeskopietan erabili tar eta gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10468,41 +10888,41 @@ msgstr ""
"\n"
"- Daemon-ean (%s) sartzen da :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t Disko gogorra.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROMa.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\tSSH bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10510,7 +10930,7 @@ msgstr ""
"Leheneratu beharreko datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10518,135 +10938,132 @@ msgstr ""
"Hondatutako datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Desautatu edo kendu hurrengo aldian."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Babeskopien fitxategiak hondatuta daude"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Hautatu dituzun datu guztiak "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " behar bezala leheneratu dira hona: %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " leheneratzeko konfigurazioa "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Ados, leheneratu beste fitxategiak"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Kopiatu sistema-fitxategiak lehenago:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "aukeratu leheneratzeko data"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Erabili disko gogorra babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP konexioa"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Konexio segurua"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Leheneratu disko gogorretik"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Hautatu beste euskarri bat leheneratzeko"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Beste euskarri bat"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Leheneratu sistema"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Leheneratu erabiltzaileak"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Leheneratu bestelakoak"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "hautatu leheneratzeko bidea ( / ordez)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Leheneratu babeskopia guztiak."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Leheneratze pertsonalizatua"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Aurrekoa"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorde"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Egin babeskopia"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Leheneratu"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Hurrengoa"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10654,9 +11071,9 @@ msgstr ""
"Egin babeskopia leheneratu aurretik...\n"
" edo egiaztatu gordetzeko bidea zuzena dela."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10664,14 +11081,14 @@ msgstr ""
" berri emateko mezua ez da bidali\n"
" Konfiguratu posta-bidalketa"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ondorengo pakete hauek instalatuko dira"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10680,19 +11097,19 @@ msgstr ""
"Errorea FTP bidez fitxategia bidaltzean.\n"
" Zuzendu FTP konfigurazioa."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Hautatu leheneratzeko datuak..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Hautatu babeskopiaren euskarria..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Hautatu babeskopia egiteko datuak..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10700,75 +11117,60 @@ msgstr ""
"Ez da konfigurazio-fitxategirik aurkitu \n"
"egin klik Morroia-n edo Aurreratua-n."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Garatzen... itxaron."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Erabiltzaile-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Bestelako fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Guztizko progresioa"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "fitxategiak FTP bidez bidaltzen"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Fitxategiak bidaltzen..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "CDROMean gehitzeko datu-zerrenda"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Idatzi CD idazgailuaren abiadura"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Idatzi zure CD idazgailuaren izena (adib.: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Hautatu instalazio-abioa gehitu nahi baduzu CDan."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Egin babeskopia konfigurazio-fitxategitik"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Ikusi babeskopiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Morroiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Konfigurazio aurreratua"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Egin babeskopia orain"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10779,7 +11181,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10828,7 +11230,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10842,7 +11244,7 @@ msgstr ""
" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10866,7 +11268,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10917,21 +11319,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10967,18 +11369,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -11008,7 +11410,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:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11084,7 +11486,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11102,7 +11504,7 @@ msgstr ""
"zerbitzarira bidali aurretik.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11124,7 +11526,7 @@ msgstr ""
"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
"eskuz ez aldatzea.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11199,84 +11601,111 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%sren instalazioak huts egin du. Errore hau gertatu da:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake Akatsak Jakinarazteko Tresna"
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr "Lehen Aldikorako Morroia"
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr "Sinkronizazio tresna"
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr "Tresna Autonomoak"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
msgstr "Mandrake Online"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
msgstr "Menudrake"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
msgstr "Mseg"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
msgstr "Urruneko Agintea"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr "Software Kudeatzailea"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr "Windows Migrazio tresna"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
msgstr "Userdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
msgstr "Ezarpen Morroia"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
msgstr "Aplikazioa:"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr "Paketea: "
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr "Kernela:"
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
msgstr "Bertsioa: "
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
#, fuzzy
msgid ""
"\n"
@@ -11296,45 +11725,45 @@ msgstr ""
"erakusten den informazioa zerbitzari hartara bidaliko da\n"
"\n"
-#: ../../standalone/drakbug_.c:101
-msgid "Not installed"
-msgstr "Instalatu gabe"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
msgid "Report"
msgstr "Txostena"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "Instalatu gabe"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr "Bugzilla morroira konektatzen ..."
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Sare-konfigurazioa (%d moldagailuak)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profila: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Ezabatu profila..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Ezabatu beharreko profila:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Profil berria..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11342,95 +11771,95 @@ msgstr ""
"Sortu beharreko profilaren izena (profil berria oraingoaren kopia gisa "
"sortuko da) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ostalari-izena: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Interneterako sarbidea"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Mota:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Atebidea:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interfazea:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Egoera:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Itxaron"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Konfiguratu Interneterako sarbidea..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Sare lokalaren konfigurazioa (LAN)"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Kontrolatzailea"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfazea"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokoloa"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Egoera"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Konfiguratu sare lokala..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Egin klik hemen morroia abiarazteko ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Morroia..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Aplikatu"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Itxaron... Konfigurazioa aplikatzen"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektatuta"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Konektatu gabe"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Konektatu..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Deskonektatu..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11438,7 +11867,7 @@ msgstr ""
"Kontuz, beste Internet konexio bat detektatu da, agian zure sarea erabiltzen "
"ariko da"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11446,36 +11875,36 @@ msgstr ""
"Ez duzu interfaze konfiguraturik.\n"
"Konfigura itzazu lehendabizi, 'Konfiguratu'n klik eginda"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Sare lokalaren konfigurazioa (LAN)"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "%s moldagailua: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Abioko protokoloa"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Abioan abiaraztekoa"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP bezeroa"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "aktibatu orain"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "desaktibatu orain"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11483,7 +11912,7 @@ msgstr ""
"Interfaze hau ez dago konfiguratuta.\n"
"Abiarazi konfigurazio-morroia leiho nagusian"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11491,121 +11920,121 @@ msgstr ""
"Ez duzu Interneteko konexiorik.\n"
"Sortu bat lehendabizi, 'Konfiguratu'n klik eginda"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Interneteko konexioaren konfigurazioa"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Interneteko konexioaren konfigurazioa"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Konexio-mota: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametroak"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Atebidea"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet txartela"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP bezeroa"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "erabilera: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulu-izena"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Tamaina"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "abioko disketea sortu"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "lehenetsia"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy-ren errorea: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "nukleo-bertsioa"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Orokorra"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Aditu area"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "aukerako mkinitrd argumentuak"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Gehitu modulua"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "behartu"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "beharrezkoa bada"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "jaramonik ez scsi moduluei"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "jaramonik ez raid moduluei"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Kendu modulua"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Irteera"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Sortu disketea"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Egiaztatu %s gailuak euskarria baduela"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11614,12 +12043,12 @@ msgstr ""
"Ez dago euskarririk edo idazketarako babestuta dago %s gailuan.\n"
"Sartu bat mesedez."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ezin da bikoiztu: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11630,99 +12059,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Bilatu instalatutako letra-tipoak"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Desautatu instalatutako letra-tipoak"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "analizatu letra-tipo guztiak"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "ez da letra-tiporik aurkitu"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "eginda"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "ezin izan da letra-tiporik aurkitu muntatutako partizioetan"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Hautatu berriro letra-tipo egokiak"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "ezin izan da letra-tiporik aurkitu.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Bilatu letra-tipoak instalatutakoen zerrendan"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Letra-tipoen kopia"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "True Type letra-tipoen instalazioa"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "itxaron... ttmkfdir egin bitartean..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "True Type instalazioa eginda"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Letra-tipoen bihurketa"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "type1inst eraikitzen"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript erreferentzia"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf letra-tipoen bihurketa"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm letra-tipoen bihurketa"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Ezabatu aldi baterako fitxategiak"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Berrabiarazi XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Ezabatu letra-tipoen fitxategiak"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs berrabiarazi"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11736,108 +12165,112 @@ msgstr ""
"-Letra-tipoak instalatzeko ohiko era erabil dezakezu. Oso gutxitan, akastun "
"letra-tipoek zure X Zerbitzaria blokea dezakete."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Letra-tipoen inportazioa"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Hartu Windows letra-tipoak"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Desinstalatu letra-tipoak"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Aukera aurreratuak"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Letra-tipoen zerrenda"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Hautatu letra-tipoak onartuko dituzten aplikazioak :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Inprimagailu generikoak"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Hautatu letra-tipoen fitxategia edo direktorioa eta egin klik 'Gehitu'n"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Instalatu zerrenda"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "egin klik hemen, ziur bazaude."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "egin klik hemen, ziur ez bazaude."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Desautatutako guztiak"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Hautatutako guztiak"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Kendu zerrenda"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Hasierako probak"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Kopiatu zure sistemako letra-tipoak"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Instalatu eta bihurtu letra-tipoak"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Posta-instalazioa"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Kendu zure sistemako letra-tipoak"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Posta-desinstalazioa"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Interneteko konexioa konpartitzea"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Barkatu, 2.4 kernelak onartzen ditugu soilik."
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneteko konexioa konpartitzea gaituta dago orain"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11849,31 +12282,31 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "desgaitu"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "itxi"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "birkonfiguratu"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Zerbitzariak desgaitzen..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Interneteko konexioa konpartitzea desgaituta dago orain."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneteko konexioa konpartitzea desgaituta dago orain"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11885,19 +12318,19 @@ msgstr ""
"\n"
"Zer egin nahi duzu?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "gaitu"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Zerbitzariak gaitzen..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Interneteko konexioa konpartitzea gaituta dago orain."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11913,21 +12346,21 @@ msgstr ""
"Kontuan hartu: Sare-moldagailu dedikatu bat behar duzu sare lokala (LAN) "
"konfiguratzeko."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "%s interfazea (%s modulua erabiliz)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "%s interfazea"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Ez dago sare-moldagailurik zure sisteman!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11935,11 +12368,11 @@ msgstr ""
"Zure sisteman ez da ethernet sare-moldagailurik detektatu. Exekutatu "
"hardwarea konfiguratzeko tresna."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Sare-interfazea"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11954,17 +12387,17 @@ msgstr ""
"\n"
"Zure sare lokala moldagailu horrekin konfiguratzera noa."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Sareko interfazea konfiguratuta dago"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11979,15 +12412,15 @@ msgstr ""
"\n"
"Eskuz egin dezakezu, baldin eta zertan zabiltzan badakizu."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Birkonfigurazio automatikoa"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Erakutsi uneko interfaze-konfigurazioa"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12004,7 +12437,7 @@ msgstr ""
"IP atribuzioa: %s\n"
"Kontrolatzailea: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12023,33 +12456,33 @@ msgstr ""
"Gainera, zure interfazea eta DHCP zerbitzaria (bir)konfigura ditzaket.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C klaseko sare lokala"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "DHCP zerbitzariaren IPa"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Birkonfiguratu interfazea eta DHCP zerbitzaria"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Sare lokalak ez du `.0' amaieran; irteten. "
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"LAN helbide-gatazka potentziala aurkitu da %s(r)en uneko konfigurazioan!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Suebaki-konfigurazioa detektatu da!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -12057,21 +12490,21 @@ msgstr ""
"Kontuz! Lehendik dagoen suebaki-konfigurazio bat detektatu da. Beharbada "
"eskuz konponketa batzuk egin beharko dituzu instalazioaren ondoren."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfiguratzen..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Script-ak konfiguratzen, softwarea instalatzen, zerbitzariak abiarazten..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Arazoa %s paketea instalatzean"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12081,23 +12514,23 @@ msgstr ""
"Orain Interneteko konexioa konparti dezakezu sare lokaleko beste ordenagailu "
"batzuekin, sare-konfigurazio automatikoa (DHCP) erabiliz."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurazioa eginda dago, baina orain desgaituta dago."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurazioa eginda dago, eta orain gaituta dago."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneteko konexioa konpartitzea ez da inoiz konfiguratu."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Interneteko konexioa konpartitzeko konfigurazioa"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12112,20 +12545,14 @@ msgstr ""
"\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrol Zentroa"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Aukeratu erabili nahi duzun tresna"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
+#, fuzzy
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12144,67 +12571,71 @@ msgstr ""
"\n"
"XawTV instalatu dezakezu kontsolatik root bezala \"urpmi xawtv\" idatzita."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kablea)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "AEB (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "AEB (kablea)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "AEB (kablea-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Txina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Japonia (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japonia (kablea)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Europa Ekialdea"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "Frantzia [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Europa Mendebaldea"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Zeelanda Berria"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Hegoafrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -12212,35 +12643,35 @@ msgstr ""
"Idatzi\n"
"zure TB araua eta estatua"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TB araua :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Area :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "TB kanalak bilatzen..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "TB kanalak bilatzen"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "Errore bat izan da TB kateak bilatzerakoan"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV ez dago instalatuta!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Egun ona izan!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Orain xawtv erabili dezakezu (X Window barruan) !\n"
@@ -12272,11 +12703,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "erabilera: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Aukeratu zure teklatu-diseinua."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Atzera-teklak Ezabatu itzultzea nahi duzu kontsolan?"
@@ -12300,7 +12731,7 @@ msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
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:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12408,22 +12839,25 @@ msgstr "Egutegia"
msgid "Content of the file"
msgstr "Fitxategiaren edukia"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Posta/SMSren abisua"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "itxaron, fitxategia analizatzen: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Posta/SMSren abisuaren konfigurazioa"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12431,109 +12865,110 @@ msgstr ""
"\n"
"Hemen zure abisu-sistema konfiguratu ahal izango duzu.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domeinu-izena:"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "Gelditu Zerbitzaria"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "Abiatu Zerbitzaria"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS zerbitzaria"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Zerbitzuak"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Inprimagailu-zerbitzaria"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "zerbitzuaren ezarpena"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Hautatutako zerbitzuetakoren bat martxan ez badago, abisua jasoko duzu"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "kargatzeko ezarpenak"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Karga balio hau baino handiagoa bada, abisua jasoko duzu"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "abisu-konfigurazioa"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Konfiguratu abisuak jasotzeko modua"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Sartu pasahitza"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Gorde honela.."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Aukeratu sagu-mota."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "ez da serieko USBrik aurkitu\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Hirugarren botoia emulatu?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Inprimagailu-datuak irakurtzen..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Gailuak detektatzen..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Probatu atakak"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s aurkitu da hemen: %s. Konfiguratu nahi duzu ?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Hautatu eskaner bat"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "%s eskaner hori ez da onartzen"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12542,11 +12977,11 @@ msgstr ""
"Scannerdrake-k ezin izan du zure %s eskanerra detektatu.\n"
"Mesedez aukeratu zure eskanerra konektatuta dagoen gailua"
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "Aukeratu gailua"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12557,7 +12992,7 @@ msgstr ""
"Mandrake Kontrol Zentroko Hardwarearen ataletik abiaraz dezakezu "
"printerdrake."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12582,15 +13017,15 @@ msgstr ""
"\n"
"%s motako zenbait gailu gehitu dira:\n"
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Suebakiaren konfigurazioa"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Suebakiaren konfigurazioa"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12602,7 +13037,7 @@ msgstr ""
"Jadanik konfiguratu duzu suebaki bat.\n"
"Suebakia aldatzeko edo kentzeko, egin klik 'Konfiguratu'n"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12852,48 +13287,48 @@ msgstr "Ezin da %s ireki: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Ezin da %s idazteko ireki: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Ez, ez dut DHCP behar"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Bai, DHCP behar dut"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Ez, ez dut NTP behar"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Bai, NTP behar dut"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Ez gorde"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Gorde eta irten"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Suebakia konfiguratzeko morroia"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Ez (egin suebakia Internetetik)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Bai (onartu hau suebakian zehar)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Itxaron... instalatutako paketeak egiaztatzen"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12902,6 +13337,10 @@ msgstr ""
"Huts egin du beharrezko pakete hauek instalatzean: %s eta Bastille.\n"
" Saiatu eskuz instalatzen."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -12951,6 +13390,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux eta Software libreari buruzko liburuak eta azalpenak"
@@ -13040,10 +13483,6 @@ msgid "Office Workstation"
msgstr "Bulegoko lan-estazioa"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Zerbitzaria"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etab."
@@ -13109,6 +13548,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Interneteko atebidea"
@@ -13140,6 +13583,204 @@ msgstr "Multimedia - CD grabatzea"
msgid "Scientific Workstation"
msgstr "Lan-estazio zientifikoa"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Maila hau kontuz erabili behar da. Sistema erabilerrazagoa izango da, "
+#~ "baina\n"
+#~ "oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin "
+#~ "edo \n"
+#~ "Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Segurtasun-maila honekin, sistema hau erabil liteke zerbitzari gisa.\n"
+#~ "Segurtasun hau nahikoa da sistema bezero askoren konexioak onartzen "
+#~ "dituen \n"
+#~ "zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko "
+#~ "bezero soila bada, hobe duzu maila apalagoa."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Aukerak"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Segurtasuna"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "CDROMean gehitzeko datu-zerrenda"
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Aukeratu CDko lekua"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Idatzi CD idazgailuaren abiadura"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Idatzi zure CD idazgailuaren izena (adib.: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Hautatu instalazio-abioa gehitu nahi baduzu CDan."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "URLaren hasieran 'ftp:' jarri behar du"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Hautatu instalazio-abioa gehitu nahi\n"
+#~ " baduzu CDan."
+
+#~ msgid "Windows PDC"
+#~ msgstr "Windows PDC"
+
+#~ msgid "PDC Server Name"
+#~ msgstr "PDC Zerbitzari Izena"
+
+#~ 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 /"
+#~ "add and reboot the server"
+#~ msgstr ""
+#~ "Honek W2K PDC batentzako lan egin dezan, seguruenik administradoreak "
+#~ "exekutatu beharko du: C:\\>net localgroup \"Pre-Windows 2000 Compatible "
+#~ "Acess\" everyone /add eta berrabiatu zerbitzaria"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Ongi etorri inprimagailuak instalatzeko morroira\n"
+#~ "\n"
+#~ "Morroi honen bidez, ordenagailuarekin konektatutako inprimagailuak "
+#~ "instalatzeko laguntza jasoko duzu.\n"
+#~ "\n"
+#~ "Konektatu inprimagailua ordenagailuarekin eta piztu ezazu. Aurrera "
+#~ "jarraitzeko, egin klik \"Hurrengoa\"n, eta instalazioa bertan behera "
+#~ "uzteko egin klik \"Utzi\"n .\n"
+#~ "\n"
+#~ "Ordenagailu batzuk kraskatu egin daitezke inprimagailuen auto-detekzioan, "
+#~ "desaktibatu \"Automatikoki detektatu inprimagailuak\", auto-detekzioa ez "
+#~ "erabiltzeko. Erabili \"Aditu modua\" PrinterDrake-n, urruneko "
+#~ "inprimagailu batean inprimatzea konfiguratu nahi baduzu eta zerrendan "
+#~ "agertzen ez bada."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Inprimagailuen detekzio automatikoa"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake-k lokalki konektatutako paraleloko edo USB inprimagailuak "
+#~ "detekta ditzake automatikoki, baina sistema batzuetan auto-detekzioak "
+#~ "BLOKEATU ETA HONDATU EGIN DITZAKE FITXATEGI-SISTEMAK! Beraz, ZUREA DA "
+#~ "ARRISKUAREN ARDURA!\n"
+#~ "\n"
+#~ "Inprimagailuak automatikoki detektatu nahi dituzu?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Ezarri inprimagailua eskuz"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Sareko inprimagailuak soilik instalazioaren ondoren instala daitezke. "
+#~ "Hautatu \"Hardwarea\" eta gero \"Inprimagailuak\" Mandrake Kontrol "
+#~ "Zentroan."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Sareko inprimagailuak instalatzeko, hautatu \"Utzi\", hautatu \"Aditu "
+#~ "modua\", eta egin klik \"Gehitu inprimagailu berria\" aukeran berriro."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Zure inprimagailua funtzio anitzeko HP gailua da (OfficeJet, PSC, "
+#~ "LaserJet 1100/1200/1220/3200/3300 eskanerrarekin), HP PhotoSmart P100 edo "
+#~ "1315 edo HP LaserJet 2200?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "HPOJ paketea instalatzen..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Gailua egiaztatzen eta HPOJ konfiguratzen..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "SANE paketea instalatzen..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Paketeak instalatzen..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Funtzio anitzeko HP gailuan eskaneatzen"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Inprimagailu-ataka CUPSerako erabilgarri egiten..."
+
+#~ msgid "Control Center"
+#~ msgstr "Kontrol Zentroa"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Aukeratu erabili nahi duzun tresna"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Konfiguratu abisuak jasotzeko modua"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "ez da serieko USBrik aurkitu\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck-k huts egin du %d irteera-kodearekin edo %d seinalearekin"
@@ -13295,9 +13936,6 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Setting security level"
#~ msgstr "Segurtasun-maila ezartzen"
-#~ msgid "Graphics card"
-#~ msgstr "Txartel grafikoa"
-
#~ msgid "Select a graphics card"
#~ msgstr "Hautatu txartel grafiko bat"
@@ -13415,6 +14053,3 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Setting security options"
#~ msgstr "Segurtasun aukerak ezartzen"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Aukeratu segurtasun-maila"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index c377124d8..a30bd944c 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy VERSION\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
@@ -58,11 +58,11 @@ msgstr "Valitse X-palvelin"
msgid "X server"
msgstr "X-palvelin"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Monen näytön asettaminen"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -70,44 +70,44 @@ msgstr ""
"Järjestelmäsi tukee monen näytön laitteistokokoonpanoa.\n"
"Mitä haluat tehdä?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Valitse näytönohjaimen muistin määrä"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFreen asentaminen"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Mitä versiota XFree-serveristä haluat käyttää?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Aseta kaikki näytöt erikseen"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Käytä Xinerama-laajennusta"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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 myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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 myös XFree %s:ssa, jossa on mahdollisesti parempi 2D-tuki."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,11 +149,57 @@ msgstr ""
"Näytönohjaimelle on olemassa laitteistokiihdytetyt 3D-ajurit XFree %s:ssa.\n"
"HUOMAA, ETTÄ TUKI ON KOKEELLINEN JA VOI JUMITTAA TIETOKONEESI."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (näytönohjaimen ajurin asennus)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Näytönohjain"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Näyttö"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resoluutio"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Lopeta"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -166,32 +212,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Valitse monitori"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Näyttö"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Yleinen"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Peruuta"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -214,11 +256,11 @@ msgstr ""
"vaakavirkistystaajuus\n"
"on suurempi kuin oman näyttösi. Jos epäröit, valitse pienempi taajuus."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Vaakavirkistystaajuus"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Pystyvirkistystaajuus"
@@ -242,57 +284,42 @@ msgstr "16 miljoonaa väriä (24 bittiä)"
msgid "4 billion colors (32 bits)"
msgstr "4 miljardia väriä (32 bittiä)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resoluutiot"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resoluutio"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Valitse resoluutio ja värisyvyys"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Näytönohjain: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Peruuta"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Haluatko kokeilla asetuksia?"
@@ -301,71 +328,71 @@ msgstr "Haluatko kokeilla asetuksia?"
msgid "Test of the configuration"
msgstr "Kokeile asetuksia"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Näppäinasettelu: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Hiiren tyyppi: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Hiiren laite: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Näyttö: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Näytön vaakajuovataajuus: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Näytön virkistystaajuus: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Näytönohjain: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Grafiikkamuisti: %s kt\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Värisyvyys: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluutio: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 palvelin: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Käynnistettäessä X:ää"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -374,166 +401,183 @@ msgstr ""
"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
"Haluatko käynnistää X:n automaattisesti?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Minkälainen ISND-yhteytesi on?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Ensimmäinen sektori käynnistysosiolla"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Levyn ensimmäinen sektori (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILOn asennus"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa käyttöjärjestelmän lataajan?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub asennus"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO graafisella valikolla"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Käynnistä DOSista/Windowsista (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Käyttöjärjestelmän lataajan pääasetukset"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Käytettävä käyttöjärjestelmän lataaja"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Käyttöjärjestelmän lataajan asennus"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ei toimi vanhoissa BIOSeissa)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Tiivis"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Näyttötila"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Tauko ennen oletusjärjestelmän käynnistystä"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Rajoita komentorivioptioita"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "rajoita"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tarkka muistin koko, jos tarpeen (löydettiin %d Mt)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Käytä montaa profiilia"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Anna muistin koko megatavuina"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Käynnistysviesti"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Vapaa Firmware-viive"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Timeout ytimen käynnistyksessä"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Mahdollista käynnistys CD:ltä"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Mahdollista käynnistys OFilta"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Oletuskäyttöjärjestelmä?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -542,7 +586,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -550,154 +594,155 @@ msgstr ""
"Tässä ovat asetustietueet.\n"
"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisää"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Liitä"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Oletus"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd:n koko"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "Ei Näyttöä"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Poista tietue"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Tyhjää otsikkoa ei sallita"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Sinulla täytyy määritellä juuriosio"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Otsikko on jo käytössä"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Löysin %s %s liitännät"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liityntää?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Kyllä"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -708,17 +753,17 @@ msgstr ""
"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
"Esimerkiksi, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Moduulin optiot:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mitä %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -734,15 +779,15 @@ msgstr ""
"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Lisäasetukset"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -751,55 +796,55 @@ msgstr ""
"Modulin %s lataaminen epäonnistui.\n"
"Haluatko yrittää muilla asetuksilla?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita, `-' ja `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Lisää käyttäjä"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -808,32 +853,32 @@ msgstr ""
"Lisää käyttäjä\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Hyväksy käyttäjä"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Käyttäjätunnus"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -842,55 +887,55 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko käyttää tätä ominaisuutta?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Valitse käytettävä kieli."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 käytettävissä asennuksen jälkeen"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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 käyttää"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -899,42 +944,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -946,14 +991,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Salasanat ovat nyt käytössä mutta koneen käyttö verkossa ei ole suositeltua."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -963,13 +1008,13 @@ msgstr ""
"käytetään Internettiin liitettynä. Järjestelmässä on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -983,7 +1028,7 @@ msgstr ""
"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -991,32 +1036,49 @@ msgstr ""
"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Optiot"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Valitse turvataso"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Käytä libsafea palvelimille"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Kirjasto joka suojelee puskurin ylivuoto ja merkkijonon muotovirhehykkäyksiä "
"vastaan."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1041,7 +1103,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1055,7 +1117,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:915
+#: ../../bootloader.pm_.c:938
#, 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"
@@ -1070,7 +1132,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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Paina enter kaynnist~^D~^Dksesi valitun kaytt”j„rjestelm„n, 'e' muokataksesi"
@@ -1085,7 +1147,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
@@ -1099,84 +1161,181 @@ msgstr "komennot ennen k„ynnistyst„, 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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Korostettu tietue k„ynnistet„„n automaattisesti %d sekunnissa."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Työpöytä"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Käynnistysvalikko"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Et voi asentaa käyttöjärjestelmän lataajaa partitiolle %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "ohjeita ei ole vielä olemassa.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Käynnistyksen tavan asetus"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Tiedosto"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Tiedosto/Poistu"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Uuden tyylin kategoroiva tarkkailija"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Uuden tyylin tarkkailija"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Perinteinen tarkkailija"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Perinteinen Gtk+ tarkkailija"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Käytä Auroraa käynnistyksen aikana"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub-tila"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot-tila"
-#: ../../bootlook.pm_.c:104
+# Asennuksen sivuvalikko
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Asenna järjestelmä"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Virhe"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Kopioidaan %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Ei Näyttöä"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Asennuksen luokka"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1185,42 +1344,69 @@ msgstr ""
"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
"Valitse Aseta käynnistääksesi asennusohjelman."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Määrittele"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Yksittäisten pakettien valinta"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Järjestelmän tila"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Käytä X-Window-järjestelmää"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ei, en halua autologinia"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
@@ -1264,61 +1450,113 @@ msgstr "Kuvankaappauksia ei voi tehdä ennen osiointia"
msgid "Screenshots will be available after install in %s"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ranska"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "T'sekin tasavalta"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Saksa"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Kreikka"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norja"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Ruotsi"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Alankomaat"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italia"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Itävalta"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yhdysvallat"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Tuntematon malli"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "uusi"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Palvelin"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Valitse kirjoittavan CD-aseman nopeus"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Palvelin"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Liitospaikka: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Optiot: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Tee ensin varmuuskopio tiedoistasi"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lue tarkkaan!"
@@ -1331,15 +1569,6 @@ msgstr ""
"Jos aiot käyttää aboot:ia, varmista että jätät vapaata tilaa levyn alkuun\n"
"(2048 sektoria on tarpeeksi)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Virhe"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Velho"
@@ -1365,7 +1594,7 @@ msgid "Please click on a partition"
msgstr "Klikkaa osiota"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Yksityiskohdat"
@@ -1393,13 +1622,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Tyhjä"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Muut"
@@ -1407,12 +1636,12 @@ msgstr "Muut"
msgid "Filesystem types:"
msgstr "Tiedostojärjestelmien tyypit:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Luo"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tyyppi"
@@ -1422,7 +1651,7 @@ msgstr "Tyyppi"
msgid "Use ``%s'' instead"
msgstr "Käytä sen sijaan ``%s'':ää"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Poista"
@@ -1431,78 +1660,78 @@ msgid "Use ``Unmount'' first"
msgstr "Käytä ensin komentoa ``Irroita''"
# mat
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Vaihdettuasi osion %s tyyppiä kaikki sillä olevat tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Valitse osio"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Valitse toinen osio"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Poistu"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Vaihda asiantuntijatilaan"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Vaihda normaalitilaan"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Peruuta"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Jatka joka tapauksessa?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Lopeta tallentamatta"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Lopeta kirjoittamatta osiotalua?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Haluatko tallentaa muutokset tiedostoon /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Automaattinen varaus"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Tyhjennä kaikki"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Lisäasetukset"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Kiintolevyn tiedot"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Kaikki primääriosiot käytetty"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Uusia osioita ei voida lisätä"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1510,31 +1739,31 @@ msgstr ""
"Voidaksesi luoda lisää osioita tuhoa yksi olemassaoleva osio jotta voisit "
"luoda laajennetun osion"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Tallenna osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Palauta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Pelasta osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Uudelleenlataa osiotaulu"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Vaihdettavan median automaattinen liittäminen"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1542,11 +1771,11 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Varoitus"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1554,96 +1783,79 @@ msgstr ""
"Aseta levyke asemaan\n"
"Kaikki levykkeen tiedot häviävät"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Yritän osiotalulun palautusta"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Yksityiskohtaiset tiedot"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Liitospaikka"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Optiot"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Uusi koko"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Siirrä"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Alusta"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liitä"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Lisää RAIDiin"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Lisää LVM:iin"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Irroita"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Poista RAIDista"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Poista LVM:stä"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Muokkaa RAIDia"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Käytä loopback-tiedostoa"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Luo uusi osio"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Aloitussektori: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Koko Mt: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tiedostojärjestelmä: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Liitospaikka: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Etuoikeus: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
@@ -1651,34 +1863,34 @@ msgid ""
msgstr ""
# mat
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Poista loopback-tiedosto?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Muuta osiotyyppiä"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Minkä tiedostojärjestelmän haluat?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Vaihdan ext2:sta ext3:een"
# mat
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Minne haluat liittää loopback-tiedoston %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Minne haluat liittää laitteen %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1686,131 +1898,136 @@ msgstr ""
"Ei voida poistaa liitospaikkaa koska osiota käytetään loopback-tilassa.\n"
"Poista loopback-tiedosto ensin"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Minne haluat liittää laitteen %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Lasken FAT-tiedostojärjestelmän rajoja"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Muutan kokoa"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Tämän osion kokoa ei voi muuttaa"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Kaikki osion tiedot tulee varmuuskopioida"
# mat
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Osion %s koon muuttamisen jälkeen kaikki osion tiedot tuhoutuvat"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Valitse uusi koko"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Uusi koko (Mt): "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Mille levylle haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektori"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Mille sektorille haluat siirtää?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Siirrän"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Siirrän osiota..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Valitse olemassaoleva RAID johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "uusi"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Valitse olemassaoleva LVM johon lisätään"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM:n nimi?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Osiota ei voida käyttää loopback-osiona"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Loopback tiedostonimi: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Anna tiedostonimi"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Tiedosto on jo käytössä toiselle loopbackille, valitse toinen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Tiedosto on jo olemassa. Käytä sitä?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Liittämisen optiot"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Useita"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "laite"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "taso"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "palan koko"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Varo: tämä on vaarallinen toiminto"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Minkä tyyppinen osiointi?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paketti %s pitää asentaa. Haluatko asentaa sen?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1822,7 +2039,7 @@ msgstr ""
"Joko käytät LILOa ja se ei toimi, tai et käytä LILOa, jolloin et tarvitse /"
"boot -hakemistoa"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1833,7 +2050,7 @@ msgstr ""
"eikä sinulla ole /boot osiota.\n"
"Jos haluat käyttää LILO-käynnistyksenhallintaa, lisää Linuxille /boot osio."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1843,46 +2060,46 @@ msgstr ""
"Mikään käynnistyslataaja ei osaa käsitellä tätä ilman /boot -osiota.\n"
"Lisää /boot -osio, jos haluat käyttää liloa tai grubia"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Levyn %s osiotaulu kirjotetaan levylle!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Sinun täytyy käynnistää kone uudelleen ennen kuin muutos tulee voimaan"
# mat
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kaikki osiolla %s olevat tiedot häviävät osion alustuksen yhteydessä"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Alustan"
# mat
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Alustan loopback-osiota %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Alustan osiota %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Piilota tiedostot"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Siirrä tiedostot uuteen osioon"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1891,84 +2108,84 @@ msgstr ""
"Hakemisto %s sisältää jo jotakin tietoa\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Siirrän tiedostoja uudelle osiolle"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Kopioidaan %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Poistetaan %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "osio %s tunnetaan nyt nimellä %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Laite: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-asema: %s (vain arvaus)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tyyppi: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nimi: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Alkaa: sektori %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Koko: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoria"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sylinteristä %d sylinteriin %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ei alustettu\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Liitetty\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1977,7 +2194,7 @@ msgstr ""
"Loopback tiedosto(t):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1985,27 +2202,27 @@ msgstr ""
"Osiolta käynnistetään oletuksena\n"
" (MS-DOS käynnistys, ei lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Taso %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Palan koko %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-levyt %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-tiedoston nimi: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2017,7 +2234,7 @@ msgstr ""
"ajuriosio. Sinun olisi kaiketi\n"
"parasta jättää se rauhaan.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2029,64 +2246,59 @@ msgstr ""
"osio on järjestelmäsi\n"
"kaksoiskäynnistämiseksi.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Koko: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s sylinteriä, %s lukupäätä, %s sektoria\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Tietoja: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-levyt %s\n"
# mat
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Osion tyyppi: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "väylässä %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Optiot: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Tiedostojärjestelmän salausavain"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Valitse tiedostojärjestelmäsi salausavain"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Salausavain on liian yksinkertainen (sen pitää olla ainakin %d merkkiä pitkä)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Salausavaimet eivät täsmää"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Salausavain"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Salausavain (uudelleen)"
@@ -2137,23 +2349,23 @@ msgstr "NIS-alue"
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2170,34 +2382,34 @@ msgstr ""
msgid "server"
msgstr "palvelin"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Et voi käyttää JFS:ää alle 16 Mt osioilla"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Et voi käyttää ReiserFS:ää alle 32 Mt osioilla"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Liitospaikan pitää alkaa /-merkillä."
# mat
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "On jo olemassa osio, jonka liitospaikka on %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Et voi käyttää LVM loogista taltiota liitekohtana %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Tämän hakemiston pitäisi olla juuritiedostojärjestelmässä"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2205,25 +2417,25 @@ msgid ""
msgstr ""
"Tarvitset tähän liitoskohtaan oikean tiedostojärjestelmän (ext2, reiserfs)\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Et voi käyttää salattua tiedostojärjestelmää liitoskohdassa %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Vapaa tila ei riitä automaattiseen varaukseen"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Ei mitään tekemistä"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2231,260 +2443,264 @@ msgstr ""
"On tapahtunut virhe - ei löytynyt ainuttakaan laitetta, joille voi luoda "
"uuden tiedostojärjestelmän. Tarkista laitteistosi korjataksesi ongelman"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Sinulla ei ole yhtään osiota!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Tee automaattinen tunnistus"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Yleinen"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Kortin muisti (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "lataa asetukset"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Muuta tyyppiä"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Lopeta"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ohje"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Ohje"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Ohje/_Tietoja..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Hiiri"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Kortin muisti (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Peruuta"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Hiiri"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Kuvaus"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Tunnistustapa"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Valitse tiedosto"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Yhdyskäytävän laite"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 näppäintä"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Lopeta"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ohje"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ohje/_Tietoja..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Automaattihaku"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kiintolevyjen tunnistus"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Katso laitteistotietoja"
-#: ../../harddrake/ui.pm_.c:136
+# Asennuksen sivuvalikko
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Hiiren määrittely"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Näytä tiedot"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-# Asennuksen sivuvalikko
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Hiiren määrittely"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "löydetty portista %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Odota hetki"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekuntia"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Poistetaan tulostin \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Tee automaattinen tunnistus"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Yleinen"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Automaattihaku"
+msgid "Card model :"
+msgstr "Kortin muisti (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Muuta tyyppiä"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "lataa asetukset"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3916,7 +4132,7 @@ msgstr ""
"Paina \"Peruuta\" keskeyttääksesi tämän toiminnon ilman että menetät\n"
"mitään kiintolevyllä ollutta tietoa ja osoita."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3924,7 +4140,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Sinun täytyy myös alustaa %s"
@@ -3954,20 +4170,20 @@ msgstr ""
"\n"
"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Tämä levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3975,7 +4191,7 @@ msgstr ""
"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
@@ -4014,7 +4230,7 @@ msgstr ""
"\n"
"Jatka kuitenkin?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Sinulla pitää olla FAT-osio liitettynä hakemistoon /boot/efi"
@@ -4195,12 +4411,12 @@ msgstr ""
"Tapahtui virhe, sitä ei voida käsitellä kunnolla.\n"
"Jatka omalla riskilläsi."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Kahdentunut liitospaikka %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4212,12 +4428,12 @@ msgstr ""
"Tarkista cdrom Linux-koneessa käyttämällä \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
# mat
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ei levykeasemaa käytettävissä"
@@ -4227,7 +4443,7 @@ msgstr "Ei levykeasemaa käytettävissä"
msgid "Entering step `%s'\n"
msgstr "Siirryn vaiheeseen `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4240,80 +4456,80 @@ msgstr ""
"paina `F1' kun\n"
"käynnistät asennusohjelmaa CDROM-asemasta. Tämän jälkeen kirjoita `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Asennusluokka"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Yksittäisten pakettien valinta"
# mat
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Koko yhteensä: %d / %d Mt"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Viallinen paketti"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nimi: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versio: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Koko: %d Kt\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Tärkeys: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Et voi asentaa tätä pakettia, koska levyllä ei ole tarpeeksi tilaa sen "
"asentamiseksi"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Seuraavat paketit asennetaan"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Seuraavat paketit poistetaan"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Et voi valita/poistaa tätä pakettia"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tämä on pakollinen paketti, sitä ei voida poistaa valinnoista"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4321,75 +4537,75 @@ msgstr ""
"Tämä paketti tulee päivittää\n"
"Oletko varma että haluat poistaa valinnan?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Et voi poistaa tämän paketin valintaa. Paketti pitää päivittää."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Näytä automaattisesti valitut paketit"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Asenna"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Lataa/Tallenna levykkeelle"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Päivitän pakettien valintaa"
# Asennuksen sivuvalikko
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimaalinen asennus"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Asennan"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Arvioin aikaa"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Jäljellä "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Valmistelen asennusta"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakettia"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Hyväksy"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Hylkää"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4404,17 +4620,17 @@ msgstr ""
"Jos sinulla ei ole levyä, paina Peruuta välttääksesi asennukset tältä "
"levyltä."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4618,104 +4834,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Näppäimistö"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Valitse näppäimistösi asettelu."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Tässä on koko lista olemassa olevista näppäimistöistä"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Valitse asennuksen luokka?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Asenna/Päivitä"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Onko tämä asennus vai päivitys?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Suositeltu"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Asiantuntija"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Päivitä"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Päivitä vain paketit"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Hiiren portti"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Mihin sarjaporttiin hiiresi on liitetty."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Näppäinemulaatio"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "2. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "3. näppäimen emulaatio"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Asetan PCMCIA kortteja...."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Asetan IDE-levyä"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ei vapaita osioita"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Tarkistan osioita löytääkseni liitoskohdat"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Valitse liitospaikat"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4732,7 +4948,7 @@ msgstr ""
"\n"
"Hyväksytkö kaikkien osioiden menettämisen?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4740,7 +4956,7 @@ msgstr ""
"DiskDrake ei pystynyt lukemaan osiotaulua oikein.\n"
"Jatka omalla vastuullasi!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4749,70 +4965,70 @@ msgstr ""
"käynnistääksesi järjestelmän, sinun pitää luoda käynnistyslohko-osio "
"DiskDrakessa."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Päivitykseen tarvittavaa juuriosiota ei löytynyt"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Juuriosio"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Mikä on järjestelmäsi juuriosio (/) ?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sinun tulee käynnistää järjestelmä uudelleen jotta muutokset tulevat voimaan"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Valitse alustettavat osiot"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Tarkista vialliset lohkot?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Alustan osioita"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Luon ja alustan tiedostoa %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Heittovaihtotiedosto ei ole riittävän suuri, suurenna sitä"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Etsin saatavilla olevia paketteja"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Etsin päivitettäviä paketteja"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Et voi poistaa tämän paketin valintaa. Se on jo asennettu"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Etsin päivitettäviä paketteja"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4821,7 +5037,7 @@ msgstr ""
"Järjestelmässäsi ei ole riittävästi tilaa asennukseen tai päivitykseen (%d > "
"%d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4829,35 +5045,35 @@ msgstr ""
"Lataa tai tallenna pakettien valinta levykkeelle.\n"
"Muoto on sama kuin auto_install-toiminnon luomilla levykkeillä."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Lataa levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Ladataan levykkeeltä"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Aseta levyke, jossa on pakettien valinta"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Tallenna levykkeelle"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4865,15 +5081,15 @@ msgstr ""
"Et ole valinnut yhtäkään pakettiryhmää\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "X:llä"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
@@ -4892,11 +5108,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltään \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4905,22 +5121,22 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
# mat
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien päivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4996,7 +5212,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5016,182 +5232,191 @@ msgstr ""
"\n"
"Haluatko asentaa päivitykset ?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Yhdistän peilijärjestelmään hakeakseni uusimman pakettilistan"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopäätös"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Äänikortti"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "Hae Windowsin kirjasimet"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ylläpitäjän salasana"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Tunnistus NIS:llä"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS-palvelin"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Tunnistus LDAPilla"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Hae Windowsin kirjasimet"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP-palvelin"
+msgid "Authentication Windows Domain"
+msgstr "Tunnistus LDAPilla"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Verkkoalueen nimi"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5218,19 +5443,19 @@ msgstr ""
"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Ensimmäinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5255,7 +5480,7 @@ msgstr ""
"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5264,28 +5489,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Valitse levyasema jolla luot käynnistyslevykkeen"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Luon käynnistyslevykettä"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5297,11 +5522,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Haluatko käyttää aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5310,15 +5535,15 @@ msgstr ""
"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5338,17 +5563,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5358,7 +5583,7 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5391,15 +5616,15 @@ msgstr ""
"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5413,15 +5638,15 @@ msgstr ""
"\n"
"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Yksittäisten pakettien valinta"
@@ -5448,24 +5673,35 @@ msgstr ""
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Lisäasetukset"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Edellinen"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Seuraava"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Huono valinta, yritä uudelleen\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Valintasi? (oletus %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5474,35 +5710,35 @@ msgstr ""
"Kohdat, jotka sinun pitää täyttää:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Valintasi? (0/1, oletus '%s') "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Painike '%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Haluatko klikata tätä painiketta? "
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Valintasi? (oletus '%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> On monta asiaa, joista valita (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5512,7 +5748,7 @@ msgstr ""
"tai paina vain Enter jatkaaksesi.\n"
"Valintasi? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5521,328 +5757,380 @@ msgstr ""
"=> Huomaa, nimike vaihtui:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Lähetä uudelleen"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tsekki (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Saksa"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Espanja"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Suomi"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Ranska"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norja"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Puola"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Venäjä"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Ruotsi"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UK näppäimistö"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US näppäimistö"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albaani"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armeenia (vanha)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armeenia (kirjoituskone)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armeenia (foneettinen)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "ota käyttöön"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bulgaria (foneettinen)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasilia"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Eesti"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Valkovenäjä"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Sveitsi (Saksalainen järjestys)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Sveitsi (Ranskalainen järjestys)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tsekki (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Saksa (ei kuolleita näppäimiä)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Tanska"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Norja (Dvorak)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Ruotsi)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Eesti"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (\"Venäläinen\"-järjestys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (\"Latin\"-järjestys)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Kreikka"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Unkari"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroatia"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israeli (Foneettinen)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islanti"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italia"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japani 106-näppäiminen"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korealainen näppäimistö"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latinalainen amerikka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvia"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Liettua AZERTY (vanha)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Liettua AZERTY (uusi)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Liettua \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Liettua \"foneettinen\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbia (cyrillic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollanti"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Puola (qwerty järjestys)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Puola (qwertz järjestys)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugali"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Venäjä (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai-näppäimistö"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajik-näppäimistö"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkki (perinteinen \"F\"-malli)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkki (perinteinen \"Q\"-malli)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US näppäimistö (kansainvälinen)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamilainen \"numerorivi\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslavia (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
#, fuzzy
msgid "Left \"Windows\" key"
msgstr "Hae Windowsin kirjasimet"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5851,38 +6139,38 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Rengasmaisia liitoksia %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Puhelinnumero"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Levyjen osiointi"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr "PCMCIA:ta ei tueta enää 2.2-sarjan ytimissä. Käytä 2.4 ydintä."
#: ../../mouse.pm_.c:25
@@ -5985,51 +6273,43 @@ msgstr "ei mikään"
msgid "No mouse"
msgstr "Ei hiirtä"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "PYÖRITÄ HIIREN RULLAA!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Loppu"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Seuraava ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Edellinen"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Onko tämä oikein?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Tietoja"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Laajenna puu"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Sulje puu"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
@@ -6052,6 +6332,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "käytä dhpc:tä"
@@ -6079,7 +6363,7 @@ msgstr ""
"Ethernet-verkkokorttia ei löytynyt järjestelmästä.\n"
"Ei voida asentaa tämän tyyppistä yhteyttä."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Valitse verkkoliittymä"
@@ -6092,7 +6376,7 @@ msgstr "Valitse mitä verkkokorteista haluat käyttää internetiin liittymiseen"
msgid "no network card found"
msgstr "verkkokorttia ei löytynyt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -6108,7 +6392,7 @@ msgstr ""
"Koneesi nimen pitäisi olla täysin laillinen nimi, kuten\n"
"\" minunkone.omapaikka.net\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Koneen nimi"
@@ -6136,7 +6420,7 @@ msgstr "Minkälainen ISND-yhteytesi on?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6261,43 +6545,43 @@ msgstr "Valitse sarjaportti, johon modeemisi on kytketty."
msgid "Dialup options"
msgstr "Soittoasetukset"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Yhteyden nimi"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Puhelinnumero"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Käyttäjä ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-pohjainen"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminaalipohjainen"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Verkkoalueen nimi"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
@@ -6411,13 +6695,13 @@ msgstr "Valitse uusi asetusprofiili"
msgid "Use auto detection"
msgstr "Käytä automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
@@ -6533,7 +6817,7 @@ msgstr ""
"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
"voit käynnistää asetustyökalun uudelleen"
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6544,7 +6828,7 @@ msgstr ""
"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6553,43 +6837,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6600,40 +6884,40 @@ msgstr ""
"Koneesi nimen pitäisi olla täydellinen, kuten ``minunkone.yritys.fi''.\n"
"Voit antaa myös yhdyskäytävän IP-osoitteen jos sinulla on sellainen."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Yhdyskäytävän laite"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP-välityspalvelin:"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP-välityspalvelin:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
@@ -6645,7 +6929,7 @@ msgstr "Internetin asetukset"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Haluatko kokeilla internetyhteyttä nyt?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Testaan yhteyttäsi..."
@@ -6673,43 +6957,43 @@ msgstr "Yhteyden asetus"
msgid "Please fill or check the field below"
msgstr "Valitse alla olevista kohdista"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kortin IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kortin muisti (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kortin IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kortin IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kortin IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Henkilökohtainen puhelinnumerosi"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Palveluntarjoajan nimi (esim: tarjoaja.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Palveluntarjoajan puhelinnumero"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Yhteydentarjoajan dns 1 (vapaaehtoinen)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
@@ -6718,28 +7002,28 @@ msgstr "Yhteydentarjoajan dns 2 (vapaaehtoinen)"
msgid "Choose your country"
msgstr "Valitse maasi"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Soittotila"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Yhteyden nopeus"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Yhteyden aikaraja (sekunneissa)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Käyttäjätunnus (käyttäjän nimi)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Salasana"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6775,7 +7059,7 @@ msgstr "Huono varmuuskopiotiedosto"
msgid "Error writing to file %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6821,7 +7105,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6849,7 +7133,7 @@ msgstr "Ulkoinen tulostin"
msgid "Printer on remote CUPS server"
msgstr "Tulostin ulkoisella CUPS-palvelimella"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Tulostin ulkoisella lpd-palvelimella"
@@ -6865,7 +7149,7 @@ msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
msgid "Printer on NetWare server"
msgstr "Tulostin NetWare-palvelimella"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Syötä tulostinlaitteen osoite (URI)"
@@ -6873,110 +7157,110 @@ msgstr "Syötä tulostinlaitteen osoite (URI)"
msgid "Pipe job into a command"
msgstr "Putkita työ käskylle"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Tuntematon malli"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Paikalliset tulostimet"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Ulkoiset tulostimet"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " rinnakkaisliitännässä \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tulostin \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", monikäyttölaite rinnakkaisportissa \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", monikäyttölaite USB:ssa"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", monitoimilaite HP JetDirectissä"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", monitoimilaite"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", tulostetaan: %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "Windows-palvelimella \"%s\", jako \"%s\""
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell-palvelimella \"%s\", tulostin \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", käyttäen komentoa %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Raakatulostin (ei ajuria)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(%s:ssa)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(tällä koneella)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-palvelimella \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Oletus)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Valitse tulostinyhteys"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Miten tulostin on liitetty?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -6986,17 +7270,21 @@ msgstr ""
"Tulostimia, jotka ovat ulkoisella CUPS-palvelimella, ei tarvitse asettaa\n"
"tässä; nämä tulostimet tunnistetaan automaattisesti."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Asetustyökalut"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
#, fuzzy
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
@@ -7017,7 +7305,7 @@ msgstr ""
"ja mahdollisesti myös portin numero saadaksesi tiedot palvelimelta. Muussa "
"tapauksessa jätä kentät tyhjiksi."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7027,32 +7315,32 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-osoitteen tullee olla muotoa 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Portin numeron pitäisi olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-palvelimen IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Portti"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "CUPSin automaattinen asettaminen"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Lisää uusi tulostin"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7065,35 +7353,67 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Paikallinen tulostin"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Etsi tulostimet"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Paikallinen tulostin"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7107,51 +7427,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Tulostimien automaattinen löytäminen"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Tee automaattinen tunnistus"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Aseta tulostin manuaalisesti"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Kokeile portteja"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Löydetty %s:sta"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tulostin rinnakkaisportissa \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB-tulostin \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Verkkotulostin (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Tulostin SMB/Windows 95/98/NT -palvelimella"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7159,31 +7478,23 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Sinun täytyy syöttää laitteen tai tiedoston nimi!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Paikallisia tulostimia ei löytynyt!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Paikallinen tulostin"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7191,7 +7502,7 @@ msgstr ""
"Seuraava tulostin löydettiin, jos se ei ole se, jonka haluat asettaa, syötä "
"laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7199,7 +7510,7 @@ msgstr ""
"Tässä on lista löydetyistä tulostimista. Valitse se tulostin, jonka haluat "
"asettaa tai syötä laite- tai tiedostonimi syöteriville"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7207,7 +7518,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7215,7 +7526,7 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7223,11 +7534,11 @@ msgstr ""
"Valitse portti, johon tulostimesi on kytketty tai syötä laitteen tai "
"tiedoston nimi syöteriville"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Valitse portti, johon tulostimesi on kytketty."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7235,62 +7546,19 @@ msgstr ""
" (Rinnakkaisportit: /dev/lp0, /dev/lp1, ..., vastaavat LPT1:, LPT2:, ..., 1. "
"USB-tulostin: /dev/usb/lp0, 2. USB-tulostin: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Manuaalinen asettaminen"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Asennetaan HPOJ-pakettia..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Asennetaan SANE-paketteja..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Asennan paketteja..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Skannataan HP-monikäyttölaitteella"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Skannataan HP-monikäyttölaitteella"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Asetetaan tulostusportti CUPSin saataville..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Luetaan tulostintietokantaa ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Ulkoisen lpd-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7298,27 +7566,47 @@ msgstr ""
"Jotta voisit käyttää ulkoista lpd-tulostinta, sinun pitäisi syöttää "
"tulostuspalvelimen verkkonimi sekä tulostimen nimi kyseisellä palvelimella."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Palvelimen verkkonimi"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Palvelimen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Ulkoisen tulostimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Löydetty %s:sta"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Luon verkkoyhteyttä ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "Windows-palvelimella \"%s\", jako \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Tulostus käynnissä tulostimella \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7330,35 +7618,46 @@ msgstr ""
"tulostuspalvelimen IP-osoite, tulostimen jakonimi sekä soveltuva "
"käyttäjätunnus, salasana ja työryhmä-tieto."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB-palvelimen nimi"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB-palvelimen IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Jakonimi"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Työryhmä"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Tee automaattinen tunnistus"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Joko palvelimen nimi tai IP-numero on annettava!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Samba-jaon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7382,7 +7681,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7391,7 +7690,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7399,11 +7698,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare-palvelimen tulostimen parametrit"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7415,85 +7714,108 @@ msgstr ""
"mahdollisesti tulostusjonon nimi sille tulostimelle, jota haluat käyttää, "
"sekä soveltuva käyttäjätunnus ja salasana."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Tulostuspalvelin"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Tulostusjonon nimi"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP-palvelimen nimi puuttuu!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP-jonon nimi puuttuu!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP -verkkopäätteellä \"%s\", portissa %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/Socket -tulostimen parametrit"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Tulostaaksesi TCP- tai socket-tulostimella, sinun täytyy antaa tulostimen "
"verkkonimi ja mahdollisesti portin numero. HP JetDirect-palvelimissa "
"porttinumero on useimmiten 9100, muissa palvelimissa portti voi vaihdella. "
"Tarkista portti laitteistosi ohjekirjasta."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Tulostinlaitteen verkkonimi"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Tulostinlaitteen verkkonimi puuttuu!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Tulostinlaitteen verkkonimi"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Tulostinlaitteen osoite (URI)"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Sinun pitää syöttää laillinen URI!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Tulostimen nimi"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Paikka"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Luetaan tulostintietokantaa ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Valmistellaan tulostintietokantaa ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Ulkoisen tulostimen nimi"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7508,26 +7830,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Onko tämä oikein?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Tulostimen mallin valinta"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Mikä tulostinmalli sinulla on?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7536,17 +7858,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI winprinterin asettaminen"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7556,11 +7878,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjetin asettaminen"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7568,7 +7890,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7581,7 +7903,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7591,22 +7913,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Valitsimen %s pitää olla kokonaisluku!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Valitsimen %s pitää olla luku!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Valitsin %s on arvoalueensa ulkopuolella!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7615,11 +7937,11 @@ msgstr ""
"Haluatko asettaa tämän tulostimen (\"%s\")\n"
"oletustulostimeksi?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Testisivut"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7627,39 +7949,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Ei testisivuja"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Tulosta"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standardi testisivu"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Vaihtoehtoinen testisivu (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Vaihtoehtoinen testisivu (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Valokuvatestisivu"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Älä tulosta testisivua"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Tulostan testisivu(j)a..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7674,7 +7996,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7682,15 +8004,15 @@ msgstr ""
"Testisivu(t) on lähetetty tulostimelle.\n"
"Voi kestää hetken ennen kuin tulostus alkaa.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Toimiko tulostus kunnolla?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Raakatulostin"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7699,15 +8021,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7716,7 +8038,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7727,7 +8049,7 @@ msgstr ""
"tai klikkaa \"Tulostuksen valintalista\"-painiketta.%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -7735,7 +8057,7 @@ msgstr ""
"Tässä on lista nykyisen tulostinen käytössä olevista tulostusvalinnoista:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7744,15 +8066,15 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -7760,7 +8082,7 @@ msgstr ""
"Saadaksesi listan nykyisen tulostimen parametreistä klikkaa \"Tulostuksen "
"valintalista\"-painiketta."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7769,7 +8091,7 @@ msgstr ""
"Tulostaaksesi tiedoston komentoriviltä (pääteikkunasta) käytä komentoa \"%s "
"<tiedosto>\". tai \"%s <tiedosto>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7779,7 +8101,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7788,45 +8110,45 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Tulostetaan/skannataan laitteella \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tulostus käynnissä tulostimella \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Sulje"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Tulostusparametrien lista"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7835,9 +8157,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7848,17 +8170,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Siirrä tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7868,51 +8190,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ja LPRng eivät tue IPP-tulostimia.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Älä siirrä tulostimia"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Siirrä"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7920,11 +8242,11 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Tulostimen nimi saa sisältää vain kirjaimia, numeroita ja alaviivan"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7933,46 +8255,46 @@ msgstr ""
"Tulostin \"%s\" on jo olemassa,\n"
"haluatko todellakin tuhota olemassa olevat asetukset?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Uuden tulostimen nimi"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Siirrän %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Päivitetään tulostintietoja ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Ulkoisen tulostimen asetukset"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Luon verkkoyhteyttä ..."
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Aseta verkkoyhteys nyt"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Verkkotoimintoja ei ole asetettu"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7980,11 +8302,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Jatka asettamatta verkkoyhteyttä"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7994,31 +8316,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Käynnistän tulostusjärjestelmää uudelleen ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "korkea"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoidi"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Asennan tulostusjärjestelmän turvatasolla %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8033,11 +8355,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Käynnistää tulostusjärjestelmän käynnistyksen aikana"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8051,64 +8373,64 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Tarkistan asennetut ohjelmistot..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Poistetaan LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Poistetaan LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Valitse tulostusjono"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Mitä tulostusjärjestelmää (jonoa) haluat käyttää?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Asennan Foomaticin ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Tulostimen asetukset"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Valmistellaan PrinterDrakea ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Asetetaan tulostinta \"%s\" ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Haluatko asettaa tulostuksen?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Tulostusjärjestelmä: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8116,42 +8438,38 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Päivitä tulostinlistaa (näytä kaikki saatavilla olevat CUPS-etätulostimet)"
# Asennuksen sivuvalikko
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Aseta tulostusjärjestelmä"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Perustila"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Lopeta"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Haluatko asettaa toisen tulostimen?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Muokkaa tulostimen asetuksia"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8160,100 +8478,100 @@ msgstr ""
"Tulostin %s\n"
"Mitä haluat muokata tästä tulostimesta?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Tee se!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Tulostusyhteyden tyyppi"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Tulostimen nimi, kuvaus, paikka"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Tulostimen valmistaja, malli, ajuri"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Tulostimen valmistaja, malli"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Aseta tämä tulostin oletukseksi"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Tulosta testisivut"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Tiedä kuinka käyttää tätä tulostinta"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Poista tulostin"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Poistetaan vanha tulostin \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Oletustulostin"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tulostin \"%s\" on asetettu oletustulostimeksi."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Haluatko todella poistaa tulostimen \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Poistetaan tulostin \"%s\" ..."
@@ -8308,8 +8626,9 @@ msgstr ""
"Jätä kohta tyhjäksi, jos et haluat ftp-proxyä"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8358,43 +8677,6 @@ msgstr "mkraid epäonnistui (ehkä raid-työkalut puuttuvat?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittävästi osioita RAID tasolle %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
-"käyttää,\n"
-"mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
-"koneisiin\n"
-"tai Internettiin. Koneessa ei ole salasanoja."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Tällä turvallisuustasolla järjestelmän käyttö palvelimena on mahdollista.\n"
-"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
-"asiakkailta. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Lisävalinnat"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Optiot"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
@@ -8699,7 +8981,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Järjestelmä"
@@ -8814,7 +9096,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandraken hallintapaneeli"
@@ -8909,20 +9191,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Asennan paketteja..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8930,174 +9212,174 @@ msgstr ""
"Osiotaulua ei voida lukea, siinä on liikaa virheitä :(\n"
"Taulu yritetään korjata nollaamalla se"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Siirrä tulostimen asetukset"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Tietokantapalvelin"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Tietokantapalvelin"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS-palvelin"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS-palvelin"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Lisää käyttäjä"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Apua"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Ei yhteyttä"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Poista"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Valitse kaikki"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Lisää käyttäjä"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Määrittelen..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "aseta uudelleen"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ei levykeasemaa käytettävissä"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Virhe!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Tarvittavaa esitystiedostoa `%s' ei löytynyt."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Asenna asennusohjelma automaattisesti"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9112,11 +9394,11 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Automaattisten vaiheiden asetus"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9124,12 +9406,12 @@ msgstr ""
"Välitse jokaiselle vaiheelle toistetaanko asennus samalla tapaa kuin nyt vai "
"onko kyseinen vaihe manuaalinen"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9141,12 +9423,12 @@ msgstr ""
"\n"
"Automaattisen asennuksen parametrit löytyvät vasemmalla olevista lohkoista"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Onnittelut!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9154,21 +9436,34 @@ msgstr ""
"Levykkeen luominen onnistui.\n"
"Voit nyt toistaa asennuksesi."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Automaattinen asennus"
# Asennuksen sivuvalikko
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Lisää alkio"
# mat
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Poista viimeinen alkio"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9178,7 +9473,7 @@ msgstr ""
" DrakBackup-raportti \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9190,7 +9485,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9202,31 +9497,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Käytä nauhaa varmuuskopioinnissa"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9234,7 +9593,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -9243,7 +9602,7 @@ msgstr ""
"tiedostolistan lähetti FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -9253,35 +9612,39 @@ msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9289,26 +9652,27 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
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:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9316,40 +9680,61 @@ msgstr ""
"Tällä valitsimella voit palauttaa minkä tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Valitse kaikki ne käyttäjät, jotka haluat sisällyttää varmuuskopioosi."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Käyttäjät"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Siirrä"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -9358,43 +9743,68 @@ msgstr ""
"Syötä hakemisto, johon tämän\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Syötä käyttäjätunnuksesi"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Syötä salasanasi"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Muista tämä salasana"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Valitse käytettävä CD:n koko"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Valitse, jos käytät CD-RW-mediaa"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Valitse, jos haluat tehdä CD-levystäsi\n"
-"käynnistettävän."
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Siirrä"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Valitse, jos käytät CD-RW-mediaa"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Valitse, jos käytät CD-RW-mediaa"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9402,21 +9812,36 @@ msgstr ""
"Syötä kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Valitse tiedosto"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9424,57 +9849,57 @@ msgstr ""
"Syötä suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tyyppi"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "päivittäin"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Käytä daemonia"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9482,7 +9907,7 @@ msgstr ""
"Valitse peräkkäisten\n"
"varmuuskopioiden aikaväli"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -9490,7 +9915,7 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"käytettävä media."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -9498,60 +9923,72 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Varmista että cron-daemon on mukana käytössä olevissa palveluissa."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Mitä"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Missä"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Lisävalinnat"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Valitse mitä haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Varmuuskopioi käyttäjät"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -9559,7 +9996,7 @@ msgstr ""
"\n"
"Varmuuskopion lähteet: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -9567,7 +10004,7 @@ msgstr ""
"\n"
"- Järjestelmätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -9575,7 +10012,7 @@ msgstr ""
"\n"
"- Käyttäjätiedostot:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -9583,7 +10020,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -9592,22 +10029,32 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Hiiren laite: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -9616,12 +10063,12 @@ msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -9630,7 +10077,7 @@ msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9639,7 +10086,7 @@ msgstr ""
"\t\t käyttäjätunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -9647,19 +10094,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -9668,41 +10115,41 @@ msgstr ""
"\n"
"- Daemon (%s) sisältää :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -9710,7 +10157,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9718,137 +10165,134 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Palautettava käyttäjälista (vain uusin päivä kutakin käyttäjää kohti on "
"tärkeä)"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP-yhteys"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Salattu yhteys"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Palauta järjestelmä"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Seuraava"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -9856,9 +10300,9 @@ msgstr ""
"Tee varmuuskopio ennen kuin yrität palauttaa sen...\n"
"tai tarkista että tallennuspolku on oikea."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -9866,14 +10310,14 @@ msgstr ""
" raporttipostiasi ei lähetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -9882,19 +10326,19 @@ msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9902,76 +10346,60 @@ msgstr ""
"Asetustiedostoa ei löytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Lähetän tiedostoja..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Tietolista sisällytettäväksi CD-ROMiin"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Valitse kirjoittavan CD-aseman nopeus"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Valitse, jos haluat tehdä käynnistettävän CD:n."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9982,7 +10410,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10003,7 +10431,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10012,7 +10440,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10036,7 +10464,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10053,21 +10481,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10081,19 +10509,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10110,7 +10538,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10150,7 +10578,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10161,7 +10589,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10174,7 +10602,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10213,96 +10641,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s:n asennus epäonnistu. Seuraava virhe tapahtui:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Komentorivityökalut"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "kiintolevylle"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakeConsulting"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeExpert"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Hiiri"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Ulkoinen tulostin"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Jakonimi"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Verkkoasetusten velho"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Tunnistustapa"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakettien valinta"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Odota hetki"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10314,143 +10769,143 @@ msgid ""
"\n"
msgstr ""
+#: ../../standalone/drakbug_.c:135
+#, fuzzy
+msgid "Report"
+msgstr "portti"
+
# Asennuksen sivuvalikko
-#: ../../standalone/drakbug_.c:101
+#: ../../standalone/drakbug_.c:165
#, fuzzy
msgid "Not installed"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakbug_.c:110
-#, fuzzy
-msgid "Report"
-msgstr "portti"
-
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Verkon asetukset (%d-laitteille)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profiili: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Poista profiili..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Valitse poistettava profiili:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Uusi profiili..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Luotavan profiilin nimi (uusi profiili luodaan kopioimalla nykyisen tiedot) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Koneen nimi:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internetyhteys"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tyyppi:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Yhdyskäytävä:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Liitäntä:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Tila:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Odota hetki"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Määrittele internetyhteys..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Lähiverkon asetukset"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Ajurit"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Liitäntä"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokolla"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Tila"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Aseta paikallisverkko..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Paina tähän käynnistääksesi asennusohjelman ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Velho..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Toteuta"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Odota hetki... Otetaan asetukset käyttöön"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Yhteys muodostettu"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Ei yhteyttä"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Yhdistä..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Katkaise yhteys..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -10458,7 +10913,7 @@ msgstr ""
"Varoitus, toinen internet-yhteys on havaittu, mahdollisesti käyttäen sinun "
"vekkoasi"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10466,36 +10921,36 @@ msgstr ""
"Sinulla ei ole ainoatakaan asetettua liityntää.\n"
"Aseta ne ensin klikkaamalla 'Aseta'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Lähiverkon asetukset"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Laite %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Käynnistysprotokolla"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "aktivoi nyt"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "deaktivoi nyt"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -10503,7 +10958,7 @@ msgstr ""
"Tätä liityntärajapintaa ei ole vielä asetettu.\n"
"Käynnistä pääikkunasta löytyvä asetusvelho"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10511,121 +10966,121 @@ msgstr ""
"Sinulla ei ole ainoatakaan internet-yhteyttä.\n"
"Luo sellainen ensin klikkaamalla 'Aseta'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Internetyhteyden asetus"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Internetyhteyden asetus"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Yhteyden nimi: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametrit"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Yhdyskäytävä"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Verkkokortti"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "käyttö: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Moduulin nimi"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Koko"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "käynnistyslevykkeen luonti"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "oletus"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Virhe DrakFloppyssa: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "ytimen versio"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Yleinen"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Asiantuntijan alue"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd:n vapaaehtoiset parametrit"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Lisää moduuli"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "pakota"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "jos tarvitaan"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "jätä pois scsi-moduulit"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "jätä pois raid-moduulit"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Poista moduuli"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Tuloste"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Muodosta levy"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Varmista, että media on laitteessa %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10634,12 +11089,12 @@ msgstr ""
"Laitteessa %s ei ole mediaa.\n"
"Aseta media."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Prosessia %s ei voitu haarauttaa"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10650,99 +11105,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Etsi asennetut kirjasimet"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Poista asetettujen kirjasimien valinta"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "jäsennä kaikki kirjasimet"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "kirjasimia ei löytynyt"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "valmis"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "liitetyiltä osioilta ei löytynyt ainoatakaan kirjasinta"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Valitse uudelleen oikeat kirjasimet"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "kirjasimia ei löytynyt.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Etsi kirjasimia asennettujen listalta"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Kirjasimet kopioi"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "True Type kirjasimien asennus"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "odota kunnes ttmkfdir on valmis..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "True Type -asennus valmis"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Kirjasinten muuntaminen"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "rakennetaan: type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm kirjasinten muunnos"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Poista väliaikaistiedostot"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Käynnistä XFS uudelleen"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Poista kirjasintiedostot"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs:n uudelleenkäynnistys"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10757,109 +11212,113 @@ msgstr ""
"kirjasimet voivat lukitä X-palvelimen."
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Kirjasinten tuonti"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Hae Windowsin kirjasimet"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Poista kirjasimet levyltä"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Lisävalinnat"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Kirjasinlista"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Valitse sovellukset, jotka tukevat kirjasimia :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Yleiset tulostimet"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Valitse kirjasintiedosto tai hakemisto ja klikkaa 'Lisää'"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Asenna lista"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "paina tähän, kun olet varma."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "tähän jos et ole."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Valitse kaikki"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Poista lista"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Alkutestit"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Kopioi kirjasimet järjestelmääsi"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Asenna & muunna kirjasimia"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Poista järjestelmässäsi olevia kirjasimia"
# Asennuksen sivuvalikko
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Internetyhteyden jakaminen"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetyhteyden jakaminen on käytössä"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10871,31 +11330,31 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "poista käytöstä"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "lopeta"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "aseta uudelleen"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Poistan palvelut käytöstä..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Internetyhteyden jakaminen ei ole enää käytössä."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetyhteyden jakaminen ei ole käytössä"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10907,19 +11366,19 @@ msgstr ""
"\n"
"Mitä haluat tehdä?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "ota käyttöön"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Otan palvelut käyttöön.."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Internetyhteyden jakaminen on nyt käytössä."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10935,32 +11394,32 @@ msgstr ""
"\n"
"Huomaa: tarvitset erityisen verkkokortin pystyttääksesi oman paikallisverkon."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Liittymä %s (käyttäen moduulia %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Liittymä %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Koneessasi ei ole verkkokorttia!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Koneestasi ei löytynyt yhtään verkkokorttia. Aja laitteistonhakutyökalu."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Verkkoliittymä"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10975,17 +11434,17 @@ msgstr ""
"\n"
"Valmistaudun asettamaan lähiverkkosi asetukset kyseiselle laitteelle."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Verkkoliitäntä on jo asetettu"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11001,15 +11460,15 @@ msgstr ""
"Voit asettaa sen myös manuaalisesti, mutta silloin sinun pitää tietää, mitä "
"olet tekemässä."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automaattinen uudelleenasetus"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Näytä nykyiset liitäntäasetukset"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11026,7 +11485,7 @@ msgstr ""
"IP-määreet: %s\n"
"Ajuri: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11046,33 +11505,33 @@ msgstr ""
"palvelimen puolestasi.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C-luokan paikallisverkko"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "(Tämän) DHCP-palvelimen IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Aseta liityntärajapinta ja DHCP-palvelin uudelleen"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Paikallisverkko ei loppunut '.0':aan, töydennetään."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Mahdollinen lähiverkon osoitetörmäys löydetty nykyisillä asetuksilla %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Palomuuri löydetty!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11080,21 +11539,21 @@ msgstr ""
"Varoitus! Olemassaoleva palomuuri löydetty. Tarvitset mahdollisesti käsin "
"tehtäviäkorjauksia asennuksen jälkeen."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Määrittelen..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Määrittelen komentotiedostot, asennan ohjelmistot, käynnistän palvelimet..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Asennan pakettia %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11104,24 +11563,24 @@ msgstr ""
"Voit nyt jakaa internetyhteyden muiden lähiverkon koneiden kanssakäyttämällä "
"automaattista lähiverkon määrittelyä (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"Asetukset on jo tehty, mutta ne ovat tällä hetkellä poistettu käytöstä."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Asetukset on jo tehty ja ne ovat käytössä."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internetyhteyden jakamista ei ole koskaan asetettu."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Internetyhteyden jakamisen asetukset"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11136,20 +11595,13 @@ msgstr ""
"\n"
"Paina Aseta käynnistääksesi asennusohjelman."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrollipaneeli"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Valitse haluamasi työkalu"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11158,71 +11610,75 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kaapeli)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "Yhdysvallat (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "Yhdysvallat (kaapeli)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "Yhdysvallat (hrc-kaapeli)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "Kiina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "Japani (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japani (kaapeli)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Itä-Eurooppa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Ranska"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irlanti"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Länsi-Eurooppa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Uusi-Seelanti"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Etelä-Afrikka"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentiina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11230,36 +11686,36 @@ msgstr ""
"Ole hyvä,\n"
"kirjoita käyttämäsi tv-normi sekä asuinmaa"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TV-normi :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Alue :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "TV-kanavien haku käynnissä ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Haetaan TV-kanavia"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Tapahtu virhe asennettaessa paketteja:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11283,11 +11739,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "käyttö: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Valitse näppäimistösi asettelu."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Haluatko BackSpace-näppäimen toimivan kuten Delete konsolissa?"
@@ -11311,7 +11767,7 @@ msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -11419,22 +11875,25 @@ msgstr "Kalenteri"
msgid "Content of the file"
msgstr "Tiedoston sisältö"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Posti- ja SMS-hälytys"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "odota hetki, jäsennän tiedostoa : %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Posti- ja SMS-hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -11442,122 +11901,123 @@ msgstr ""
"\n"
"Täällä voit pystyttää hälyytysjärjestelmän.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Verkkoalueen nimi"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS-palvelin"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix-postipalvelin, Inn-nyytispalvelin"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS-palvelin"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS-palvelin"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Palvelut"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Tulostuspalvelin"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "Palveluiden asettaminen"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Saat hälytyksen kun jokin valituista palveluista ei ole enää käynnissä"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "lataa asetukset"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Saat hälytyksen jos kuorma on tätä arvoa suurempi"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "hälytyksen asetukset"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Aseta tapa, jolla järjestelmä hälyttää sinulle"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Syötä salasanasi"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Tallenna nimellä.."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Valitse hiiren tyyppi."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_usb:ta ei löytynyt\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emuloi kolmatta näppäintä?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Luetaan tulostimen tietoja ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Etsin laitteita ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Kokeile portteja"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s löytyi paikasta %s, aseta se ?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Valitse skanneri"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Tätä %s skanneria ei ole tuettu"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Käynnistyslaite"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11565,7 +12025,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11585,15 +12045,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Palomuurin asetukset"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Palomuurin asetukset"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11605,7 +12065,7 @@ msgstr ""
"Olet jo määritellyt palomuurin. Paina \"Määrittele\" \n"
"poistaaksesi palomuurin tai muuttaaksesi sen asetuksia"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11870,56 +12330,60 @@ msgstr "En voi avata %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Tiedostoa %s ei voi avata kirjoittamista varten: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Palomuurin asetukset"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Valmistelen asennusta"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11969,6 +12433,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Äänenkäsittely: mp3, midi, mikserit, jne"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Kirjoja ja ohjeita Linuxista sekä vapaan lähdekoodin ohjelmista"
@@ -12058,10 +12526,6 @@ msgid "Office Workstation"
msgstr "Toimistotyöasema"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Palvelin"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, jne"
@@ -12125,6 +12589,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Asiakasohjelmat eri protokollille (ssh jne)"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internetyhdyskäytävä"
@@ -12156,6 +12624,123 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen työasema"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Tätä tasoa tulee käyttää varoen. Se tekee järjestelmästäsi helpomman "
+#~ "käyttää,\n"
+#~ "mutta hyvin herkän: sitä ei tule käyttää koneessa joka on kytketty muihin "
+#~ "koneisiin\n"
+#~ "tai Internettiin. Koneessa ei ole salasanoja."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Tällä turvallisuustasolla järjestelmän käyttö palvelimena on "
+#~ "mahdollista.\n"
+#~ "Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
+#~ "asiakkailta. "
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Optiot"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Tietoturva"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Tietolista sisällytettäväksi CD-ROMiin"
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Valitse käytettävä CD:n koko"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Valitse kirjoittavan CD-aseman nopeus"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Valitse, jos haluat tyhjentää CD-RW:n ennen kopiointia"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Valitse kirjoittavan CD-aseman laitenimi (esim. 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Valitse, jos haluat tehdä käynnistettävän CD:n."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Web-osoitteen tulee alkaa etuliitteellä 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Valitse, jos haluat tehdä CD-levystäsi\n"
+#~ "käynnistettävän."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP-palvelin"
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Tulostimien automaattinen löytäminen"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Aseta tulostin manuaalisesti"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Asennetaan HPOJ-pakettia..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Tarkistetaan laite ja asetetaan HPOJ ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Asennetaan SANE-paketteja..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Asennan paketteja..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Skannataan HP-monikäyttölaitteella"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Skannataan HP-monikäyttölaitteella"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Asetetaan tulostusportti CUPSin saataville..."
+
+#~ msgid "Control Center"
+#~ msgstr "Kontrollipaneeli"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Valitse haluamasi työkalu"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Aseta tapa, jolla järjestelmä hälyttää sinulle"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_usb:ta ei löytynyt\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck epäonnistui virhekoodilla %d tai signaalilla %d"
@@ -12247,9 +12832,6 @@ msgstr "Tieteelliinen työasema"
#~ msgid "Setting security level"
#~ msgstr "Asetan turvatasoa"
-#~ msgid "Graphics card"
-#~ msgstr "Näytönohjain"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valitse näytönohjain"
@@ -12328,6 +12910,3 @@ msgstr "Tieteelliinen työasema"
#~ msgid "Percentage of packages to install"
#~ msgstr "Prosenttiosuus asennettavista paketeista"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Valitse turvataso"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index d5a5efdce..5fe42e3ac 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -53,13 +53,14 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 8.1\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2002-07-31 13:31+0200\n"
-"Last-Translator: Guy CLOTILDE <guy.clotilde@wanadoo.fr>\n"
-"Language-Team: french <fr@li.org>\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-07-29 17:34+0200\n"
+"Last-Translator: Christophe Combelles <ccomb@club-internet.fr>\n"
+"Language-Team: french <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.9.6\n"
#: ../../Xconfig/card.pm_.c:16
msgid "256 kB"
@@ -105,11 +106,11 @@ msgstr "Choisissez un serveur d'affichage (serveur XFree)"
msgid "X server"
msgstr "serveur XFree"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Configuration multi-écrans"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -117,45 +118,45 @@ msgstr ""
"Votre systčme peut utiliser simultanément plusieurs écrans.\n"
"Que souhaitez-vous faire ?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr ""
"Veuillez préciser la quantité de mémoire vidéo de votre carte graphique"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Configuration d'XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Quelle configuration d'XFree désirez-vous utiliser ?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Configurer les écrans séparément"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Étaler l'affichage sur plusieurs écrans (Xinerama)"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurer seulement la carte « %s » %s"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s avec accélération 3D matérielle"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -166,18 +167,18 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut źtre plus\n"
"performant en 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Votre carte vidéo peut utiliser l'accélération 3D matérielle avec XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s avec support EXPÉRIMENTAL de l'accélération 3D matérielle"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -192,7 +193,7 @@ msgstr ""
"Votre carte vidéo est supportée par XFree %s. Ce dernier peut źtre plus\n"
"performant en 2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -203,11 +204,56 @@ msgstr ""
"Veuillez noter que ce support est EXPÉRIMENTAL et qu'il peut BLOQUER VOTRE\n"
"ORDINATEUR."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
-msgstr "Xpmac (installation du pilote d'affichage)"
+msgstr "Xpmac (pilote d'affichage pour l'installation)"
+
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Personnalisée"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Carte graphique"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Moniteur"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Résolution"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Test"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Options"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Quitter"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -220,31 +266,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Choisissez un moniteur"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Moniteur"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Personnalisée"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Générique"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
msgstr "Vendeur"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -268,11 +310,11 @@ msgstr ""
"En cas de doute, choisissez un réglage moins performant mais\n"
"sans risque pour votre matériel."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Fréquence horizontale"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Fréquence verticale"
@@ -296,57 +338,42 @@ msgstr "16,7 millions de couleurs (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4,3 milliards de couleurs (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Résolutions"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Résolution"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Choix de la résolution et du nombre de couleurs"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Carte graphique : %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Annuler"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Désirez-vous tester la configuration ?"
@@ -355,71 +382,71 @@ msgstr "Désirez-vous tester la configuration ?"
msgid "Test of the configuration"
msgstr "Test de la configuration"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Type de clavier : %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Type de souris : %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Périphérique : %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Moniteur : %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Fréquence horizontale : %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Fréquence verticale : %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Carte graphique : %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Mémoire vidéo : %s ko\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Nombre de couleurs : %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Résolution : %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Serveur XFree86 : %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Pilote XFree86 : %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Interface graphique lors du démarrage"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -428,165 +455,189 @@ msgstr ""
"Voulez-vous que l'interface graphique soit\n"
"automatiquement lancée lors du démarrage ?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Votre carte graphique semble avoir un connecteur TV-OUT.\n"
+"Elle peut źtre configurée pour fonctionner avec le « frame-buffer ».\n"
+"\n"
+"Pour cela vous devez connecter votre carte graphique ą votre TV avant de "
+"démarrer votre ordinateur.\n"
+"Ensuite choisissez l'option « TVout » dans le menu d'amorēage\n"
+"\n"
+"Avez-vous cette fonction ?"
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "Quelle norme utilise votre téléviseur ?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Premier secteur de la partition d'amorēage"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Installation de SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Oł désirez-vous installer le programme d'amorēage ?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Installation de LILO ou Grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO en mode graphique"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
-msgstr "Démarrer ą partir de DOS/Windows (loadlin)"
+msgstr "Amorcer ą partir de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorēage"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Programme d'amorēage ą utiliser"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Installation du programme d'amorēage"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Périphérique d'amorēage"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne fonctionne pas avec des BIOS anciens)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Mode vidéo"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Mot de passe"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Mot de passe (vérif)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Protéger par mot de passe les options"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "Protection des options"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Vider le répertoire /tmp ą chaque démarrage"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Précisez la taille mémoire si nécessaire (%d Mo trouvés)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Autoriser plusieurs profils"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Indiquez la quantité de mémoire en Mo"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Le protection des options est inutile sans mot de passe"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Les mots de passe ne correspondent pas"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Message de démarrage"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Délai de l'Open Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Délai d'amorēage du noyau"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Autoriser le démarrage sur CD ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Autoriser le démarrage sur l'OF ?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "OS par défaut ?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -598,157 +649,158 @@ msgstr ""
"Cela implique que vous ayez déją un programme d'amorēage sur le disque dur "
"sur lequel le systčme démarre (ie: System Commander).\n"
"\n"
-"Sur quel disque est-ce que le systčme démarre ?"
+"Sur quel disque le systčme démarre-t'il ?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Voici les différentes entrées.\n"
-"Vous pouvez en rajouter de nouvelles ou changer les entrées existantes."
+"Vous pouvez en ajouter de nouvelles ou changer les entrées existantes."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ajouter"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Terminer"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Modifier l'élément sélectionné"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Quel type de systčme voulez-vous ajouter ?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Autres systčmes (SunOS, etc.)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Autres systčmes (MacOS, etc.)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Autres systčmes (Windows, etc.)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "fichier noyau"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Partition racine"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "options passées au noyau"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Préactivé en écriture"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Table des partitions"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Peu sūr"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Choix par défaut"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Taille du RamDisk"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Supprimer l'entrée"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Un label vide n'est pas autorisé"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Vous devez spécifier l'image noyau désirée"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Vous devez spécifier une partition racine"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ce label est déją utilisé"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Interface(s) %s %s détectée(s)"
+msgstr "Interface(s) détectée(s) : %s %s"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "En possédez-vous d'autres ?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Possédez-vous des interfaces %s ?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Oui"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Voir les informations sur le matériel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation du pilote pour la carte %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -757,7 +809,7 @@ msgstr ""
"Vous pouvez maintenant founir des options au module %s.\n"
"Veuillez noter que les adresses doivent źtre précédées de 0x, comme « 0x123 »"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -768,17 +820,17 @@ msgstr ""
"Les options sont de la forme « nom=valeur nom2=valeur2 ... ».\n"
"Par exemple, « io=0x300 irq=7 »"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Options du module :"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quel pilote %s faut-il essayer ?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -796,15 +848,15 @@ msgstr ""
"(La détection peut dans certains cas bloquer l'ordinateur,\n"
"mais sans lui causer de dommage.)"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Détection automatique"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Spécifier des options"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -813,55 +865,55 @@ msgstr ""
"Le chargement du module %s a échoué.\n"
"Désirez-vous réessayer avec d'autres paramčtres ?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "accčs aux programmes graphiques"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "accčs aux outils rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "autoriser « su »"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "accčs aux fichiers d'administration"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ce mot de passe est trop simple"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Le nom d'utilisateur ne peut contenir que des lettres minuscules,\n"
"des nombres, ainsi que les caractčres « - » et « _ »"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
msgid "The user name is too long"
msgstr "Ce nom d'utilisateur est trop long"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ce nom d'utilisateur est déją utilisé"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Ajouter un utilisateur"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +922,32 @@ msgstr ""
"Créer un compte utilisateur\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Accepter"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Nom et prénom"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Nom d'utilisateur"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Interpréteur"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Icōne"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Connexion automatique"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -903,19 +955,19 @@ msgstr ""
"Lors du démarrage, voulez-vous que le systčme connecte\n"
"automatiquement un utilisateur par défaut ?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Choisissez la langue :"
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -924,36 +976,36 @@ msgstr ""
"Vous pouvez choisir d'autres langues.\n"
"Elles seront disponibles aprčs l'installation."
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tout"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Pas de partage"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Le paquetage %s doit źtre installé. Voulez-vous l'installer ?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Voulez-vous exporter par NFS (protocole Unix) ou SMB (protocole Windows)?"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Le paquetage %s, qui est obligatoire, est manquant"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -963,48 +1015,49 @@ msgid ""
msgstr ""
"Voulez-vous permettre aux utilisateurs de partager certains sous-répertoires "
"de leur répertoire personnel (/home) ?\n"
-"Permettre cela autorisera les utilisateurs ą cliquer simplement sur "
-"« Partager » dans konqueror et nautilus.\n"
+"De cette faēon, les utilisateurs pouront simplement cliquer sur « Partager » "
+"dans konqueror (kde) et nautilus (gnome).\n"
"\n"
-"« Personnalisée » permet de choisir pour chaque utilisateur.\n"
+"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
-msgstr "Lancer userdrake"
+msgstr "Lancer Userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-"Le partage par utilisateur utilise le groupe « fileshare ».\n"
-"Vous pouvez utiliser userdrake pour rajouter un utilisater dans ce groupe."
+"Pour autoriser un utilisateur ą partager ses répertoires, vous devez ajouter "
+"cet utilisateur dans le groupe « fileshare ».\n"
+"Ceci peut se faire grāce au programme « Userdrake »."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Bienvenue aux pirates"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Trčs faible"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Élevée"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Plus élevée"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoļaque"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -1015,7 +1068,7 @@ msgstr ""
"donc pas źtre utilisé sur une machine connectée ą un réseau ou ą Internet.\n"
"Aucun mot de passe n'est requis."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1023,7 +1076,7 @@ msgstr ""
"Les mots de passe sont maintenant requis. Pour autant, il n'est pas\n"
"recommandé d'utiliser cette machine sur un réseau."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1031,7 +1084,7 @@ msgstr ""
"Ceci est le niveau de sécurité standard recommandé pour un ordinateur \n"
"utilisé pour se connecter ą Internet en tant que client."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1039,7 +1092,7 @@ msgstr ""
"Il y a déją des restrictions, et des vérifications automatiques sont "
"effectuées chaque nuit."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1054,7 +1107,7 @@ msgstr ""
"seulement connectée en tant que client sur Internet, vous devriez plutōt\n"
"choisir un niveau inférieur."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1063,32 +1116,50 @@ msgstr ""
"maintenant\n"
"complčtement clos (vu du réseau). La sécurité est maximale."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "Options de base de DrakSec"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "Choisissez le niveau de sécurité desiré"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Niveau de sécurité"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Utilisation de « libsafe » pour les serveurs"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Une bibliothčque qui protčge contre les attaques par débordement de pile.\n"
"(les plus fréquentes)"
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr "Administrateur sécurité (identifiant (login) ou adresse email)"
+#: ../../any.pm_.c:1189
+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 ""
+"Vous pouvez choisir ici la touche ou la combinaison de touches qui\n"
+"permettra de commuter entre les différents types de claviers\n"
+"(ex : latin et non latin)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1105,111 +1176,210 @@ 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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bienvenue dans GRUB, le chargeur de systemes d'exploitation"
#. -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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Utilisez les touches %c et %c pour faire votre choix."
#. -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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Appuyez sur <Entree> pour demarrer, sur <e> pour modifier la"
#. -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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "commande de demarrage ou sur <c> pour utiliser la ligne de commande."
#. -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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Demarrage automatique dans %d secondes."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
msgid "not enough room in /boot"
msgstr "il n'y a pas assez de place dans le répertoire /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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Bureau"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Menu Démarrer"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
"Vous ne pouvez pas installer le programme d'amorēage\n"
"sur une partition %s\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "pas d'aide disponible pour l'instant.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fichier"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fichier/_Quitter"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Moniteur nouveau style avec catégorisation"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Moniteur nouveau style"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Moniteur traditionnel"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Moniteur traditionnel Gtk+"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Démarrage entičrement graphique (Aurora)"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Menu d'amorēage"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Menu d'amorēage"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Installation de thčmes"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "Affiche le thčme dans la console"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "Impossible de créer un aperēu de l'image d'amorēage."
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Erreur"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "Sauvegarde de %s vers %s.old"
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "Impossible de conserver le message de LILO"
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "Copie de %s vers %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "Impossible de changer le message de LILO"
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "Message de LILO non trouvé"
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Impossible d'écrire dans /etc/sysconfig/bootsplash."
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "Ecriture de %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+"Impossible d'écrire dans /etc/sysconfig/bootsplash\n"
+"Fichier non trouvé"
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Impossible de lancer mkinitrd -f /boot/initrd-%s.img %s."
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr "construisez le RAMdisk avec 'mkinird -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+"Impossible de relancer LILO !\n"
+"Lancez « lilo » dans une ligne de commande en étant root pour terminer "
+"l'installation du thčme de LILO."
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "Relancez « lilo »"
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "Notice"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Installation réussie des thčmes pour l'image d'amorēage et pour LILO."
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "Echec d'installation du thčme"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1218,42 +1388,73 @@ msgstr ""
"Le choix du systčme d'exploitation est actuellement géré par %s.\n"
"Vous pouvez ici modifier la liste du menu d'amorēage."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Configurer"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "Sélection de l'image"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Thčmes"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+"\n"
+"Sélectionnez un thčme pour LILO\n"
+"et pour l'image pendant l'amorēage,\n"
+"vous pouvez les choisir \n"
+"séparément"
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "Ecran de LILO"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "Image pendant l'amorēage"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Choix pour l'interface utilisateur"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Lancer l'interface graphique au démarrage"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ne pas connecter automatiquement un utilisateur"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Connexion automatique (choisir utilisateur et environnement)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Impossible de lire le fichier /etc/inittab  : %s"
@@ -1297,63 +1498,114 @@ msgstr "Impossible de faire des captures d'écran avant le partitionnement"
msgid "Screenshots will be available after install in %s"
msgstr "Les captures d'écran seront disponibles aprčs l'installation dans %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "France"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgique"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "République Tchčque"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Allemagne"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grčce"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norvčge"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Sučde"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Pays-Bas"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italie"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Autriche"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "États-Unis"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Modčle inconnu"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "Nouveau"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Serveur"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Point de montage"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Veuillez taper la vitesse de gravure :"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "L'URL doit commencer par 'http:'"
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Serveur"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Point de montage : "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Options : %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr ""
"Avant d'utiliser un logiciel de partitionnement de disques,\n"
"il est prudent de faire une copie de sauvegarde de vos données !!"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "MISE EN GARDE"
@@ -1364,16 +1616,7 @@ msgid ""
"at the beginning of the disk"
msgstr ""
"Si vous voulez utiliser « aboot », vous devez réserver\n"
-"un espace libre d'au moins 2048 secteurs au début du disque."
-
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erreur"
+"un espace libre (d'au moins 2048 secteurs) au début du disque."
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
@@ -1400,7 +1643,7 @@ msgid "Please click on a partition"
msgstr "Veuillez cliquer sur une partition"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Détails"
@@ -1428,13 +1671,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Vide"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Autre"
@@ -1442,12 +1685,12 @@ msgstr "Autre"
msgid "Filesystem types:"
msgstr "Types des systčmes de fichiers :"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Créer"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Type"
@@ -1457,7 +1700,7 @@ msgstr "Type"
msgid "Use ``%s'' instead"
msgstr "Utilisez plutōt « %s »"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Supprimer"
@@ -1465,7 +1708,7 @@ msgstr "Supprimer"
msgid "Use ``Unmount'' first"
msgstr "Cliquez d'abord sur « Démonter »"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1473,72 +1716,72 @@ msgstr ""
"Aprčs avoir modifié le type de la partition %s, toutes les données\n"
"présentes sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Choisissez une partition"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Choisissez une autre partition"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Quitter"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Passer en mode expert"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Passer en mode normal"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "État précédent"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Désirez-vous tout de mźme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Quitter sans sauvegarder"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Désirez-vous réellement quitter sans écrire la table des partitions ?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Désirez-vous sauvegarder les modifications de /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Partitionnement automatique"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Supprimer toutes les partitions"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Davantage"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Informations sur les disques durs"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Toutes les partitions primaires sont utilisées"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Impossible d'ajouter une partition"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1546,31 +1789,31 @@ msgstr ""
"Pour pouvoir utiliser plus de partitions, vous devez d'abord en supprimer "
"une pour la remplacer par une partition étendue."
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Sauvegarder la table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Charger une table des partitions..."
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Deviner automatiquement la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Relire la table des partitions"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Auto-montage des périphériques amovibles"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Sélectionnez un fichier"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1579,11 +1822,11 @@ msgstr ""
"n'a pas la mźme taille que le disque.\n"
"Désirez-vous tout de mźme continuer ?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Attention"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1591,129 +1834,115 @@ msgstr ""
"Insérez une disquette dans le lecteur.\n"
"Toutes les données présentes sur cette disquette seront perdues."
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Tentative de lecture de l'organisation des partitions..."
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Informations détaillées"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Point de montage"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Options"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Redimensionner"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Déplacer"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formater"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Monter"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Ajouter au RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Ajouter au LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Démonter"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Supprimer du RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Supprimer du LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modifier le RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Utiliser pour loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Créer une nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Secteur de début : "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Type du systčme de fichiers : "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Point de montage : "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Préférence : "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Vous ne pouvez pas créer de nouvelle partition\n"
+"(vous avez atteint le nombre maximum de partitions primaires).\n"
+"Retirez d'abord une partition primaire et créez une partition étendue."
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Supprimer le fichier loopback ?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Changement du type de partition"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quel systčme de fichiers désirez-vous utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Passage de ext2 ą ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Oł désirez-vous monter le fichier loopback %s ?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Oł désirez-vous monter la partition %s ?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1721,136 +1950,141 @@ msgstr ""
"Il est impossible de désélectionner ce point de montage car il est\n"
"utilisé pour le loopback. Veuillez supprimer ce dernier d'abord."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Oł désirez-vous monter la partition %s ?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Calcul des limites du systčme de fichiers FAT ..."
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionnement"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Cette partition ne peut pas źtre redimensionnée"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr ""
"Toutes les données présentes sur cette partition\n"
"devraient avoir été sauvegardées."
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir redimensionné la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Choisissez la nouvelle taille"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nouvelle taille en Mo : "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Sur quel disque voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Secteur"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Sur quel secteur voulez-vous la déplacer ?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Déplacement"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Déplacement de la partition..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Choisissez un RAID existant"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "Nouveau"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Choisissez un LVM existant"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Nom LVM ?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Cette partition ne peut pas źtre utilisée pour du loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Nom du fichier loopback :"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Donnez un nom de fichier"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ce fichier est déją utilisé par un autre loopback.\n"
"Veuillez en choisir un autre."
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Le fichier existe déją. Faut-il l'utiliser ?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Options de montage"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Divers"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "périphérique"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "Niveau de RAID"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "Taille de bloc"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Soyez prudent : cette opération est dangereuse."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Quel type de partitionnement ?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Le paquetage %s doit źtre installé. Voulez-vous l'installer ?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1862,7 +2096,7 @@ msgstr ""
"au delą du 1024čme cylindre). Si vous n'utilisez pas LILO, vous n'avez\n"
"pas besoin de partition spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1874,7 +2108,7 @@ msgstr ""
"une autre partition juste pour le répertoire /boot en deēą du 1024čme "
"cylindre."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1884,48 +2118,48 @@ msgstr ""
"racine. Pour que votre systčme puisse démarrer, vous devez ajouter\n"
"une partition non RAID, spécifique pour le répertoire /boot."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La table des partitions de %s va maintenant źtre écrite sur le disque !"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Vous devez redémarrer pour que les modifications soient prises en compte"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Aprčs avoir formaté la partition %s, toutes les données présentes\n"
"sur cette partition seront perdues."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatage"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatage du fichier loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatage de la partition %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Cacher les fichiers"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Déplacer les fichiers sur la nouvelle partition"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1934,83 +2168,83 @@ msgstr ""
"Le répertoire %s contient déją des données\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Déplacement des fichiers sur la nouvelle partition..."
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Copie de %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Suppression de %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partition %s est maintenant connue comme %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Périphérique : "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettre de lecteur DOS supposée : %s:\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Type : "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nom : "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Début : secteur %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Taille : %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s secteurs"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylindre %d ą %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Non formatée\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Montée\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "Appartient au RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2019,7 +2253,7 @@ msgstr ""
"Fichier(s) loopback :\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2027,27 +2261,27 @@ msgstr ""
"Partition d'amorēage par défaut\n"
"(pour DOS/Windows, pas pour LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "RAID de niveau %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Taille de bloc %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "disques RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom du fichier loopback : %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2059,7 +2293,7 @@ msgstr ""
"soit une partition de pilotes systčmes,\n"
"vous ne devriez pas la toucher.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2071,62 +2305,57 @@ msgstr ""
"est nécessaire si vous avez plusieurs\n"
"systčmes d'exploitation. \n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Taille : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Géométrie : %s cylindres, %s tźtes, %s secteurs\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Information : "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "disques LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Table des partitions de type : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
msgid "on channel %d id %d\n"
msgstr "sur canal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Options : %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Choisissez la clef de chiffrement du systčme de fichiers"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Cette clef de chiffrement est trop courte (minimum %d caractčres)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Les clefs de chiffrement ne correspondent pas"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Clef de chiffrement"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Clef de chiffrement (confirmation)"
@@ -2174,23 +2403,23 @@ msgstr "Domaine"
msgid "Search servers"
msgstr "Rechercher les serveurs"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "le formatage au format %s de %s a échoué"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Impossible de formater %s au format %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "le montage de la partition %s dans le répertoire %s a échoué"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "Le démontage de %s a échoué : %s"
@@ -2207,35 +2436,35 @@ msgstr "avec /usr"
msgid "server"
msgstr "serveur"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Les partitions JFS doivent faire au moins 16 Mo."
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Les partitions ReiserFS doivent faire au moins 32 Mo."
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Les points de montage doivent commencer par /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Le point de montage %s est déją utilisé\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser une partition logique LVM pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ce répertoire doit rester dans la partition racine"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2243,27 +2472,27 @@ msgstr ""
"Vous avez besoin d'un vrai systčme de fichiers (ext2/ext3, reiserfs, xfs, ou "
"jfs) pour ce point de montage\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Vous ne pouvez pas utiliser de systčme de fichiers crypté pour le point de "
"montage %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Pas assez d'espace libre pour le partitionnement automatique"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Rien ą faire"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erreur lors de l'ouverture de %s en écriture : %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2271,152 +2500,78 @@ msgstr ""
"Une erreur est survenue : aucun périphérique valide n'a été trouvé pour\n"
"créer de nouvelles partitions. Veuillez vérifier votre matériel."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Vous n'avez défini aucune partition !"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-msgid "Auto-detect"
-msgstr "Auto-détecter"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr "Inconnu|Générique"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
-"auto-détecte tout seul les bons paramčtres.\n"
-"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
-"carte corrects ici. Vous n'avez qu'a sélectionner les paramčtres nécessaires "
-"ą votre carte TV si nécessaire."
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr "Modčle de carte :"
-
-#: ../../harddrake/bttv.pm_.c:197
-msgid "PLL setting :"
-msgstr "Réglage de la BVP (PLL)"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr "Nombre de tampons de capture"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "nombre de tampons pour la capture via mmap()"
-
-#: ../../harddrake/bttv.pm_.c:199
-msgid "Tuner type :"
-msgstr "Type de tuner :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr "Support de la radio :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr "activer le support de la radio"
-
-#: ../../harddrake/ui.pm_.c:12
-msgid "/_Quit"
-msgstr "/_Quitter"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Aide"
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr "/_Aide..."
-
#: ../../harddrake/ui.pm_.c:15
-msgid "/_About..."
-msgstr "/_A propos..."
-
-#: ../../harddrake/ui.pm_.c:22
msgid "Model"
msgstr "Modčle"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
msgstr "Modčle de disque dur"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
msgstr "Canal"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr "Nappe EIDE/Canal SCSI"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
"ceci est le bus physique sur lequel le périphérique est connecté (ex: PCI, "
"USB, ...)"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Module"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "le module du noyau GNU/Linux qui gčre ce périphérique"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr "Classe de matériel"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr "classe de matériel"
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Description"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr "ce champs décrit le périphérique"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
msgstr "IDs du matériel"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-"- péphériques PCI et USB: liste des identifiants vendeur, péphériques, sous-"
+"- péphériques PCI et USB : liste des identifiants vendeur, péphériques, sous-"
"vendeur, sous-péphériques PCI/USB"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr "Position sur le bus"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
@@ -2426,98 +2581,176 @@ msgstr ""
"- péphériques EIDE: ce péphériques est soit maitre soit esclave\n"
"- péphériques SCSI: the bus et l'identifiant SCSI"
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
msgid "Old device file"
msgstr "Ancien nom de péphérique"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr "ancien nom de périphérique statique utilisé dans le paquetage dev"
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
msgid "New devfs device"
msgstr "Nouveau périphérique devfs"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "nouveau nom de périphérique dynamique généré par le kernel"
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
msgstr "Nombre de bouttons"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr "le nom du vendeur de ce périphérique"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Quitter"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Aide"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Aide..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "Aide de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+"Description des champs:\n"
+"\n"
+
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_A propos..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "A propos de Harddrake"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Harddrake est l'outil de configuration Mandrake du matériel.\n"
+"Version:"
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Auteur:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
msgstr "Harddrake2 version"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
msgstr "Matériel détecté"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Configuration du module"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
msgstr "Informations"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr "Lancer l'outil de configuration"
-#: ../../harddrake/ui.pm_.c:158
-msgid "Configure module"
-msgstr "Configuration du module"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr "Détection en cours"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Veuillez patienter"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr "maītre"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
msgstr "esclave"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr "Vous pouvez configurer ici chaque paramčtre du module."
+
+#: ../../harddrake/ui.pm_.c:192
#, c-format
msgid "Running \"%s\" ..."
msgstr "Lancement de « %s »..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr "A propos de Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Auto-détecter"
-#: ../../harddrake/ui.pm_.c:280
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
-msgstr ""
-"Harddrake est l'outil de configuration Mandrake du matériel.\n"
-"Version:"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Inconnu|Générique"
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
-msgstr "Auteur:"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Inconnu|CPH05X (bt878) [nombreux vendeurs]"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr "Aide de Harddrake"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Inconnu|CPH06X (bt878) [nombreux vendeurs]"
-#: ../../harddrake/ui.pm_.c:287
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"Description of the fields:\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-"Description des champs:\n"
-"\n"
+"Pour la plupart des cartes TV récentes, le module bttv du noyau GNU/Linux "
+"auto-détecte tout seul les bons paramčtres.\n"
+"Si votre carte est mal détectée, vous pouvez donner les types de tuner et de "
+"carte corrects ici. Vous n'avez qu'a sélectionner les paramčtres nécessaires "
+"ą votre carte TV si nécessaire."
+
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Modčle de carte :"
+
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Type de tuner :"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "Nombre de tampons de capture"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "nombre de tampons pour la capture via mmap()"
+
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "Réglage de la BVP (PLL)"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Support de la radio :"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "activer le support de la radio"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/fr/drakx-help.xml
@@ -2725,7 +2958,7 @@ msgstr ""
"associees. Cliquez sur « OK », lorsque vous źtes prźt ą continuer.\n"
"\n"
"Les paquetages sont regroupes selon la nature de l'installation. Les\n"
-"groupes sont divises en quatre sections principales :\n"
+"groupes sont divises en quatre sections principales :\n"
"\n"
" * « Station de travail »: si vous comptez utiliser votre machine ainsi,\n"
"selectionner un ou plusieurs groupes y correspondant.\n"
@@ -2748,16 +2981,16 @@ msgstr ""
"apparaītre une courte description de ce groupe. Si vous deselectionnez tous\n"
"les groupes lors d'une installation standard (par opposition ą une mise ą\n"
"jour), un dialogue apparaītra proposant differentes options pour une\n"
-"installation minimale :\n"
+"installation minimale :\n"
"\n"
-" * « Avec X » : installe le moins de paquetages possible pour avoir un\n"
+" * « Avec X » : installe le moins de paquetages possible pour avoir un\n"
"environnement de travail graphique ;\n"
"\n"
-" * « Avec la documentation de base » : installe le systčme de base plus\n"
+" * « Avec la documentation de base » : installe le systčme de base plus\n"
"certains utilitaires de base et leur documentation. Cette installation est\n"
"utilisable comme base pour monter un serveur ;\n"
"\n"
-" * « Installation vraiment minimale » : installera le strict minimum\n"
+" * « Installation vraiment minimale » : installera le strict minimum\n"
"necessaire pour obtenir un systčme GNU/Linux fonctionnel, en ligne de\n"
"commande. Cette installation prends ą peu prčs 65Mo.\n"
"\n"
@@ -2766,8 +2999,8 @@ msgstr ""
"paquetage desire ou si vous voulez avoir le contrōle total de votre\n"
"installation.\n"
"\n"
-"Si vous avez demarre l'installation en mode \"mise ą jour\", vous pouvez\n"
-"\"de-selectionner\" tous les groupes afin d'eviter l'installation de\n"
+"Si vous avez demarre l'installation en mode « mise ą jour », vous pouvez\n"
+"« de-selectionner » tous les groupes afin d'eviter l'installation de\n"
"nouveaux programmes. Cette option est trčs utile pour restaurer un systčme\n"
"defectueux."
@@ -2878,7 +3111,7 @@ msgstr ""
"reseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
"« Annuler ».\n"
"\n"
-"Les types de connexion supportees sont : modem telephonique, modem ISDN,\n"
+"Les types de connexion supportees sont : modem telephonique, modem ISDN,\n"
"connexion ADSL, modem cāble ou simplement LAN (reseau ethernet).\n"
"\n"
"Nous ne detaillerons pas ici chacune des configurations possible. Assurez\n"
@@ -3077,7 +3310,7 @@ msgstr ""
"predefini. Vous pouvez y acceder en demarrant l'ordinateur sur le CDROM.\n"
"Selon la version de votre « BIOS », il faut lui specifier de demarrer sur\n"
"le CDROM. Vous devriez revenir au disquette de demarrage dans deux cas\n"
-"precis :\n"
+"precis :\n"
"\n"
" * Au moment d'installer le « Programme d'amorce », DrakX va reecrire sur\n"
"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
@@ -3190,17 +3423,17 @@ msgstr ""
"\n"
"Si vos partitions ne sont pas definies, vous devrez les creer en utilisant\n"
"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
-"disponibles :\n"
+"disponibles :\n"
"\n"
-" * « Utilisez l'espace disponible » : cette option tentera simplement de\n"
+" * « Utilisez l'espace disponible » : cette option tentera simplement de\n"
"partitionner automatiquement l'espace inutilise sur votre disque. Il n'y\n"
"aura pas d'autre question.\n"
"\n"
-" * « Utiliser les partitions existantes » : l' assistant a detecte une ou\n"
+" * « Utiliser les partitions existantes » : l'assistant a detecte une ou\n"
"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
"utiliser, choisissez cette option.\n"
"\n"
-" * « Utilisez l'espace libre sur une partition Windows » : si Microsoft\n"
+" * « Utilisez l'espace libre sur une partition Windows » : si Microsoft\n"
"Windows est installe sur votre disque et prend l'ensemble de l'espace vous\n"
"devez creer une place pour votre installation Mandrake. Pour ce faire, vous\n"
"pouvez tout effacer (voir « effacer tout le disque » ou « Mode expert ») ou\n"
@@ -3277,15 +3510,15 @@ msgstr ""
"systčme. Vous aurez alors le choix de demarrer GNU/Linux ou Windows (s'il\n"
"est present).\n"
"\n"
-"Le bouton « Avancee » (en mode Expert uniquement) permet deux autres\n"
-"options :\n"
+"Le bouton « Avancé » (en mode Expert uniquement) permet deux autres\n"
+"options :\n"
"\n"
" * « Generer une disquette d'auto-install »: Pour creer une disquette\n"
"d'installation qui permettra de reproduire l'installation que vous venez de\n"
"realiser sans l'aide d'un administrateur.\n"
"\n"
" Notez que les deux options suivantes apparaissent aprčs avoir clique sur\n"
-"le bouton :\n"
+"le bouton :\n"
"\n"
" * « Replay ». C'est une installation partiellement automatique oł il\n"
"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
@@ -3299,7 +3532,7 @@ msgstr ""
" * « Sauvegarder les paquetages selectionnes » (*) sauve la selection des\n"
"paquetages installes. Puis, lorsque vous ferez une autre installation,\n"
"inserer la disquette dans le lecteur et acceder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante : « linux defcfg=\"floppy\" ».\n"
+"[f1], et entrez la commande suivante : « linux defcfg=\"floppy\" ».\n"
"\n"
"(*) Vous avez besoin d'une disquette formatee avec FAT (pour la creer sous\n"
"Linux, tapez « mformat a: »)"
@@ -3342,7 +3575,7 @@ msgstr ""
"\n"
"Sachez qu'il n'est pas necessaire de reformater toutes les partitions\n"
"existantes. Vous devez reformater les partitions contenant le systčme\n"
-"d'exploitation, (tel que : « / », « /usr » ou « /var ») mais vous n'avez\n"
+"d'exploitation, (tel que : « / », « /usr » ou « /var ») mais vous n'avez\n"
"pas ą reformater les partitions de donnees que vous voulez garder,\n"
"habituellement « /home ».\n"
"\n"
@@ -3400,7 +3633,7 @@ msgstr ""
"\n"
"En choisissant « Oui », la liste des sites depuis lesquels les mises ą\n"
"jours peuvent źtre tele-chargees est affichee. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparaīt : verifiez la\n"
+"proche. Puis un arbre de choix des paquetages apparaīt : verifiez la\n"
"selection, puis cliquez sur « Installer » pour tele-charger et installer\n"
"les mises ą jour selectionnees, ou « Annuler » pour abandonner."
@@ -3692,24 +3925,24 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
"DrakX doit maintenant savoir quel type d'installation vous desirez\n"
-"realiser. Deux types d'installations sont proposes : Par defaut (« \n"
+"realiser. Deux types d'installations sont proposes : Par defaut (« \n"
"Recommandee »), qui limite le nombre de questions ą l'utilisateur au\n"
"minimum ou « Expert » qui vous permet de selectionner individuellement\n"
"chacune des composantes ą installer. Également, on vous propose de faire\n"
"une « Installation » ou une « Mise ą jour » d'un systčme Mandrake Linux\n"
-"existant :\n"
+"existant :\n"
"\n"
-" * « Installation » : balaye l'ancien systčme. En fait, selon ce que votre\n"
+" * « Installation » : balaye l'ancien systčme. En fait, selon ce que votre\n"
"machine comporte, vous pourrez garder intacte certaines des anciennes\n"
"partition (Linux ou autres) ;\n"
"\n"
-" * « Mise ą jour » : cette classe d'installation permet de simplement\n"
+" * « Mise ą jour » : cette classe d'installation permet de simplement\n"
"mettre ą jours les paquetages qui composent votre systčme Mandrake Linux.\n"
"Elle conserve les partitions existantes, ainsi que la configuration des\n"
"utilisateurs. Toutes les autres etapes de l'installation sont accessibles\n"
"en comparaison avec une installation classique ;\n"
"\n"
-" * « Mise ą jour des paquetages uniquement » : Cette nouvelle classe\n"
+" * « Mise ą jour des paquetages uniquement » : Cette nouvelle classe\n"
"d'installation permet de mettre ą jour un systčme Mandrake Linux existant,\n"
"tout en gardant sa configuration inchangee. L'ajout de nouveaux paquetages\n"
"durant la mise ą jour est cependant possible.\n"
@@ -3966,13 +4199,13 @@ msgstr ""
"\n"
"En cas de doute, DrakX affiche differentes options.\n"
"\n"
-" * « Programme d'amorēage ą utiliser » vous propose trois choix :\n"
+" * « Programme d'amorēage ą utiliser » vous propose trois choix :\n"
"\n"
-" * « GRUB » : si vous preferer GRUB (menu texte).\n"
+" * « GRUB » : si vous preferer GRUB (menu texte).\n"
"\n"
-" * « LILO en mode graphique » : si vous preferez l'interface graphique.\n"
+" * « LILO en mode graphique » : si vous preferez l'interface graphique.\n"
"\n"
-" * « LILO en mode texte » : si vous preferez la version texte de LILO.\n"
+" * « LILO en mode texte » : si vous preferez la version texte de LILO.\n"
"\n"
" * « Peripheriques de demarrage »: dans la plupart des cas, vous n'aurez\n"
"pas ą changer le disque par defaut (« /dev/hda », mais si vous le desirez,\n"
@@ -3988,7 +4221,7 @@ msgstr ""
"pour demarrer le systčme. Aussi, assurez vous de bien savoir ce que vous\n"
"faites si vous modifiez les options. !!\n"
"\n"
-"En cliquant sur « Avancee », vous aurez accčs ą plusieurs autres options de\n"
+"En cliquant sur « Avancé », vous aurez accčs ą plusieurs autres options de\n"
"configuration. Sachez que celles-ci sont reservees aux experts en la\n"
"matičre.\n"
"\n"
@@ -4148,8 +4381,8 @@ msgstr ""
"\n"
"Il peut arriver que DrakX soit incapable de verifier les options\n"
"necessaires. Dans ce cas, vous devrez les determiner manuellement.\n"
-"Consultez le guide d'utilisation (Chapitre 3, section \"Obtenir des\n"
-"informations sur votre materiel\") pour quelques astuces pour retrouver les\n"
+"Consultez le guide d'utilisation (Chapitre 3, section « Obtenir des\n"
+"informations sur votre materiel ») pour quelques astuces pour retrouver les\n"
"paramčtres necessaires dans la documentation de vos peripheriques, sur le\n"
"site du fabricant (si vous avez un accčs ą Internet) ou ą partir des menus\n"
"de Microsoft Windows (si vous utilisiez ce peripherique avec Windows)."
@@ -4396,7 +4629,7 @@ msgstr ""
"sur « OK », vous n'aurez aucun moyen de récupérer ces données et\n"
"partitions, y compris celles de Windows."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4408,7 +4641,7 @@ msgstr ""
"désynchronisée par rapport ą votre medium d'Installation (veuillez créer une "
"disquette de boot plus récente)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Vous devez aussi formater %s"
@@ -4438,20 +4671,20 @@ msgstr ""
"\n"
"Confirmez vous l'installation de ces serveurs ?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "On ne peut pas utiliser l'option broadcast sans domaine NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insérez une disquette formatée en FAT (format DOS/Windows) %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Cette disquette n'est pas au format DOS/Windows"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4459,7 +4692,7 @@ msgstr ""
"Pour utiliser cette sauvegarde de sélection des paquetages, veuillez "
"redémarrer l'installation avec la commande « linux defcfg=floppy »."
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erreur lors de la lecture du fichier %s"
@@ -4498,7 +4731,7 @@ msgstr ""
"\n"
"Désirez-vous tout de mźme continuer ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Vous devez disposer d'une partition FAT montée en /boot/efi"
@@ -4688,12 +4921,12 @@ msgstr ""
"Une erreur est survenue et semble difficile ą résoudre correctement.\n"
"Vous pouvez continuer, mais ą vos risques et périls."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Point de montage en double : %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4707,12 +4940,12 @@ msgstr ""
"sur un ordinateur fonctionnant correctement : « rpm -qpl Mandrake/RPMS/*."
"rpm »\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Bienvenue sur %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Aucun lecteur de disquette disponible"
@@ -4722,7 +4955,7 @@ msgstr "Aucun lecteur de disquette disponible"
msgid "Entering step `%s'\n"
msgstr "Démarrage de l'étape « %s »\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4734,77 +4967,77 @@ msgstr ""
"essayer de procéder ą une installation en mode texte. Pour cela, appuyez\n"
"sur la touche « F1 » aprčs l'amorēage sur cédérom puis entrez « text »."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Classe d'installation"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Veuillez choisir une des classes d'installation ci-dessous :"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Sélection des groupes de paquetages"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Sélection individuelle des paquetages"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Taille totale : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Mauvais paquetage"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nom : %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Version : %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Taille : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Importance : %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Il n'y a pas assez de place pour installer ce paquetage"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Les paquetages suivants vont źtre installés"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Les paquetages suivants vont źtre désinstallés"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Vous ne pouvez pas sélectionner/désélectionner ce paquetage"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ce paquetage est nécessaire, vous ne pouvez pas l'enlever."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Vous ne pouvez pas désélectionner ce paquetage. Il est déją installé."
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4812,75 +5045,75 @@ msgstr ""
"Ce paquetage doit źtre mis ą jour.\n"
"Źtes-vous certain de vouloir le désélectionner ?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Vous ne pouvez pas désélectionner ce paquetage, il doit źtre mis ą jour."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Montrer les paquetages sélectionnés automatiquement"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Charger/Sauver sur disquette"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Mise-ą-jour de la sélection des paquetages"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Installation minimale"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Choisissez les paquetages que vous voulez installer"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Installation"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Estimation en cours"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Veuillez patienter, préparation de l'installation..."
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paquetages"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installation du paquetage %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepter"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Refuser"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4897,17 +5130,17 @@ msgstr ""
"Si vous ne le possédez pas, cliquez sur « Annuler » afin de ne rien "
"installer ą partir de ce Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Souhaitez-vous tout de mźme continuer ?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Erreur lors du tri des paquetages :"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Erreur lors de l'installation des paquetages :"
@@ -5194,7 +5427,7 @@ msgstr ""
"propriété exclusive de leurs auteurs respectifs et sont protégés au titre \n"
"des droits de propriété intellectuelle et de copyright applicables aux "
"Logiciels.\n"
-"Les marques \"Mandrake\" et \"Mandrake Linux\" ainsi que les \n"
+"Les marques « Mandrake » et « Mandrake Linux » ainsi que les \n"
"logotypes associés sont déposés par MandrakeSoft S.A. \n"
"\n"
"\n"
@@ -5212,106 +5445,106 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
-msgstr "Etes vous sur de refuser cette license ?"
+msgstr "Etes vous sur de refuser cette license ?"
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Clavier"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Veuillez choisir votre type de clavier."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Voici la liste complčte des claviers disponibles"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Quelle classe d'installation désirez-vous utiliser ?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installation/Mise-ą-jour"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Désirez-vous faire une installation ou une mise-ą-jour ?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Recommandée"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Mise-ą-jour"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Mise-ą-jour seulement des paquetages"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Port souris"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Veuillez choisir le port série sur lequel votre souris est connectée."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Émulation des boutons"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Émulation du bouton n° 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Émulation du bouton n° 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Configuration des cartes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Configuration IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "Aucune partition disponible"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Examen des partitions afin d'identifier les points de montage"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Choix des points de montage"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5328,7 +5561,7 @@ msgstr ""
"\n"
"Źtes-vous d'accord pour perdre toutes vos partitions ?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5336,7 +5569,7 @@ msgstr ""
"DiskDrake ne peut pas lire la table des partitions de faēon satisfaisante.\n"
"Vous pouvez continuer, mais ą vos risques et périls."
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5347,73 +5580,75 @@ msgstr ""
"de\n"
"créer la partition d'amorēage avec DiskDrake."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr ""
"Impossible de trouver une partition racine pour procéder ą une mise ą jour."
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Partition racine"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Quelle est la partition racine (/) de votre systčme ?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Vous devez redémarrer pour que les modifications apportées ą la\n"
"table des partitions soient prises en compte"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Sélectionnez les partitions que vous souhaitez formater"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Vérifier la présence de secteurs endommagés ?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formatage des partitions"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Création et formatage du fichier %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"Erreur ą la vérification du systčme de fichiers %s. Voulez-vous corriger les "
+"erreurs ? (attention, vous pouvez perdre des données)"
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Le swap est insuffisant pour achever l'installation, veuillez en ajouter."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
"Recherche des paquetages disponibles et reconstruction de la base de donnée "
"rpm..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Recherche des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Recherche des paquetages ą mettre ą jour..."
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
msgid "Looking at packages already installed..."
msgstr "Recherche des paquetages déja installés..."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Recherche des paquetages ą mettre ą jour..."
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5422,7 +5657,7 @@ msgstr ""
"Votre systčme ne dispose pas d'assez d'espace libre pour l'installation ou "
"la mise-ą-jour (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5434,35 +5669,35 @@ msgstr ""
"Le format est le mźme que celui des disquettes générées pour l'installation "
"automatisée."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Charger ą partir d'une disquette..."
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Chargement depuis la disquette..."
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Sélection des paquetages"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Insérez une disquette contenant une sélection de paquetages."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Sauvegarder sur disquette..."
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "La taille sélectionnée est plus importante que la place disponible"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Type d'installation"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5470,15 +5705,15 @@ msgstr ""
"Vous n'avez sélectionné aucun groupe de paquetages.\n"
"Veuillez choisir l'installation minimale désirée :"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Avec X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Avec la documentation de base (recommandé !)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installation vraiment minimale (et en particulier pas d'urpmi)"
@@ -5497,11 +5732,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cédérom « %s »"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Préparation de l'installation"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5510,21 +5745,21 @@ msgstr ""
"Installation du paquetage %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Configuration post-installation"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Insérez la disquette d'amorēage utilisée dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Insérez la disquette de mise-ą-jour de modules dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5603,7 +5838,7 @@ msgstr ""
# I added an example (install on a networked machine, and the server is connected to the Internet).
# / J'ai rajouté un exemple (voir texte) car cela me semble plus clair comme ēą.
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5624,175 +5859,199 @@ msgstr ""
"\n"
"Voulez-vous installer les mises-ą-jour ?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Connexion au site web de Mandrake Linux pour obtenir la liste des serveurs "
"miroirs disponibles..."
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Choisissez un serveur miroir d'oł télécharger les paquetages"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Téléchargement de la liste des paquetages disponibles..."
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Quelle est votre fuseau horaire ?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Horloge systčme réglée sur le Temps Universel (GMT)"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Serveur NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Serveur CUPS distant"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Pas d'imprimante"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Possédez-vous une carte son ISA ?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Lancez « sndconfig » aprčs l'installation pour configurer la carte son"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Aucune carte son detectée. Essayez avec « harddrake » aprčs l'installation"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Résumé"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Souris"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Fuseau horaire"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Imprimante"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Carte RNIS/ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Carte son"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Carte TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr "Windows PDC"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Domaine Windows"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Fichiers locaux"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Mot de passe root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Pas de mot de passe"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ce mot de passe est trop court (minimum %d caractčres)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentification"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Authentification LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "Racine (dn) LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Serveur LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Authentification NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Domaine NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Serveur NIS"
#: ../../install_steps_interactive.pm_.c:1138
-msgid "Authentication Windows PDC"
-msgstr "Authentification Windows PDC"
-
-#: ../../install_steps_interactive.pm_.c:1139
-msgid "Windows Domain"
-msgstr "Domaine Windows"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
+"Pour que cela fonctionne avec un Contrōleur Principal de Domaine (PDC) "
+"Windows 2000, vous devrez probablement dire ą l'administrateur de lancer : C:"
+"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add et de "
+"redémarrer le serveur.\n"
+"Vous aurez aussi besoin des nom utilisateur et mot de passe d'un "
+"administrateur de Domaine pour joindre la machine au Domaine Windows(TM).\n"
+"Si le réseau n'est pas encore activé, le domaine sera joint aprčs l'étape de "
+"configuration du réseau.\n"
+"Si cette étape échoue pour quelque raison que ce soit et que "
+"l'authentification de domaine ne fonctionne pas, lancez 'smbpasswd -j DOMAIN "
+"-U USER%PASSWORD' en utilisant votre domaine Windows(tm), et vos nom "
+"d'administateur et mot de passe, aprčs le démarrage du systčme.\n"
+"La commande 'wbinfo -t' permet de tester le fonctionnement de "
+"l'authentification."
#: ../../install_steps_interactive.pm_.c:1140
-msgid "PDC Server Name"
-msgstr "Serveur de nom PDC"
+msgid "Authentication Windows Domain"
+msgstr "Authentification au Domaine Windows"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
-msgstr ""
+msgid "Domain Admin User Name"
+msgstr "Nom d'administrateur de domaine"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
+msgstr "Mot de passe d'administration de domaine"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5823,21 +6082,21 @@ msgstr ""
"majeurs.\n"
"\n"
"Si vous voulez créer une disquette d'amorēage pour votre systčme, insérez \n"
-"une disquette dans le premier lecteur et appuyer sur \"Ok\"."
+"une disquette dans le premier lecteur et appuyer sur « Ok »."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Premier lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Second lecteur de disquette"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Abandonner"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5868,7 +6127,7 @@ msgstr ""
"Désirez-vous créer une disquette d'amorēage pour votre systčme ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5882,30 +6141,30 @@ msgstr ""
"créer une disquette de boot 1.44 Mb va probablement échouer,\n"
"parce que XFS a besoin d'un pilote trčs gros)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Désolé, aucun lecteur de disquette ne semble disponible"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Choisissez le lecteur de disquette ą utiliser pour\n"
"créer votre disquette d'amorēage."
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insérez une disquette dans le %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Création de la disquette d'amorēage..."
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Préparation du programme d'amorēage..."
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5919,11 +6178,11 @@ msgstr ""
"démarrer\n"
"votre machine."
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Désirez-vous utiliser « aboot » ?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5932,16 +6191,16 @@ msgstr ""
"Désirez-vous forcer l'installation au risque de détruire la\n"
"premičre partition du disque ?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Installation du programme d'amorēage..."
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"L'installation du programme d'amorēage a échoué pour la raison suivante :"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5961,17 +6220,17 @@ msgstr ""
"Au prochain démarrage vous devriez voir apparaītre l'invite du\n"
"programme d'amorēage."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Insérez une disquette vierge dans le lecteur %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Création de la disquette d'auto-installation..."
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5981,7 +6240,7 @@ msgstr ""
"\n"
"Voulez-vous vraiment quitter maintenant ?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6013,15 +6272,15 @@ msgstr ""
"Des informations sur la configuration de votre systčme sont \n"
"disponibles dans le Guide de l'Utilisateur de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Créer une disquette d'auto-installation"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6035,15 +6294,15 @@ msgstr ""
"\n"
"Vous pouvez préférer rejouer l'installation.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatisée"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Rejouer"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Sauvegarder la sélection des paquetages..."
@@ -6071,24 +6330,35 @@ msgstr "le programme « consolehelper » est introuvable"
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Avancé"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Basique"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Précédent"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Suivant ->"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Choix erroné, veuillez recommencer\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Que choisissez-vous ? (%s par défaut) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6097,35 +6367,35 @@ msgstr ""
"Les champs que vous devrez remplir sont :\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Votre choix ? (0/1, défaut « %s »)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Bouton « %s » : %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Désirez-vous cliquer sur ce bouton ?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr "Saisissez `void' pour une entrée vide"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Que choisissez-vous ? (« %s » par défaut%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Il y a beaucoup de choses ą choisir (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6135,7 +6405,7 @@ msgstr ""
"souhaitez modifier, ou appuyez juste sur <Entrée> pour continuer.\n"
"Votre choix ? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6144,327 +6414,379 @@ msgstr ""
"=> Notez qu'un message a changé :\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Revalider"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "tchčque (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "allemand"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak standard"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "espagnol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "finlandais"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "franēais"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "norvégien"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "polonais"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "russe"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "suédois"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "anglais"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "américain (États-Unis)"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "albanais"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "arménien (ancien)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "arménien (machine ą écrire)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "arménien (phonétique)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "azerbaļdjanais (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "belge"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "activer"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "bulgare (phonétique)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "bulgare (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "brésilien"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "estonien"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "blélorusse"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "suisse (allemand)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "suisse (franēais)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "tchčque (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "allemand (sans touches mortes)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "danois"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak américain"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak norvégien"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak suédois"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "estonien"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "géorgien (disposition russe)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "géorgien (disposition latine)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "grec"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "hongrois"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "croate"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "israélien"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "israélien (phonétique)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "iranien"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "islandais"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "italien"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "japonais 106 touches"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "coréen"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "latino-américain"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "letton"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "lituanien (AZERTY, ancien modčle)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "lituanien (AZERTY, nouveau modčle)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "lituanien « ligne de nombres » QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "lituanien « phonétique » QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "letton"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "macédonien"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "serbe (cyrillique)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "hollandais"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "polonais (QWERTY)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "polonais (QWERTZ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "portugais"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "canadien (Québec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "roumain (QWERTZ)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "roumain (QWERTY)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "russe (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "slovénien"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "slovaque (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "slovaque (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "serbe (cyrillique)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "tamoul"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "tamoul (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "tamoul (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "thaļlandais"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "tadjik"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "turc (modčle traditionnel « F »)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "turc (modčle moderne « Q »)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "ukrainien"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "américain (international)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnamien « colonne numérique » QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "yougoslave (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Touche Alt droite"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Deux touches Shift simultanément"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Touches Control et Shift simultanément"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "Touche CapsLock (verrouillage majuscule)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Touches Ctrl et Alt simultanément"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Touches Alt et Shift simultanément"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "Touche « Menu »"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Touche « Windows » gauche"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Touche « Windows » droite"
@@ -6473,35 +6795,35 @@ msgstr "Touche « Windows » droite"
msgid "Circular mounts %s\n"
msgstr "Points de montage circulaires %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Enlevez d'abord les volumes logiques\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
msgid "a number"
msgstr "un nombre"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "%d nombres séparés par des virgules"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr "%d chaīnes séparées par des virgules"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr "nombres séparés par des virgules"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
msgstr "chaīnes séparées par des virgules"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"Le support du PCMCIA n'est plus disponible avec les noyaux 2.2. Veuillez "
"utiliser un noyau 2.4."
@@ -6606,51 +6928,43 @@ msgstr "aucun"
msgid "No mouse"
msgstr "Pas de souris"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Veuillez tester votre souris"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Pour activer la souris,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "VEUILLEZ FAIRE TOURNER LA MOLETTE !"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Terminer"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Suivant ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Précédent"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Est-ce correct ?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Information"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Développer l'arborescence"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Réduire l'arborescence"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Basculer entre tri alphabétique et tri par groupes"
@@ -6677,6 +6991,10 @@ 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
msgid "use dhcp"
msgstr "utiliser « dhcp »"
@@ -6705,7 +7023,7 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme.\n"
"La connexion ne peut donc pas źtre configurée."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Choisissez la carte réseau"
@@ -6718,7 +7036,7 @@ msgstr "Veuillez choisir la carte réseau qui sera connectée ą Internet"
msgid "no network card found"
msgstr "Aucune carte réseau n'a été identifiée"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Configuration du réseau"
@@ -6734,7 +7052,7 @@ msgstr ""
"Celui-ci doit źtre pleinenement qualifié, comme par exemple :\n"
"mamachine.monlabo.masociete.com"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Nom d'hōte :"
@@ -6762,7 +7080,7 @@ msgstr "Quel est le type de votre connexion RNIS/ISDN ?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6891,43 +7209,43 @@ msgstr "Veuillez choisir le port série sur lequel votre modem est connecté."
msgid "Dialup options"
msgstr "Options d'appel"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nom de la connexion"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Numéro de téléphone"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Identifiant de connexion"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Basée sur un script"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Manuelle par terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nom de domaine"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "serveur DNS principal (optionnel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "serveur DNS secondaire (optionnel)"
@@ -7041,13 +7359,13 @@ msgstr "Choisissez le profil ą configurer"
msgid "Use auto detection"
msgstr "Utiliser la détection automatique"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Détection des périphériques..."
@@ -7165,7 +7483,7 @@ msgstr ""
"section « réseau ») ou la commande « net_monitor ». Si votre connexion ne "
"fonctionne pas, vous pouvez essayer de relancer la configuration."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7179,7 +7497,7 @@ msgstr ""
"Sinon la configuration actuelle sera écrasée par les modifications que vous "
"ferez."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7189,42 +7507,42 @@ msgstr ""
"Chaque champ doit źtre complété avec une adresse IP en notation\n"
"décimale pointée (par exemple, 12.34.56.78)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Configuration du périphérique réseau %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (pilote %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adresse IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Masque de sous-réseau"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Attribution automatique de l'adresse IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Exécuter au démarrage"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adresse IP doit ressembler ą quelque chose comme « 192.168.1.20 »"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7237,40 +7555,40 @@ msgstr ""
"Vous pouvez également indiquer l'adresse IP de la passerelle\n"
"si votre réseau local en possčde une."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Serveur DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passerelle (p.ex. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Périphérique passerelle"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Configuration des serveurs mandataires (proxy)"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Serveur mandataire HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Serveur mandataire FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Identifiant de la carte réseau (utile pour les portables)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "La syntaxe doit źtre http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "La syntaxe doit źtre ftp://..."
@@ -7282,7 +7600,7 @@ msgstr "Configuration de l'accčs Internet"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voulez-vous vous connecter ą Internet maintenant ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Test de votre connexion..."
@@ -7310,43 +7628,43 @@ msgstr "Configuration de la connexion"
msgid "Please fill or check the field below"
msgstr "Veuillez compléter ou vérifier les champs ci-dessous"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "n° IRQ de la carte"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Plage mémoire (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "E/S de la carte"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "E/S_O de la carte"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "E/S_1 de la carte"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Votre numéro de téléphone personnel"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Fournisseur d'accčs (ex. : fournisseur.fr)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Numéro de téléphone pour l'accčs"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "1er DNS du fournisseur (optionnel)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "2čme DNS du fournisseur (optionnel)"
@@ -7354,28 +7672,28 @@ msgstr "2čme DNS du fournisseur (optionnel)"
msgid "Choose your country"
msgstr "Choisissez votre pays"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Numérotation"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Vitesse de connexion"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Temps maxi pour établir la connexion (en sec.)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Nom d'utilisateur du compte"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Mot de passe du compte"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr "Royaume-Uni"
@@ -7411,7 +7729,7 @@ msgstr "Mauvais fichier de sauvegarde"
msgid "Error writing to file %s"
msgstr "Erreur d'écriture dans le fichier %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7458,7 +7776,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7486,7 +7804,7 @@ msgstr "Imprimante distante"
msgid "Printer on remote CUPS server"
msgstr "Imprimante sur serveur CUPS distant"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Imprimante sur serveur LPD distant"
@@ -7502,7 +7820,7 @@ msgstr "Imprimante sur serveur SMB (Windows 95/98/NT)"
msgid "Printer on NetWare server"
msgstr "Imprimante sur serveur NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Indiquer l'adresse du périphérique d'impression"
@@ -7510,110 +7828,110 @@ msgstr "Indiquer l'adresse du périphérique d'impression"
msgid "Pipe job into a command"
msgstr "Impression vers une commande shell"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Modčle inconnu"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Imprimantes locales"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Imprimantes distantes"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sur port parallčle \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", imprimante USB \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", périphérique multi-fonctions sur le port parallčle \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", périphérique USB multi-fonctions"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", périphérique HP JetDirect multi-fonctions"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", périphérique multi-fonctions"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", impression sur %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "sur serveur d'impression LPD « %s », imprimante « %s »"
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " sur serveur d'impression LPD « %s », imprimante « %s »"
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", hōte TCP/IP « %s », port « %s »"
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "sur serveur Windows « %s », partage « %s »"
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " sur serveur Windows « %s », partage « %s »"
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "sur serveur Novell « %s », imprimante « %s »"
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " sur serveur Novell « %s », imprimante « %s »"
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", en utilisant la commande %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Imprimante ą accčs direct (pas de pilote)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(sur %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(sur cette machine)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sur serveur CUPS « %s »"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Défaut)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Type de connexion de l'imprimante"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Quel est le type de connexion de l'imprimante ?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7623,15 +7941,19 @@ msgstr ""
"Si vous utilisez un serveur CUPS distant, vous n'avez pas besoin de "
"configurer d'imprimante ici. Elles seront automatiquement détectées."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Autodétection d'imprimante (locale, réseau, et SMB)"
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "Configuration de CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Specifiez le serveur CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7653,7 +7975,7 @@ msgstr ""
"éventuellement le numéro de port afin d'obtenir les informations sur les "
"imprimantes. Sinon, laissez ces champs vides."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7671,32 +7993,32 @@ msgstr ""
"relancer CUPS (ą l'aide de la commande : « service cups restart » ou bien "
"avec le « Centre de Contrōle Mandrake » dans la section « Services »)."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adresse IP doit ressembler ą quelque chose comme « 192.168.1.20 »"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Le numéro de port doit źtre un nombre entier !"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "Adresse IP du serveur CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Configuration automatique du serveur CUPS"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Ajouter une nouvelle imprimante"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7720,50 +8042,100 @@ msgstr ""
"disponibles ainsi qu'ą toutes leurs options et ą tous les types de "
"connection."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Imprimante locale"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Bienvenue dans l'assistant de configuration d'imprimante\n"
+"\n"
+"Cet assistant vous aidera ą installer les imprimantes connectées soit ą cet "
+"ordinateur, soit directement au réseau, soit sur un ordinateur distant sous "
+"Windows.\n"
+"\n"
+"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
+"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
+"réseau et les imprimantes sous Windows doivent aussi źtre allumées.\n"
+"\n"
+"Notez que les autodétections des imprimantes réseau ou Windows sont plus "
+"longues que celle des imprimantes locales, donc vous pouvez les désactiver "
+"si vous n'en avez pas besoin.\n"
+"\n"
+"Cliquez sur « suivant » quand vous źtes prźt, et sur « annuler » si vous ne "
+"voulez pas configurer d'imprimante maintenant."
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
-"Bienvenue dans l'Assistant de configuration de l'imprimante.\n"
+"Bienvenue dans l'assistant de configuration d'imprimante\n"
+"\n"
+"Cet assistant vous aidera ą installer les imprimantes connectées soit ą cet "
+"ordinateur, soit directement au réseau.\n"
"\n"
-"Cet assistant vous aidera ą installer les imprimantes connectées\n"
-"ą cet ordinateur.\n"
+"Si vous avez des imprimantes branchées sur cet ordinateur, veuillez les "
+"allumer afin qu'elles soient détectées automatiquement. Les imprimantes "
+"réseau doivent aussi źtre allumées.\n"
"\n"
-"Veuillez maintenant brancher vos imprimantes sur l'ordinateur, \n"
-"et allumez-les, puis cliquez sur « suivant ». Si vous ne voulez pas\n"
-" installer d'imprimante maintenant, cliquez sur « annuler ».\n"
+"Notez que l'autodétection des imprimantes réseau est plus longue que celle "
+"des imprimantes locales, donc vous pouvez la désactiver si vous n'en avez "
+"pas besoin.\n"
"\n"
-"Notez que certains ordinateurs peuvent planter pendant\n"
-"l'autodétection, donc dans ce cas déselectionnez « Détection\n"
-"automatique des imprimantes ». Utilisez le mode expert de\n"
-"printerdrake si vous voulez installer une imprimante réseau\n"
-"qui n'est pas listée automatiquement."
+"Cliquez sur « suivant » quand vous źtes prźt, et sur « annuler » si vous ne "
+"voulez pas configurer d'imprimante maintenant."
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
-msgstr "Détection automatique des imprimantes"
+#: ../../printerdrake.pm_.c:213
+msgid "Auto-detect printers connected to this machine"
+msgstr "Détecter automatiquement les imprimantes connectées sur cette machine"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Détecter automatiquement les imprimantes reliées directement au réseau"
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+"Détecter automatiquement les imprimantes reliées ą des machines sous windows"
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Imprimante locale"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7787,58 +8159,49 @@ msgstr ""
"etc.), rendez-vous dans la partie « imprimante »de la section « matériel » "
"du Centre de Contrōle Mandrake."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Détection automatique des imprimantes"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Printer auto-detection"
+msgstr "détection automatique d'imprimantes"
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake est capable d'auto-détecter les imprimantes parallčle et USB\n"
-"connectées directement ą votre ordinateur, mais veuillez noter que sur\n"
-"certains systčmes la détection automatique PEUT BLOQUER VOTRE ORDINATEUR\n"
-"ET DONC PEUT-ŹTRE CORROMPRE VOTRE SYSTČME DE FICHIERS !\n"
-"Faites-le donc Ą VOS RISQUES ET PÉRILS !\n"
-"\n"
-"Voulez-vous vraiment auto-détecter vos imprimantes ?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
-msgstr "Lancer la détection automatique"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Configurer l'imprimante manuellement"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", imprimante réseau « %s », port « %s »"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test des ports"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", imprimante « %s » sur serveur SMB/Windows « %s »"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Détecté %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Imprimante sur le port parallčle \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "Imprimante USB \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Imprimante réseau autonome « %s », port %s"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Imprimante « %s » sur serveur SMB/Windows « %s »"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7851,37 +8214,19 @@ msgstr ""
"équivalents ą LPT1:, LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, "
"deuxičme imprimante USB : /dev/usb/lp1, ...) "
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Vous devez enter un nom de fichier ou de périphérique!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Aucune imprimante locale n'a pu źtre trouvée!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "Aucune imprimante trouvée !"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Les imprimantes réseaux ne peuvent źtre configurées qu'aprčs l'installation. "
-"Choississez « Matériel » puis « Imprimantes » dans le Centre de Contrōle de "
-"Mandrake."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Pour installer les imprimantes réseaux, cliquez sur « Annuler », puis passez "
-"en « Mode Expert » et cliquez ą nouveau sur « Ajouter une nouvelle "
-"imprimante »."
+#: ../../printerdrake.pm_.c:485
+msgid "Available printers"
+msgstr "Imprimantes disponibles"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7890,7 +8235,7 @@ msgstr ""
"voulez configurer, tapez un nom de fichier ou de périphérique dans le champs "
"d'entrée"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7899,7 +8244,7 @@ msgstr ""
"l'imprimante que vous voulez configurer ou tapez un nom de périphérique ou "
"de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7911,7 +8256,7 @@ msgstr ""
"correctement détectée ou si vous préférer effectuer une configuration "
"personalisée, activez « Configuration Manuelle  » ."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7922,9 +8267,9 @@ msgstr ""
"l'imprimante que vous voulez configurer. La configuration de cette "
"imprimante sera effectuée automatiquement. Si votre imprimante n'a pas été "
"correctement détectée ou si vous préférer effectuer une configuration "
-"personalisée, activez « Configuration Manuelle  » .\""
+"personalisée, activez « Configuration Manuelle  » ."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7932,11 +8277,11 @@ msgstr ""
"Veuillez choisir le port sur laquelle votre imprimante est connectée ou "
"tapez le nom du périphérique ou de fichier dans le champs d'entrée"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Veuillez choisir le port sur lequel votre imprimante est connectée."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7945,63 +8290,19 @@ msgstr ""
"LPT2:, ..., premičre imprimante USB : /dev/usb/lp0, deuxičme imprimante "
"USB : /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Vous devez choisir ou entrer une imprimante ou un périphérique !"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Configuration manuelle"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 avec scanner), une HP PhotoSmart ou une HP "
-"LaserJet 2200?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Installation du paquetage HPOJ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Vérification du périphérique et configuration de HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-msgid "Installing SANE packages..."
-msgstr "Installation des paquetages SANE ..."
-
-#: ../../printerdrake.pm_.c:524
-msgid "Installing mtools packages..."
-msgstr "Installation des paquetages mtools..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Acquisition ą partir de votre périphérique multi-fonction HP"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Acquisition ą partir de votre périphérique multi-fonction HP"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Mise ą disposition du port imprimante pour CUPS ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Lecture de la base de données des imprimantes..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Configuration d'une imprimante Unix (lpd) distante"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -8009,27 +8310,46 @@ msgstr ""
"Pour utiliser une imprimante Unix distante, vous devez indiquer le nom "
"d'hōte du serveur LPD et le nom attribué ą l'imprimante par ce serveur."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Nom d'hōte du serveur"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Nom du serveur distant manquant !"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Le nom de l'imprimante est manquant !"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "Modčle détecté : %s %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Scanning network..."
+msgstr "Parcours du réseau..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", imprimante « %s » sur serveur « %s »"
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Imprimante « %s » sur serveur « %s »"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Configuration d'une imprimante SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8043,35 +8363,48 @@ msgstr ""
"d'utilisateur, mot de passe et groupe de travail nécessaires pour accéder ą "
"l'imprimante."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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 ""
+"Si l'imprimante voulue a été autodétectée, choisissez la dans la liste et "
+"ajoutez un nom d'utilisateur, un mot de passe et un groupe de travail si "
+"nécessaire."
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "Nom du serveur"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "Adresse IP du serveur"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Nom de partage de l'imprimante"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Groupe de travail"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+msgid "Auto-detected"
+msgstr "Auto-détecté"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Il faut au moins préciser le nom du serveur ou son adresse IP."
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Il faut préciser le nom de partage de l'imprimante."
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "ALERTE DE SÉCURITÉ !"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8116,7 +8449,7 @@ msgstr ""
"le type de connexion « %s » dans Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8129,7 +8462,7 @@ msgstr ""
"type de connexion « %s » dans Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8142,11 +8475,11 @@ msgstr ""
"Voulez-vous vraiment poursuivre le parmétrage de cette imprimante de cette "
"faēon?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Options de l'imprimante NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8158,52 +8491,71 @@ msgstr ""
"du nom d'hōte TCP/IP) et le nom de la file d'impression ą laquelle vous "
"voulez accéder ainsi qu'un nom de login et un mot de passe si nécessaire."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Nom du serveur d'impression"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Nom de la file d'impression"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Nom du serveur NCP manquant!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Nom de la file d'attente NCP manquant!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", hōte « %s », port « %s »"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "Hōte « %s », port « %s »"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Options de l'imprimante réseau (TCP/socket)"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-"Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le\n"
-"nom d'hōte de l'imprimante et, optionellement, le numéro du port.\n"
-"Pour les serveurs d'impression « HP JetDirect », le numéro du\n"
-"port est habituellement 9100, mais cela peut źtre différent pour\n"
-"d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
+"Choisissez une imprimante parmi celles qui ont été détectées, ou entrez un "
+"nom de machine ou une adresse IP et le numéro port optionnel (9100 par "
+"défaut)."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Nom d'hōte de l'imprimante"
+#: ../../printerdrake.pm_.c:978
+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 ""
+"Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le nom "
+"d'hōte de l'imprimante et, optionellement, le numéro du port. Pour les "
+"serveurs d'impression « HP JetDirect », le numéro du port est habituellement "
+"9100, mais cela peut źtre différent pour d'autres serveurs. Veuillez "
+"consulter le manuel de votre imprimante."
+
+#: ../../printerdrake.pm_.c:983
+msgid "Printer host name or IP missing!"
+msgstr "Nom d'hōte de l'imprimante ou adresse IP manquant(e) !"
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr "Nom d'hōte de l'imprimante manquant !"
+#: ../../printerdrake.pm_.c:1005
+msgid "Printer host name or IP"
+msgstr "Nom d'hōte ou adresse IP de l'imprimante "
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Adresse réseau du périphérique d'impression"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8215,11 +8567,11 @@ msgstr ""
"que tous les types d'URL ne sont pas supportés par tous les gestionnaires "
"d'impression."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Une adresse valide doit źtre entrée !"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8229,23 +8581,27 @@ msgstr ""
"Les champs « Description » et « Emplacement » n'ont pas besoin d'źtre "
"remplis. Ce sont de simples commentaires pour les utilisateurs."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Emplacement"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Lecture de la base de données des imprimantes..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Préparation de la base de données des imprimantes..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Le modčle de votre imprimante"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8269,24 +8625,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Le modčle est correct"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Sélectionner manuellement le modčle"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Sélection du modčle de l'imprimante"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Quel modčle d'imprimante possédez-vous ?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8300,7 +8656,7 @@ msgstr ""
"modčle correct dans la liste si le curseur se situe sur un modčle erroné ou "
"sur « Imprimante ą accčs direct »."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8308,11 +8664,11 @@ msgstr ""
"Si votre imprimante n'est pas listée, choisissez-en une compatible (voir le "
"manuel de l'imprimante) ou similaire."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Configuration de l'imprimante OKI winprinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8329,11 +8685,11 @@ msgstr ""
"l'impression de la page de test. Sans cela, l'imprimante ne fonctionnera pas "
"Vos paramčtres de type de connexion seront ignorés par le pilote."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Configuration de l'imprimante Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8345,7 +8701,7 @@ msgstr ""
"des serveurs d'impression. Veuillez connecter votre imprimante sur un port "
"local ou configurez-la sur la machine ą laquelle elle est connectée."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8369,7 +8725,7 @@ msgstr ""
"d'impression avec « lexmarkmaintain » et ajustez les paramčtres de ces tźtes "
"avec ce programme."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8384,22 +8740,22 @@ msgstr ""
"sont correctement indiqués. Notez que la vitesse d'impression peut diminuer "
"si vous augmentez la qualité d'impression."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'option %s doit źtre un nombre entier !"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "L'option %s źtre un nombre !"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "L'option %s est en dehors des limites !"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8408,11 +8764,11 @@ msgstr ""
"Désirez-vous que l'imprimante « %s » soit l'imprimante\n"
"par défaut ?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Pages de test"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8425,39 +8781,39 @@ msgstr ""
"mźme ne pas sortir.\n"
"Dans la plupart des cas, l'impression de la page de test standard suffit."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Pas de page de test"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Imprimer"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Page de test standard"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Page de test alternative (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Page de test alternative (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Page de test photo"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Ne pas imprimer de page de test"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Impression des pages de test..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8472,7 +8828,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8480,15 +8836,15 @@ msgstr ""
"Les pages de test ont été envoyées ą l'imprimante.\n"
"Il peut se passer un certain temps avant le début effectif de l'impression.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Źtes-vous satisfait du résultat ?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Imprimante ą accčs direct"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8502,7 +8858,7 @@ msgstr ""
"<fichier> ». Les utilitaires graphiques vous permettent de choisir "
"l'imprimante et de modifier les paramčtres d'impression facilement.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8513,8 +8869,8 @@ msgstr ""
"applications. Dans ce cas n'indiquez pas le nom du fichier puisqu'il sera "
"fourni par l'application elle-mźme.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8527,7 +8883,7 @@ msgstr ""
"pour une impression particuličre. Il suffit pour cela d'ajouter les "
"paramčtres voulus sur la ligne de commande. Par exemple, « %s <fichier> ». "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8538,7 +8894,7 @@ msgstr ""
"lisez la liste ci-dessous ou cliquez sur le bouton « imprimer la liste des "
"options ».%s%s\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8547,7 +8903,7 @@ msgstr ""
"courante:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8556,8 +8912,8 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenźtre de "
"terminal), utilisez la commande « %s <fichier>».\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8568,7 +8924,7 @@ msgstr ""
"applications. Dans ce cas, n'indiquez pas le nom du fichier ą imprimer "
"puisque celui-ci sera fourni par l'application elle-mźme.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8576,7 +8932,7 @@ msgstr ""
"Pour obtenir la liste des paramčtres disponibles pour l'imprimante courante, "
"cliquez sur le bouton « liste des options d'impression »."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8585,7 +8941,7 @@ msgstr ""
"Pour imprimer un fichier depuis la ligne de commande (une fenźtre de "
"terminal), utilisez la commande « %s <fichier> » ou « %s <fichier> ».\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8602,7 +8958,7 @@ msgstr ""
"les travaux d'impression. Ceci peut źtre utile en cas de bourrage papier, "
"par exemple.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8616,45 +8972,45 @@ msgstr ""
"cela d'ajouter les paramčtres voulus sur la ligne de commande, par exemple "
"« %s <fichier> ».\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Impression/Acquisition/Cartes photo sur « %s »"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Impression/Acquisition sur l'imprimante « %s »"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Impression/Accčs aux cartes photos sur « %s »"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Impression sur l'imprimante « %s »"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Fermer"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Liste des options d'impression"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8668,14 +9024,15 @@ msgstr ""
"avez plus d'un) ą partir de la ligne de commande, ou avec des interfaces "
"graphiques comme « xscanimage » ou « xsane ». Si vous utilisez « Le Gimp », "
"vous pouvez aussi scanner grace au menu « Fichier / Acquisition ». Pour "
-"avoir plus d'information, vous pouvez taper « man scanimage » ou « man sane-"
-"hp » dans une fenźtre de commandes.\n"
+"avoir plus d'information, vous pouvez taper « man scanimage » dans une "
+"fenźtre de commandes.\n"
"\n"
"N'utilisez pas « scannerdrake » pour cet appareil ! "
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
+#, fuzzy
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8685,18 +9042,28 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
-
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+"Votre imprimante HP a été configurée automatiquement pour vous donner accčs "
+"aux lecteurs de carte mémoire ą partir de votre PC. Maintenant vous pouvez "
+"accéder ą vos cartes en utilisant le programme graphique "
+"« MtoolsFM » (Menu : « Applications » -> « Outils fichiers » -> "
+"« gestionnaire de fichiers MTools ») ou le programme en ligne de commande "
+"mtools (tapez « man mtools » pour plus d'infos). Vous accéderez ą la carte "
+"par le lecteur ayant la lettre « p: », ou une autre lettre si vous avez plus "
+"d'un appareil de ce type. Dans « MtoolsFM » vous pouvez commuter entre "
+"plusieurs lecteurs grāce au champ situé dans le coin supérieur droit de la "
+"liste de fichiers."
+
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Lecture des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Transfert de la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8713,7 +9080,7 @@ msgstr ""
"Toutes les files d'attente n'ont pas pu źtre transférées ą cause des raisons "
"suivantes :\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8721,7 +9088,7 @@ msgstr ""
"CUPS ne supporte pas les imprimantes sur les serveurs Novell ni les "
"impressions vers des commandes shell.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8729,11 +9096,11 @@ msgstr ""
"PDQ ne supporte que les imprimantes locales, les imprimantes LPD distantes, "
"et les imprimantes réseau autonomes.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD et LPRng ne supportent pas les imprimantes IPP.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8741,7 +9108,7 @@ msgstr ""
"De plus, les files d'attente qui n'ont pas été créées avec ce programme ou "
"avec «foomatic-configure» ne peuvent pas źtre transférées."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8751,7 +9118,7 @@ msgstr ""
"Aussi, les imprimantes configurées avec les fichiers PPD fournis par leur "
"fabriquant ou avec des pilotes CUPS natifs ne peuvent pas źtre transférées."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8761,15 +9128,15 @@ msgstr ""
"Cochez les imprimantes que vous voulez transférer, et\n"
"cliquez sur « Transfert »."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Ne pas transférer les imprimantes"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Transfert"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8781,13 +9148,13 @@ msgstr ""
"Vous pouvez également taper un nouveau nom ou\n"
"simplement ignorer cette imprimante."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Le nom de l'imprimante ne devrait contenir que des lettres, des nombres et "
"des tirets bas (_)"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8796,16 +9163,16 @@ msgstr ""
"L'imprimante « %s » existe déją,\n"
"voulez-vous vraiment écraser sa configuration ?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nouveau nom de l'imprimante"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Transfert de %s..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8815,29 +9182,29 @@ msgstr ""
"elle źtre également l'imprimante par défaut de votre nouveau systčme "
"d'impression %s ?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Mise ą jour des données de l'imprimante..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Configuration d'une imprimante distante"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Démarrage du réseau..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Configurez le réseau maintenant"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Les fonctionnalités du réseau ne sont pas configurées"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8849,11 +9216,11 @@ msgstr ""
"voulez continuer sans configurer le réseau, vous ne pourez pas utiliser "
"l'imprimante que vous źtes en train de configurer. Que voulez-vous faire ?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Continuer sans configurer le réseau"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8869,7 +9236,7 @@ msgstr ""
"essayez ą nouveau de configurer l'imprimante dans la section « Matériel / "
"Imprimante »."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8879,24 +9246,24 @@ msgstr ""
"de votre matériel et de votre accčs réseau grāce au « Centre de Contrōle "
"Mandrake » puis essayez ą nouveau de configurer l'imprimante distante."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Redémarrage du systčme d'impression..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "élevé"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoļaque"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Installation du systčme d'impression sous le niveau de sécurité « %s »"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8922,11 +9289,11 @@ msgstr ""
"\n"
"Voulez-vous réellement installer un systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Activation du systčme d'impression au démarrage"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8948,63 +9315,63 @@ msgstr ""
"\n"
"Voulez-vous rétablir l'activation automatique du systčme d'impression ?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Vérification du logiciel installé..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Suppression de LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Suppression de LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Choisissez le gestionnaire d'impression"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quel systčme d'impression désirez-vous utiliser ?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configuration en cours de l'imprimante « %s »..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Installation de Foomatic ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Options de l'imprimante"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Préparation de PrinterDrake..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Configuration des applications...."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Désirez-vous configurer l'impression ?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Systčme d'impression : "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -9016,7 +9383,7 @@ msgstr ""
"consulter les informations ą son propos ou pour rendre une imprimante d'un "
"serveur CUPS distant utilisable par Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -9026,34 +9393,30 @@ msgstr ""
"pour modifier ses paramčtres, en faire l'imprimante par défaut ou consulter "
"les informations ą son propos."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rafraīchir la liste des imprimantes (pour afficher toutes les imprimantes "
"CUPS distantes)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Changer le systčme d'impression"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Quitter"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Désirez-vous configurer une autre imprimante ?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Modifier la configuration de l'imprimante"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -9062,100 +9425,100 @@ msgstr ""
"Imprimante %s\n"
"Que souhaitez-vous modifier sur cette imprimante ?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Faire"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Type de connexion"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Nom, description, emplacement"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Marque, modčle, pilote"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Marque, modčle"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Choisir comme imprimante par défaut"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Ajouter cette imprimante ą StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Retirer cette imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Imprimer des pages de test"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Savoir comment utiliser cette imprimante"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Désinstaller l'imprimante"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Désinstallation de l'ancienne imprimante « %s »..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Imprimante par défaut"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "L'imprimante « %s » est maintenant celle par défaut."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Ajout de l'imprimante ą StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "L'imprimante « %s » a été ajoutée avec succčs ą StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Impossible d'ajouter l'imprimante « %s » ą StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Retrait de l'imprimante de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "L'imprimante « %s » a été retirée avec succčs de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Impossible de retirer l'imprimante « %s » de StarOffice/OpenOffice"
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Désirez-vous vraiment désinstaller l'imprimante « %s »?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Suppression de l'imprimante « %s »..."
@@ -9210,8 +9573,9 @@ msgstr ""
"ou laissez-les vide si vous ne voulez pas de ce mandataire"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "L'URL doit commencer par 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL doit commencer par 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9263,44 +9627,6 @@ msgstr "« mkraid » a échoué (les « raidtools » sont-ils installés ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Trop peu de partitions pour du RAID de niveau %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ce niveau de sécurité doit źtre utilisé avec précaution. Il rend votre\n"
-"systčme plus facile ą utiliser, aux dépens de la sécurité. Il ne devrait\n"
-"donc pas źtre utilisé sur une machine connectée ą un réseau ou ą Internet.\n"
-"Aucun mot de passe n'est requis."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
-"serveur devient envisageable. La sécurisation est suffisamment forte pour\n"
-"accepter les connexions de nombreux clients. Note : si votre machine est\n"
-"seulement connectée en tant que client sur Internet, vous devriez plutōt\n"
-"choisir un niveau inférieur."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Options avancées"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Options"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9643,7 +9969,7 @@ msgstr "internet"
msgid "File sharing"
msgstr "Partage de fichiers"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Systčme"
@@ -9774,7 +10100,7 @@ msgstr ""
"environnements Open Source."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Control Center"
@@ -9894,22 +10220,22 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Installation des paquetages..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Veuillez vous déconnecter puis presser simultanément les touches Ctrl-Alt-"
"BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Veuillez relancer %s pour activer les changements"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9917,159 +10243,158 @@ msgstr ""
"La table des partitions ne peut źtre lue car elle semble endommagée.\n"
"Une réinitialisation des partitions endommagées va źtre tentée."
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Configuration du Serveur de Terminaux Mandrake"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
msgstr "Activer le serveur"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
msgstr "Désactiver le serveur"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
msgstr "Lancer le serveur"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
msgstr "Arrźter le serveur"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
-msgstr ""
+msgstr "disquette/ISO etherboot"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
-msgstr ""
+msgstr "Images d'amorēage réseau"
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
msgstr "Ajouter/Effacer un utilisateur"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr "Ajouter/Effacer un client"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Aide"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disquette de démarrage"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr "Image ISO de démarrage"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr "Construire le Kernel entier -->"
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr "Celą va prendre quelques minutes."
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr "Aucun noyau sélectionné!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Aucune interface réseau sélectionnée!"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
-msgstr "Construire tous les noayx -->"
+msgstr "Construire tous les noyaux -->"
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
msgstr "<-- Effacer"
-#: ../../standalone/drakTermServ_.c:557
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
-msgstr "Sélectionne tout"
+msgstr ""
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
msgstr "Ajouter un utilisateur -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr "<-- Effacer un utilisateur"
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr "Ajouter un client -->"
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr "<-- Effacer un client"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
msgstr "Configuration de dhcpd..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr "Écrire la configuration"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
-msgstr "SVP, veuillez insérez une disquette d'amorēage dans le lecteur"
+msgstr "Veuillez insérez une disquette dans le lecteur"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
-msgstr "Impossible d'accéder ą la disquette!"
+msgstr "Impossible d'accéder ą la disquette !"
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr "La disquette peut maintenant etre retirée du lecteur"
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
msgstr "Aucun lecteur de disquette disponible!"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
-msgstr ""
+msgstr "L'image ISO etherboot est %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Quelque chose s'est mal passé! mkisofs est-il bien installé?"
+msgstr "Quelque chose s'est mal passé! mkisofs est-il bien installé ?"
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+msgstr "Il faut d'abord créer /etc/dhcpd.conf !"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Erreur !"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Impossible de trouver le fichier image « %s »."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Configurateur d'installation automatisée"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -10097,11 +10422,11 @@ msgstr ""
"\n"
"Souhaitez-vous continuer ?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Configuration des étapes automatiques"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -10109,11 +10434,11 @@ msgstr ""
"Veuillez choisir, pour chaque étape, si celle-ci doit źtre rejouée comme "
"pendant votre installation, ou si elle doit s'effectuer manuellement."
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr "Création de la disquette d'auto-installation"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -10126,12 +10451,12 @@ msgstr ""
"Les paramčtres de l'installation automatique sont disponibles dans les "
"sections sur la gauche."
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Félicitations !"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -10139,19 +10464,32 @@ msgstr ""
"La disquette a été générée avec succčs.\n"
"Vous pouvez maintenant rejouer votre installation."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Installation automatique"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Ajouter un élément"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Supprimer le dernier élément"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10161,7 +10499,7 @@ msgstr ""
" Rapport de sauvegarde (DrakBackup) \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10173,7 +10511,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10185,39 +10523,106 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Sauvegarde sur disque dur..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Sauvegarde des autres fichiers..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
-#, c-format
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Sauvegarde sur cartouche"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
+#, fuzzy, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"activités de Drakbackup par cartouche :\n"
+"\n"
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -10226,7 +10631,7 @@ msgstr ""
"liste des fichiers envoyée par FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10236,34 +10641,44 @@ msgstr ""
"Problčme de connection FTP: impossible d'envoyer vos fichiers de sauvegarde "
"par FTP.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"activités de Drakbackup par CD:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"activités de Drakbackup par cartouche :\n"
+"\n"
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr "Erreur lors de l'envoi du courrier.\n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Sélection de fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Sélectionnez les fichiers ou répertoires puis cliquez sur « Ajouter »"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10271,108 +10686,155 @@ msgstr ""
"\n"
"Veuillez cocher toutes les options dont vous avez besoin.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ces options peuvent sauvegarder et restaurer\n"
"tous les fichiers du répertoire de configuration systčme « /etc »\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Sauvegarder le répertoire de configuration systčme (répertoire /etc)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ne pas inclure les fichiers critiques (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
"Note : la sauvegarde incrémentale n'écrase pas les anciennes sauvegardes."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Veuillez cocher tous les comptes utilisateurs ą sauvegarder"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Ne pas inclure le cache du navigateur internet (fichiers tampon)"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Sauvegardes incrémentales (économie d'espace)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Supprimer sélection"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Utilisateurs..."
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
msgid "Use network connection to backup"
msgstr "Sauvegarder via le réseau"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Transfert"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Nom d'hōte ou adresse IP de la machine de sauvegarde"
-#: ../../standalone/drakbackup_.c:1269
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr "Dossier oł poser la sauvegarde sur cette machine"
+msgstr "Dossier ou module oł poser la sauvegarde sur cette machine"
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Nom de connexion sur cette machine"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Veuillez entrer votre mot de passe"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Se souvenir du mot de passe"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+#, fuzzy
+msgid "Need hostname, username and password!"
+msgstr "Impossible de se connecter avec le nom %s (mauvais mot de passe?)"
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Sauvegarder sur CDR (ou DVDR)"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Veuillez choisir la taille de votre CD"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "CD Réinscriptible"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "CD Réinscriptible"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Effacer le CDRW avant sauvegarde"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Veuillez vérifier que vous voulez inclure\n"
-"le lanceur de l'installation sur votre CD"
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Transfert"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "CD Réinscriptible"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "CD Réinscriptible"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10380,88 +10842,107 @@ msgstr ""
"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
"(détecter avec « cdrecord -scanbus ». Par exemple : 0,1,0 )"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Ancien nom de péphérique"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Sauvegarde sur cartouche"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Nom de périphérique du matériel de sauvegarde (/dev/...?)"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
+"sauvegarde."
+
+#: ../../standalone/drakbackup_.c:1989
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
"sauvegarde."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr ""
+"Etes vous sur de vouloir effacer votre bande magnétique avant de faire la "
+"sauvegarde."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr "Taille maximale de sauvegarde :"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
msgid "Please enter the directory to save to:"
msgstr "Veuillez indiquer le dossier oł sauvegarder:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Limiter la taille de la sauvegarde"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "par transfert réseau..."
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Dans un répertoire (local ou partagé)..."
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
msgid "Tape"
msgstr "Bande"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "toutes les heures"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "tous les jours"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "toutes les semaines"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "tous les mois"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Sauvegarde périodique"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Veuillez choisir l'intervalle de temps entre les sauvegardes"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Quelle sauvegarde sera périodique ?"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10472,59 +10953,71 @@ msgstr ""
"Tenez compte du fait qu'actuellement tous les médias réseaux utilisent "
"également le disque dur."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Envoyer un rapport par mail aprčs chaque sauvegarde ą :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Quoi..."
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Oł..."
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Quand..."
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Plus d'options..."
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Configuration de sauvegarde Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Veuillez choisir oł stocker la sauvegarde"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "sur disque dur"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "par réseau"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Veuillez choisir ce que vous voulez sauvegarder"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Sauvegarder le systčme"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Sauvegarder les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Sélectionner individuellement les utilisateurs"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10532,7 +11025,7 @@ msgstr ""
"\n"
"Sources de sauvegarde : \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10540,7 +11033,7 @@ msgstr ""
"\n"
"- Fichiers systčme:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10548,7 +11041,7 @@ msgstr ""
"\n"
"- Données des utilisateurs :\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10556,7 +11049,7 @@ msgstr ""
"\n"
"- Autres fichiers ou répertoires :\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10565,7 +11058,13 @@ msgstr ""
"\n"
"- Sauvegarde sur le disque dur dans le répertoire : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
@@ -10573,16 +11072,20 @@ msgstr ""
"\n"
"- Graver le CD"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, c-format
msgid " on device : %s"
msgstr "sur le périphérique : %s"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
@@ -10591,13 +11094,13 @@ msgstr ""
"\n"
"- Sauvegarde sur bande via le péphérique : %s"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tEfface=%s"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2532
+#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
@@ -10605,7 +11108,7 @@ msgstr ""
"\n"
"- Sauvegarde via %s sur la machine : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10614,7 +11117,7 @@ msgstr ""
"\t\t nom de connexion : %s\n"
"\t\t dans le répertoire : %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10622,19 +11125,19 @@ msgstr ""
"\n"
"- Options:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tFichiers systčmes non inclus\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLe sauvegarde utilise « tar » et « bzip2 »\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tLa sauvegarde utilise « tar » et « gzip »\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10643,44 +11146,42 @@ msgstr ""
"\n"
"- Le Démon (%s) comprend :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-celle sur Disque dur.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-celle sur CDR.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr "\t-Bande\n"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-celle par transfert FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-celle par transfert SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
-msgstr "\t-celle par transfert FTP.\n"
+msgstr "\t-celle par rsync.\n"
-#: ../../standalone/drakbackup_.c:2001
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
-msgstr "\t-celle par transfert FTP.\n"
+msgstr "\t-celle par webdav.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"La configuration de sauvegarde n'est pas encore définie. \n"
"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
"manuelle »\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10688,7 +11189,7 @@ msgstr ""
"Liste de données ą restaurer :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10696,134 +11197,131 @@ msgstr ""
"Liste des données corrompues :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Veuillez le décocher ou le retirer la prochaine fois"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Les fichiers de sauvegarde sont corrompus"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Toutes vos données sélectionnées ont été "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
" correctement restaurées en prenant « %s » comme répertoire racine "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Restauration de la configuration "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "OK pour restaurer les autres fichiers."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Fichiers de sauvegarde ą restaurer (seul le plus récent compte)"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Sauvegarder les fichiers systčme avant :"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Veuillez choisir la date ą restaurer"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Sauvegarde sur disque dur"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Dossier oł poser la sauvegarde :"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "par connexion FTP..."
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "par connexion sécurisée..."
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Restaurer ą partir d'un répertoire"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Veuillez entrer le répertoire oł résident les sauvegardes"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Choisir un autre support de sauvegarde"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Autre support"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Restaurer le systčme"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Restaurer les comptes utilisateurs"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Restaurer les autres fichiers ou répertoires"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "Choisir un autre répertoire racine de restauration ( au lieu de / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Nouvelle sauvegarde avant restauration (seulement pour l'incrémental)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Retirer les répertoires personnels ds utilisateurs avant restauration"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Restaurer toutes les sauvegardes..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Restauration personnalisée..."
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "<- Précédent"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Valider"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Restaurer !"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Suivant ->"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10831,9 +11329,9 @@ msgstr ""
"Merci de vouloir faire une sauvegarde avant de vouloir restaurer... (ou bien "
"vérifiez que votre répertoire de sauvegarde est correct)"
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10841,14 +11339,15 @@ msgstr ""
" Votre rapport n'a pas été envoyé\n"
" Veuillez configurer « sendmail »"
-#: ../../standalone/drakbackup_.c:2933
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3598
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Les paquetages suivants vont źtre installés"
+msgstr ""
+"Les paquetages suivants doivent źtre installés\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10856,19 +11355,19 @@ msgstr ""
"Erreur pendant l'envoi du fichier par FTP.\n"
" Veuillez corriger votre configuration FTP"
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Veuillez choisir les données ą restaurer..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Veuillez choisir le support de sauvegarde..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Veuillez choisir les données ą sauvegarder..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10877,77 +11376,60 @@ msgstr ""
"Veuillez cliquer sur « Configuration par assistant », ou « Configuration "
"manuelle »"
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "En développement ... veuillez patienter."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Sauvegarde des fichiers systčmes..."
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Sauvegarde des comptes utilisateurs..."
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Sauvegarde des autres fichiers ou répertoires..."
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "TOTAL :"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "Envoi par FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Envoi des fichiers..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Liste ą include sur le CDR"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Veuillez taper la vitesse de gravure :"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-"Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
-"(détecter avec « cdrecord -scanbus ». Par exemple : 0,1,0 )"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Veuillez vérifier si vous voulez Inclure l'install boot sur le CD"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Sauvegarder ą partir de la configuration définie"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Voir la configuration de sauvegarde"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Configuration par assistant"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Configuration manuelle"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Sauvegarder !"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10958,7 +11440,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -11007,7 +11489,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11021,7 +11503,7 @@ msgstr ""
" configurer le nom de machine ou de domaine dans /etc/postfix/main.cf.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -11045,7 +11527,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -11099,21 +11581,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -11137,18 +11619,20 @@ msgstr ""
"\n"
"Sinon, vous ne pouvez en choisir qu'une\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft par DUPONT Sébastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" modifications 2002 MandrakeSoft par Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -11179,7 +11663,7 @@ msgstr ""
"en mźme temps que ce programme; sinon, écrivez ą la « Free Software\n"
"Foundation », Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11254,7 +11738,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11272,7 +11756,7 @@ msgstr ""
"avant de l'envoyer vers le serveur.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11293,7 +11777,7 @@ msgstr ""
"faire les choses avec précaution et de ne pas modifier ą la main\n"
"les fichiers de sauvegarde.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11367,85 +11851,120 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "L'installation de %s a échoué pour la raison suivante :"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Ce programme est un logiciel libre, il peut źtre redistribué selon les "
+"termes de la licence GNU GPL.\n"
+"\n"
+"utilisation: drakbug [OPTIONS] [NOM_DU_PROGRAMME]\n"
+"\n"
+"OPTIONS:\n"
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr " --help - affiche ce message d'aide.\n"
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr " --report - le programme devrait źtre un outil de Mandrake\n"
+
+#: ../../standalone/drakbug_.c:49
+#, fuzzy
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr " --report - le programme devrait źtre un outil de Mandrake\n"
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr "Outil de signalement de bug Mandrake"
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr "Assistant de premičre connection"
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr "Outil de synchronisation"
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
-#, fuzzy
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
-msgstr "Utilitaires console"
+msgstr "Outils autonomes"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
msgstr "Mandrake Online"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
msgstr "Menudrake"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
msgstr "Msec"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
msgstr "Contrōle ą distance"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr "Gestionnaire de programmes"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr "Outil de migration windows"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
msgstr "Userdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
msgstr "Assistants de configuration"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
msgstr "Application:"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr "Paquetage:"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr "Noyau:"
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
msgstr "Version: "
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11456,46 +11975,52 @@ msgid ""
"transferred to that server\n"
"\n"
msgstr ""
+"\n"
+"\n"
+"Pour soumettre un rapport de bogue, cliquez sur le bouton Signaler.\n"
+"Cela ouvrira une fenźtre de navigateur sur https://www.bugzilla.com\n"
+"oł vous trouverez un formulaire ą remplir.\n"
+" L'information affichée ci-dessus sera transférée vers ce serveur\n"
+"\n"
-#: ../../standalone/drakbug_.c:101
-msgid "Not installed"
-msgstr "Non installé"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
msgid "Report"
msgstr "Signaler"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "Non installé"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr "Connection ą l'assistant Bugzilla ..."
-#: ../../standalone/drakbug_.c:129
-#, fuzzy
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
-msgstr "Pas de navigateur disponible! Veuillez en installer un"
+msgstr "Pas de navigateur disponible! Veuillez en installer un."
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Configuration du réseau (%d cartes réseaux)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil : "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Effacer le profil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profil ą effacer :"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Nouveau profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11503,95 +12028,95 @@ msgstr ""
"Nom du profil ą créer (le nouveau profil est créé comme une copie du profil "
"courant :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Nom de machine : "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Accčs internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Type :"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Passerelle :"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interface :"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "État :"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Veuillez patienter"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Configurer l'accčs ą Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Configuration LAN (réseau local)"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Pilote"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interface"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protocole"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "État"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Configurer le réseau local..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Cliquez ici pour lancer l'assistant ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Assistant..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Appliquer"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Veuillez patienter... mise en place de la configuration"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connecté"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Non connecté"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Se connecter..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Se déconnecter..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11599,7 +12124,7 @@ msgstr ""
"Attention, une autre connexion internet a été détectée, peut-źtre utilisant "
"votre réseau"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11607,36 +12132,36 @@ msgstr ""
"Vous n'avez aucune interface réseau configurée.\n"
"Vous pouvez en configurer une en cliquant sur « Configurer »"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Configuration du LAN (réseau local)"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Carte réseau %s : %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protocole d'amorēage"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Lancer au démarrage"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Client DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "activer maintenant"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "désactiver maintenant"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11644,7 +12169,7 @@ msgstr ""
"Cette interface n'a pas encore été configurée.\n"
"Lancez l'assistant de configuration dans la fenźtre principale"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11652,121 +12177,121 @@ msgstr ""
"Vous n'avez aucune connection internet.\n"
"Vous pouvez en créer une en cliquant sur « Configurer »"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Configuration de la connexion internet"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Configuration de la connexion internet"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Type de connexion : "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Paramčtres"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Passerelle"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Carte ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Client DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "mode d'emploi : drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Nom du module"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Taille"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "création d'une disquette d'amorēage"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "par défaut"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Erreur DrakFloppy : %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "version du noyau"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Général"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Mode Expert"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "arguments optionnels pour mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Ajouter un module"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forcer"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "si besoin est"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "ne pas tenir compte des modules SCSI"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "ne pas tenir compte des modules RAID"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Retirer un module"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Sortie"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Créer la disquette"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Assurez-vous qu'un médium est présent dans le périphérique %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11775,12 +12300,12 @@ msgstr ""
"Il n'y a aucune disquette dans le lecteur %s ou alors elle est \n"
"protégée contre l'écriture. Veuillez vérifier ou en insérer une."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne peut dédoubler (fork) : %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11791,99 +12316,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Chercher les polices installées"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Désélectionner les polices installées"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "Parcourir toutes les polices"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "aucune fonte trouvée"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "terminé"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "impossible de trouver des polices dans vos disques"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Résélectionnez des polices correctes"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "impossible de trouver des polices.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Chercher des polices dans la liste des installées"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Copie des fontes"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Installation de polices « True Type »"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "Veuillez patienter pendant « ttmkfdir »"
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Installation « True Type » terminée"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Conversion de polices"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "création de type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Inscription dans ghoscript"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "Conversion de polices « True Type »"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "Conversion de polices « pfm »"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Supprimer les fichiers temporaires"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Relancer le serveur de polices"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Supprimer les fichiers de polices"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "redémarrage du serveur de fonte"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11898,107 +12423,111 @@ msgstr ""
"cas,\n"
"des polices boguées peuvent bloquer votre serveur d'affichage XFree."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Importation de polices"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Récupérer les polices de Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Désinstaller des polices"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Options avancées"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Liste des polices"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Choisissez les applications qui supporteront ces polices"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Imprimante générique"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Sélectionnez les polices ou répertoires et cliquez sur « Ajouter »"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Installe la liste"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "Cliquez ici si vous źtes sūr"
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "Ici sinon"
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Désélectionne tout"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Sélectionne tout"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Désinstalle la liste"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Tests initiaux"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Copier les polices sur votre systčme"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Installe et convertit des polices"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Post-installation"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Retirer des polices de votre systčme"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Post-désinstallation"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Partage de la connexion internet"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Désolé, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Le partage de la connexion internet est activé"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -12010,31 +12539,31 @@ msgstr ""
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "désactiver"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "ne rien faire"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "reconfigurer"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Désactivation des serveurs..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Le partage de la connexion ą Internet est maintenant désactivé."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Le partage de la connexion ą Internet est désactivé"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -12046,19 +12575,19 @@ msgstr ""
"\n"
"Que voulez-vous faire ?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "activer"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Activation des serveurs..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Le partage de la connexion internet est maintenant activé."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12075,21 +12604,21 @@ msgstr ""
"Veuillez noter que vous avez besoin d'une carte réseau dédiée ą votre réseau "
"local."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (utilisant le module %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Aucune carte réseau n'est présente dans votre systčme"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12097,11 +12626,11 @@ msgstr ""
"Aucune carte réseau n'a été détectée sur votre systčme. Veuillez utiliser "
"l'outil de configuration du matériel."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Carte réseau"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12116,18 +12645,18 @@ msgstr ""
"\n"
"Je vais configurer votre réseau local avec cette carte réseau."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Veuillez choisir quelle carte réseau sera connectée ą votre réseau local"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Interface réseau déją configurée"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12142,15 +12671,15 @@ msgstr ""
"\n"
"Vous pouvez le faire manuellement, mais vous devez savoir ce que vous faites."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Reconfiguration automatique"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Montrer la configuration actuelle"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12167,7 +12696,7 @@ msgstr ""
"Attribution de l'adresse : %s\n"
"Pilote : %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12192,57 +12721,57 @@ msgstr ""
"DHCP.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Réseau Local de class C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "Adresse IP du serveur DHCP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Re-configurer l'interface et le serveur DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Le réseau local ne finissait pas par `.0', j'abandonne."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Conflit potentiel d'adresses du réseau local trouvé dans la configuration de "
"%s !\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
-msgstr "Configuration du Firewall détectée"
+msgstr "Configuration du Pare Feu détectée"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-"Attention ! Une configuration existante du Firewall a été détectée. Vous "
+"Attention ! Une configuration existante du Pare-Feu a été détectée. Vous "
"devrez peut-źtre modifier la configuration manuellement aprčs l'installation."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Configuration en cours..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configuration des scripts, installation des logiciels, démarrage des "
"serveurs..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Des problčmes sont apparus en installant le paquetage %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12253,25 +12782,25 @@ msgstr ""
"ordinateurs sur votre réseau local, en utilisant la configuration réseau "
"automatique (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
"La configuration a déją été effectuée, mais elle est actuellement désactivée."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"La configuration a déją été effectuée, et elle est actuellement activée."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Le partage de la connexion internet n'a encore jamais été configuré."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Configuration du partage de la connexion internet"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12286,20 +12815,14 @@ msgstr ""
"\n"
"Cliquez sur Configurer pour lancer l'assistant de configuration."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centre de contrōle"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Choisissez l'outil que vous voulez utiliser"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
+#, fuzzy
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12319,67 +12842,71 @@ msgstr ""
"Vous pouvez quand mźme l'installer en tapant « urpmi xawtv » dans un "
"terminal en tant que root."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Canada (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "USA (hertzien)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (cable)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (cable ou HRC)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Chine (hertzien)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Japon (hertzien)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japon (cable)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Europe de l'est"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "France [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irlande"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Europe de l'ouest"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australie"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Nouvelle Zélande"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Afrique du Sud"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentine"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -12387,35 +12914,35 @@ msgstr ""
"SVP,\n"
"Veuillez choisir votre région et votre norme de TV"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Norme TV :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Zone :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Recherche des canaux de télévision en cours ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Recherche des canaux de télévision"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "Une erreur est survenue pendant la recherche des chaīnes TV."
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV n'est pas installé!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Passez une bonne journée!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Maintenant vous pouvez lancer xawtv (sous X-Window) !\n"
@@ -12447,11 +12974,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "utilisation : keyboarddrake [--expert] [clavier]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Veuillez choisir votre type de clavier."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Voulez-vous que la touche BackSpace retourne Delete en console ?"
@@ -12482,7 +13009,7 @@ msgstr ""
"Les changements ont été effectués mais ne seront effectifs qu'aprčs votre "
"déconnection"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12590,127 +13117,126 @@ msgstr "Calendrier"
msgid "Content of the file"
msgstr "Contenu du fichier"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr "Alerte mail/SMS"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "Alerte par courrier"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "s'il vous plaīt attendez, examen du fichier : %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
-msgstr "Configuration des alertes mail/SMS"
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "Configuration des alertes par courrier"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Bienvenue dans l'utilitaire de configuration mail/SMS.\n"
+"Bienvenue dans l'utilitaire de configuration des alertes par courrier.\n"
"\n"
"Vous allez pouvoir configurer ici vos les alertes systčmes.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr "Apache (serveur www)"
-#: ../../standalone/logdrake_.c:418
-#, fuzzy
+#: ../../standalone/logdrake_.c:417
msgid "Domain Name Resolver"
-msgstr "Nom de domaine"
+msgstr "Solveur de Nom de domaine"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
msgstr "Serveur Ftp"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
msgstr "Serveur de courrier Postfix"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
msgid "Samba Server"
msgstr "Serveur Sambe"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
msgid "SSH Server"
msgstr "Serveur SSH"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
msgid "Webmin Service"
msgstr "Service Webmin"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
msgid "Xinetd Service"
msgstr "Service Xinetd"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "configuration des services"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Vous recevrez une alerte si l'un des services sélectionnés ne tourne plus"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "chargement des paramčtres"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Vous recevrez une alerte si la charge machine dépasse cette valeur"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "configuration des alertes"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Configurer les moyens de vous alerter"
+#: ../../standalone/logdrake_.c:458
+msgid "Please enter your email address below "
+msgstr "Veuillez entrer votre adresse e-mail ci -dessous"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Enregistrer sous..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Veuillez choisir le type de votre souris."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "aucun périphérique USB série trouvé\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Émuler le troisičme bouton ?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Lecture des données de l'imprimante..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Détection des périphériques..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Test des ports"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s trouvé sur %s, configurer ?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Sélectionnez un scanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ce scanner %s n'est pas supporté"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12719,11 +13245,11 @@ msgstr ""
"Scannerdrake n'a pas réussi ą détecter votre scanner %s.\n"
"Veuillez sélectionner le périphérique sur lequel votre scanner est branché"
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "choisissez le périphérique"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12734,7 +13260,7 @@ msgstr ""
"Vous pouvez lancer printerdrake depuis le Centre de Contrōle Mandrake dans "
"la section Matériel"
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12757,29 +13283,29 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
"\n"
-"Certains matériels listés dans la classe « %s » ont été ajoutés :\n"
+"Certains matériels listés dans la classe « %s » ont été ajoutés :\n"
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
-msgstr "Configuration du Firewall"
+msgstr "Configuration du Pare-Feu"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
-msgstr "Configuration du Firewall"
+msgstr "Configuration du Pare-Feu"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
-"Firewall (pare-feu)\n"
+"Pare-Feu (firewall)\n"
"\n"
-"Vous avez déją configuré un firewall.\n"
-"Cliquez sur « Configurer » pour changer ou supprimer le firewall"
+"Vous avez déją configuré un Pare-Feu.\n"
+"Cliquez sur « Configurer » pour changer ou supprimer le Pare-Feu"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12787,7 +13313,7 @@ msgid ""
msgstr ""
"Pare-feu (Firewall)\n"
"\n"
-"Cliquez sur Configurer pour mettre en place un pare-feu standard"
+"Cliquez sur Configurer pour mettre en place un Pare-Feu standard"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -12869,12 +13395,11 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Configuration d'un mini-firewall\n"
+"Configuration d'un mini-Pare-Feu (firewall)\n"
"\n"
-"Cela configure un firewall (pare-feu) personnel pour votre machine Mandrake "
+"Ceci configure un Pare-Feu (firewall) personnel pour votre machine Mandrake "
"Linux.\n"
-"Si vous souhaitez un firewall plus puissant ou dédié, veuillez plutōt "
-"utiliser\n"
+"Si vous souhaitez un Pare-Feu dédié plus puissant, tournez-vous plutōt vers\n"
"la distribution spécialisée « MandrakeSecurity »."
#: ../../tinyfirewall.pm_.c:14
@@ -12887,13 +13412,14 @@ msgid ""
"it off. You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
-"Nous allons maintenant vous poser des questions sur quels services vous\n"
-"souhaitez pouvoir connecter ą Internet. Veuillez réfléchir avec soin sur\n"
-"chacune de ces questions, car la sécurité de votre ordinateur est\n"
-"importante.\n"
+"Il faut maintenant déterminer quels services seront accessibles\n"
+"depuis le réseau (et l'internet). Veuillez réfléchir avec soin sur chacun de "
+"ces services,\n"
+"car la sécurité de votre ordinateur est importante.\n"
"\n"
-"S'il vous plaīt, si vous n'utilisez par l'un de ces services,\n"
-"désactivez-le. Vous pouvez changer cette configuration n'importe quand, en\n"
+"Il est fortement conseillé de désactiver les services que vous n'utilisez "
+"pas.\n"
+"Vous pouvez changer cette configuration n'importe quand, en\n"
"redémarrant cette application !"
#: ../../tinyfirewall.pm_.c:21
@@ -12903,9 +13429,9 @@ msgid ""
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
-"Utilisez-vous un serveur web sur cette machine, que vous avez besoin de\n"
-"rendre visible depuis tout Internet ? Si vous utilisez un serveur web\n"
-"pour seulement cette machine, vous pouvez répondre NON ici.\n"
+"Allez-vous utiliser sur cette machine un serveur web visible \n"
+"depuis internet ? Si vous souhaitez utiliser un serveur web visible\n"
+"depuis cette machine seulement, vous pouvez répondre NON.\n"
"\n"
#: ../../tinyfirewall.pm_.c:26
@@ -12915,9 +13441,9 @@ msgid ""
"answer no.\n"
"\n"
msgstr ""
-"Utilisez-vous un serveur de nom sur cette machine ? Si vous n'avez pas\n"
-"configuré un tel serveur pour donner des informations d'IP et de zone\n"
-"pour tout Internet, veuillez répondre NON.\n"
+"Faites-vous fonctionner un Serveur de Noms (DNS) sur cette machine ?\n"
+"Si vous n'avez pas configuré un tel serveur pour fournir des informations\n"
+"d'IP et de zone pour tout l'internet, veuillez répondre NON.\n"
"\n"
#: ../../tinyfirewall.pm_.c:31
@@ -12928,12 +13454,15 @@ msgid ""
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
-"Voulez-vous permettre les connexions sécurisées entrantes (par le\n"
-"protocole ssh) ? C'est un remplacement de telnet que vous pouvez utiliser\n"
-"pour vous connecter sur une machine distante. Si vous utilisez telnet en\n"
-"ce moment, vous devriez vraiment passer ą ssh. telnet n'est pas encrypté\n"
-"-- par exemple des pirates peuvent voler votre mot de passe. ssh est\n"
-"encrypté et interdit les écoutes clandestines (eavesdropping)."
+"Voulez-vous permettre les connexions par protocole sécurisé ssh ?\n"
+"Ssh est un remplaēant de telnet que vous pouvez utiliser\n"
+"pour vous connecter sur une machine distante. Si vous utilisez telnet,\n"
+"vous devez savoir que toutes les informations que vous transmettez\n"
+"peuvent źtre lues par n'importe qui, y compris les mots de passe.\n"
+" Il est fortement conseillé d'abandonner telnet, et d'utiliser ssh qui "
+"permet\n"
+"de crypter automatiquement les informations et les mots de passe.\n"
+"Vous éviterez ainsi les écoutes clandestines (eavesdropping)."
#: ../../tinyfirewall.pm_.c:36
msgid ""
@@ -12942,8 +13471,9 @@ msgid ""
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
-"Voulez-vous permettre les connexions entrantes en telnet ?\n"
-"C'est trčs dangereux, comme nous l'avons expliqué dans l'écran précédent.\n"
+"Voulez-vous permettre les connexions entrantes par telnet ?\n"
+"Ceci est trčs dangereux, comme nous l'avons expliqué dans l'écran "
+"précédent.\n"
"Nous recommandons fortement de répondre NON ici et d'utiliser ssh ą\n"
"la place de telnet.\n"
@@ -12954,7 +13484,7 @@ msgid ""
"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 ""
-"Utilisez-vous un serveur FTP, que vous voulez visible depuis Internet ?\n"
+"Faites-vous fonctionner un serveur FTP visible depuis l'internet ?\n"
"Si c'est le cas, nous recommandons fortement de ne l'utiliser que\n"
"pour les transferts en mode anonyme. Tous les mots de passe envoyés\n"
"par FTP peuvent źtre volés par des pirates, car FTP n'utilise pas\n"
@@ -12967,8 +13497,9 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
-"Utilisez-vous un serveur de mail (courrier électronique) ? Si vous\n"
-"envoyez des messages avec pine, mutt ou d'autres clients mail texte,\n"
+"Faites-vous fonctionner un serveur de mail (courrier électronique) ?\n"
+"Si vous envoyez des messages avec pine, mutt ou d'autres clients mail "
+"texte,\n"
"vous en utilisez probablement un. Sinon, vous devriez répondre NON.\n"
"\n"
@@ -12979,9 +13510,9 @@ msgid ""
"this machine.\n"
"\n"
msgstr ""
-"Utilisez-vous un serveur POP ou IMAP ? C'est utilisé pour\n"
-"héberger des comptes mail qui ne sont pas basés sur des interfaces\n"
-"web.\n"
+"Faites-vous fonctionner un serveur POP ou IMAP ?\n"
+"Ceci est utilisé pour héberger des comptes mail qui ne sont pas basés\n"
+"sur des interfaces web.\n"
"\n"
#: ../../tinyfirewall.pm_.c:56
@@ -12991,9 +13522,9 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
-"Vous utilisez un noyau en version 2.2. Si votre adresse IP réseau est\n"
-"attribuée automatiquement par un ordinateur sur votre réseau (adresse\n"
-"dynamique), nous avons besoin d'autoriser cela. Est-ce le cas ?\n"
+"Vous utilisez un noyau en version 2.2. Si votre adresse IP doit źtre\n"
+"attribuée automatiquement par un serveur sur votre réseau (adresse\n"
+"dynamique, DHCP), il faut l'autoriser ici. Est-ce le cas ?\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -13005,9 +13536,9 @@ msgid ""
msgstr ""
"Est-ce que l'heure de votre ordinateur est synchronisée avec un\n"
"autre ordinateur ? La plupart du temps, c'est utilisé par des\n"
-"sociétés de taille moyenne ou grande, basées sur Unix/Linux,\n"
+"organisations de taille moyenne ou grande utilisant Unix ou Linux,\n"
"pour synchroniser les heures de connexion, etc. Si vous ne\n"
-"faites pas partie d'une telle société et n'avez pas entendu\n"
+"faites pas partie d'une telle organisation et n'avez pas entendu\n"
"parler de ce problčme, vous n'avez probablement pas besoin\n"
"de ce service."
@@ -13018,8 +13549,7 @@ msgid ""
"\n"
"\n"
msgstr ""
-"La configuration est terminée. Devons nous écrire ces changements sur "
-"disque ?\n"
+"La configuration est terminée. Faut-il enregistrer ces changements ?\n"
"\n"
"\n"
"\n"
@@ -13034,48 +13564,48 @@ msgstr "Échec de l'ouverture de %s : %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Échec de l'ouverture de %s en écriture : %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Non, je n'ai pas besoin de DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Oui, j'ai besoin de DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Non, je n'ai pas besoin de NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Oui, j'ai besoin de NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Ne pas sauver"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Sauver et Quitter"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
-msgstr "Assisatant de Configuration du Firewall"
+msgstr "Assistant de Configuration du Pare Feu"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Non (en bloquer l'accčs depuis le réseau)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
-msgstr "Oui (autoriser ceci ą traverser le firewall)"
+msgstr "Oui (autoriser ą traverser le pare feu)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Veuillez patientez... Vérification des paquetages installés"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -13084,6 +13614,10 @@ msgstr ""
"Échec lors de l'installation des paquetages nécessaires : %s et Bastille.\n"
"Essayez de les installer manuellement."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -13114,11 +13648,11 @@ msgstr "Station de travail"
#: ../../share/compssUsers:999
msgid "Firewall/Router"
-msgstr "Firewall/Routeur"
+msgstr "Pare Feu/Routeur"
#: ../../share/compssUsers:999
msgid "Domain Name and Network Information Server"
-msgstr "Serveur de Nom et serveur d'Information Réseau"
+msgstr "Serveur de Nom (DNS) et Serveur d'Information (NIS)"
#: ../../share/compssUsers:999
msgid ""
@@ -13133,6 +13667,11 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Outils audio : lecteurs mp3 ou midi, mixeurs, etc"
#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Paquetages conformes ą la « Linux Standard Base »"
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Livres et Howto's sur Linux et le Logiciel Libre"
@@ -13216,15 +13755,11 @@ msgstr "Apache et Pro-ftpd"
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
-msgstr "Outils pour créer et graver des CDs"
+msgstr "Outils pour créer et graver des CD"
#: ../../share/compssUsers:999
msgid "Office Workstation"
-msgstr "Station de travail bureautique"
-
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Serveur"
+msgstr "Station de bureautique"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -13232,7 +13767,7 @@ msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Programmes de graphisme comme The gimp"
+msgstr "Programmes de graphisme comme Le Gimp"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -13274,7 +13809,7 @@ msgid ""
"browse the Web"
msgstr ""
"Ensemble d'outils pour lire ou envoyer des courriers électronique (pine, "
-"mutt), des news (tin), et pour naviguer sur le Web"
+"mutt), des news (tin), et pour naviguer sur l'internet"
#: ../../share/compssUsers:999
msgid "Personal Finance"
@@ -13290,7 +13825,11 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
-msgstr "Clients pour différents protocoles dont ssh"
+msgstr "Clients pour différents protocoles, dont ssh"
+
+#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13306,7 +13845,7 @@ msgstr "Autres Environnements de Bureau"
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
-msgstr "Éditeurs, interpréteurs, utilitaires fichiers, terminaux"
+msgstr "Éditeurs, interpréteurs, outils fichiers, terminaux"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
@@ -13314,16 +13853,279 @@ msgstr "Programmes pour gérer votre finance, comme gnucash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
-msgstr "Gestionnaire d'Information Personnel"
+msgstr "Gestionnaire d'Informations Personnelles"
#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr "Multimédia - Gravage de CD"
+msgstr "Multimédia - Gravure de CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Applications scientifiques"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid ""
+#~ "\n"
+#~ "Drakbackup activities via $net_proto:\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "activités de Drakbackup par cartouche :\n"
+#~ "\n"
+
+#~ 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 ""
+#~ "Ce niveau de sécurité doit źtre utilisé avec précaution. Il rend votre\n"
+#~ "systčme plus facile ą utiliser, aux dépens de la sécurité. Il ne devrait\n"
+#~ "donc pas źtre utilisé sur une machine connectée ą un réseau ou ą "
+#~ "Internet.\n"
+#~ "Aucun mot de passe n'est requis."
+
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Avec ce niveau de sécurité, l'utilisation de cette machine en tant que\n"
+#~ "serveur devient envisageable. La sécurisation est suffisamment forte "
+#~ "pour\n"
+#~ "accepter les connexions de nombreux clients. Note : si votre machine est\n"
+#~ "seulement connectée en tant que client sur Internet, vous devriez plutōt\n"
+#~ "choisir un niveau inférieur."
+
+#~ msgid "Basic Options"
+#~ msgstr "Options de base"
+
+#~ msgid "Security Checks"
+#~ msgstr "Vérifications de sécurité"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Liste ą include sur le CDR"
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Veuillez choisir la taille de votre CD"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Veuillez taper la vitesse de gravure :"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Effacer le CDRW avant sauvegarde"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr ""
+#~ "Veuillez entrer l'emplacement de votre graveur (bus,id,lun)\n"
+#~ "(détecter avec « cdrecord -scanbus ». Par exemple : 0,1,0 )"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Veuillez vérifier si vous voulez Inclure l'install boot sur le CD"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "L'URL doit commencer par 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Veuillez vérifier que vous voulez inclure\n"
+#~ "le lanceur de l'installation sur votre CD"
+
+#~ msgid "Windows PDC"
+#~ msgstr "Windows PDC"
+
+#~ msgid "PDC Server Name"
+#~ msgstr "Serveur de nom PDC"
+
+#~ 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 /"
+#~ "add and reboot the server"
+#~ msgstr ""
+#~ "Pour que ceci fonctione avec un PDC Windows2000, vous devrez probablement "
+#~ "dire ą l'administrateur Windows2000 de lancer la commande : C:\\>net "
+#~ "localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add et de "
+#~ "redémarrer le serveur."
+
+#~ msgid "on LPD server \"%s\", printer \"%s\""
+#~ msgstr "sur serveur d'impression LPD « %s », imprimante « %s »"
+
+#~ msgid "on Windows server \"%s\", share \"%s\""
+#~ msgstr "sur serveur Windows « %s », partage « %s »"
+
+#~ msgid "on Novell server \"%s\", printer \"%s\""
+#~ msgstr "sur serveur Novell « %s », imprimante « %s »"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Bienvenue dans l'Assistant de configuration de l'imprimante.\n"
+#~ "\n"
+#~ "Cet assistant vous aidera ą installer les imprimantes connectées\n"
+#~ "ą cet ordinateur.\n"
+#~ "\n"
+#~ "Veuillez maintenant brancher vos imprimantes sur l'ordinateur, \n"
+#~ "et allumez-les, puis cliquez sur « suivant ». Si vous ne voulez pas\n"
+#~ " installer d'imprimante maintenant, cliquez sur « annuler ».\n"
+#~ "\n"
+#~ "Notez que certains ordinateurs peuvent planter pendant\n"
+#~ "l'autodétection, donc dans ce cas déselectionnez « Détection\n"
+#~ "automatique des imprimantes ». Utilisez le mode expert de\n"
+#~ "printerdrake si vous voulez installer une imprimante réseau\n"
+#~ "qui n'est pas listée automatiquement."
+
+#~ msgid "Auto-detect printers"
+#~ msgstr "Détection automatique des imprimantes"
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Détection automatique des imprimantes"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake est capable d'auto-détecter les imprimantes parallčle et "
+#~ "USB\n"
+#~ "connectées directement ą votre ordinateur, mais veuillez noter que sur\n"
+#~ "certains systčmes la détection automatique PEUT BLOQUER VOTRE ORDINATEUR\n"
+#~ "ET DONC PEUT-ŹTRE CORROMPRE VOTRE SYSTČME DE FICHIERS !\n"
+#~ "Faites-le donc Ą VOS RISQUES ET PÉRILS !\n"
+#~ "\n"
+#~ "Voulez-vous vraiment auto-détecter vos imprimantes ?"
+
+#~ msgid "Do auto-detection"
+#~ msgstr "Lancer la détection automatique"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Configurer l'imprimante manuellement"
+
+#~ msgid ""
+#~ "No local printer found!\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Aucune imprimante locale n'a pu źtre trouvée!\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Les imprimantes réseaux ne peuvent źtre configurées qu'aprčs "
+#~ "l'installation. Choississez « Matériel » puis « Imprimantes » dans le "
+#~ "Centre de Contrōle de Mandrake."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Pour installer les imprimantes réseaux, cliquez sur « Annuler », puis "
+#~ "passez en « Mode Expert » et cliquez ą nouveau sur « Ajouter une nouvelle "
+#~ "imprimante »."
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Votre imprimante est-elle un appareil multifonction de HP (OfficeJet, "
+#~ "PSC, LaserJet 1100/1200/1220/3200/3300 avec scanner), une HP PhotoSmart "
+#~ "ou une HP LaserJet 2200?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Installation du paquetage HPOJ..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Vérification du périphérique et configuration de HPOJ ..."
+
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Installation des paquetages SANE ..."
+
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Installation des paquetages mtools..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Acquisition ą partir de votre périphérique multi-fonction HP"
+
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr ""
+#~ "Accčs ą une carte mémoire photo sur votre périphérique multi-fonction HP"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Mise ą disposition du port imprimante pour CUPS ..."
+
+#~ msgid ""
+#~ "To print to a TCP or socket printer, you need to provide the host name of "
+#~ "the printer and optionally the port number. On HP JetDirect servers the "
+#~ "port number is usually 9100, on other servers it can vary. See the manual "
+#~ "of your hardware."
+#~ msgstr ""
+#~ "Pour imprimer sur une imprimante TCP ou socket, vous devez indiquer le\n"
+#~ "nom d'hōte de l'imprimante et, optionellement, le numéro du port.\n"
+#~ "Pour les serveurs d'impression « HP JetDirect », le numéro du\n"
+#~ "port est habituellement 9100, mais cela peut źtre différent pour\n"
+#~ "d'autres serveurs. Veuillez consulter le manuel de votre imprimante."
+
+#~ msgid "Printer host name"
+#~ msgstr "Nom d'hōte de l'imprimante"
+
+#~ msgid "Printer host name missing!"
+#~ msgstr "Nom d'hōte de l'imprimante manquant !"
+
+#~ msgid "Control Center"
+#~ msgstr "Centre de contrōle"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Choisissez l'outil que vous voulez utiliser"
+
+#~ msgid "Mail/SMS alert"
+#~ msgstr "Alerte mail/SMS"
+
+#~ msgid "Mail/SMS alert configuration"
+#~ msgstr "Configuration des alertes mail/SMS"
+
+#~ msgid ""
+#~ "Welcome to the mail/SMS configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up the alert system.\n"
+#~ msgstr ""
+#~ "Bienvenue dans l'utilitaire de configuration mail/SMS.\n"
+#~ "\n"
+#~ "Vous allez pouvoir configurer ici vos les alertes systčmes.\n"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Configurer les moyens de vous alerter"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "aucun périphérique USB série trouvé\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck a échoué avec le code de sortie %d ou le signal %d"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index e43baf63e..ac5cb9ebc 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -53,71 +53,71 @@ msgstr "Roghnaigh freastalaķ X"
msgid "X server"
msgstr "X freastalaķ"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Cumraķochti gach cinn iolrach"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Roghnaigh an méid cuimhne atį id' charta grafachach"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Cumraķocht XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Cumraigh gach cinn ar leith"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Freastalaķ XFree86: %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastalaķ XFree %s le luasghearś crua-earraķ 3D TRIALACH"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,18 +125,64 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Socraithe"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Carta Grafach"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Scįileįn"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Réiteach"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ceart go Leor"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Éalaigh"
+
+#: ../../Xconfig/main.pm_.c:144
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -145,32 +191,28 @@ msgid ""
"%s"
msgstr "Coimead an cumraķocht IP atį ann"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Roghnaigh scįileįn"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Scįileįn"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Socraithe"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Gnįth"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Leasś"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -184,11 +226,11 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Rįta athnuachana cothromįnach"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Rįta athnuachana ingearach"
@@ -212,57 +254,42 @@ msgstr "16 milliśn dath (24 giotįin)"
msgid "4 billion colors (32 bits)"
msgstr "4 billiśn dath (32 giotįin)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Réiteachaķ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Réiteach"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Roghnaigh Réiteach agus an méid dath"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Carta Grafach: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Cealaigh"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ceart go Leor"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
@@ -271,71 +298,71 @@ msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
msgid "Test of the configuration"
msgstr "Trialaigh an cumraķocht"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Leagan amach eocharchlįra: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Cineįl luchóg: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Gaireas luchóige: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Scįileįn: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Scįileįn HorizSync: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Scįileįn VertRefresh: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Carta Grafach: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Cuimhne grafach: %s kb\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Scįileįn VertRefresh: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Réiteachaķ: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Freastalaķ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Tiomįnaķ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ag tśs"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -344,165 +371,181 @@ msgstr ""
"Is féidir linn do rķomhaire a shocrś le X a thosnś i ndhiadh bootįil.\n"
"An dteastaķonn uait go dtosnófar X nuair a aththosnķtear an rķomhaire?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr ""
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr ""
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr ""
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Roghnaigh rang feistiś"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Feistiś LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO le chlįr teacs"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO le Chlįr Graphaice"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootįil as DOS/Windows (loadin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Prķomhroghanna bootįil"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Rķomhchlar Tosnaithe a śsįid "
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Feistiś cód tosnaithe"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Gaireas bootįil"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compact"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Mód fķs"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Pasfhocal (arķs)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Teorannaigh roghanna lķne ordś"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "teorannaigh"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an corįis"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Tabhair na Méid Cuimhne as MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Nķ mar a chéile na pasfhocail"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Scéal Tosnś"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -511,161 +554,162 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
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:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Crķochnithe"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontrįil a suimigh do"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Léamh-Scrķobh"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Lipéad"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Gnįth"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Méid-Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "GanBhideó"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Scrios iontrįil"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Nķl ceadaigh an lipéad folamh ann"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Nķl aon ranna agat!"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Is ann cheana don ainm śsįideora seo"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhéadan"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nķl"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Tį"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Leįmh 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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistįil tiomanaķ do %s, carta %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modķl %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -673,17 +717,17 @@ msgid ""
"For instance, ``io=0x300 irq=7''"
msgstr ""
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Roghachais modśil:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -695,101 +739,101 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Tį an pasfhocal seo ro-shimplķ"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Is ann cheana don ainm śsįideora seo"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Is ann cheana don ainm śsįideora seo"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Suimigh śsįideoir"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Fķor ainm"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Ainm śsįideora"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -798,57 +842,57 @@ msgstr ""
"Is féidir linn do rķomhaire a shocrś le X a thosnś i ndhiadh bootįil.\n"
"An dteastaķonn uait go dtosnófar X nuair a aththosnķtear an rķomhaire?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Roghnagih an śsįidoer gneįs:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a śsįsd:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh śsįideoir"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -857,67 +901,67 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Įrd"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Įrd"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranóid"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
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:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -927,33 +971,50 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
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:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Roghnachais"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Roghnaigh liebhéal slįndįil"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhéal slįndįil"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraķocht an freastalaķ"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -974,151 +1035,274 @@ 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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Fįile go GRUB, an roghnóir Chorįis "
#. -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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Clįr Tosnś"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr ""
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Cumraķocht Stķl Tosnś"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Comhad"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Comhad/_Ealu"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>E"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Scįileįn Stķl Nua"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Scįileįn Tradisiśnta"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Monatóir Tradisiśnta Gtk+"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Tosnaigh Aurora "
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Mód Lilo/Grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Mód Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Feistigh córas"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Earrįid"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "Freastalaķ XFree86: %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "GanBhideó"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Roghnaigh rang feistiś"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Cumraigh"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Roghnś Grśpa Pacįistķ"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Mód Coras"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Ceart go Leor"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, fuzzy, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Earrįid ag oscailt %s do scrķobh: %s"
@@ -1163,68 +1347,118 @@ msgstr "Nķ féidir liom rann eile a cur isteach"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Fraince"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgįiris"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Gearmįinis"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Greicķs"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Ioruais"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Amharc"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Iodįlais"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "srathach"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "nua"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Freastalaķ"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Teastįil an luchóg, le do thoil"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Freastalaķ"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Roghnachais: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Léigh go curamach"
@@ -1235,15 +1469,6 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Earrįid"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Draķodoir"
@@ -1268,7 +1493,7 @@ msgid "Please click on a partition"
msgstr "Roghnaigh rann le do thoil"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Sonraķ"
@@ -1296,13 +1521,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Malairte"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Folamh"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Eile"
@@ -1310,12 +1535,12 @@ msgstr "Eile"
msgid "Filesystem types:"
msgstr "Cineįl córais-comhadlanna"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Cruthaigh"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Cineįl"
@@ -1325,7 +1550,7 @@ msgstr "Cineįl"
msgid "Use ``%s'' instead"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Scrķos"
@@ -1333,83 +1558,83 @@ msgstr "Scrķos"
msgid "Use ``Unmount'' first"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Roghnaigh gnķomh"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Leasś"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Éalaigh gan sabhįil"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Éalaigh gan an clįr-ranna a scrķobh?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Glan gach ceann"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mór"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Tį na ranna prķofa uilig śsįidthe"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Nķ féidir liom rann eile a cur isteach"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1417,34 +1642,34 @@ msgstr ""
"Le breis ranna a bheith agat, dealaigh ceann amhįin le bheith in ann "
"rannsķnithe a cruthś"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Scriobh clįr-ranna"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Scriobh clįr-ranna"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Scriobh clįr-ranna"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Roghnaigh Comhad"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1452,11 +1677,11 @@ msgstr ""
"Nķl an méid céanna ar an rann cśltaca\n"
"Lean ar aghaidh ar aon nós?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Rabhadh"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1464,266 +1689,254 @@ msgstr ""
"Cur diosca flapach sa dioscthiomant\n"
"Caillfear gach sonra ar an dhiosca seo"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Ag iarraidh an clįr-ranna a tarrthįil"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Eolas R-Phost"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Roghnachais"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Athméidigh"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Bog"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formįidigh"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Cur le RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Cur le LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Bain ó RAID"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Athraigh RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Teascįn tosasch: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Cineįl córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr ""
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Tosaķocht: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Ag formįidiś comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Athraigh cineįl ranna"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Cén rann atį uait?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Céard a theastaķonn uait a dhéanamh?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Ag rķomhadh teorainn na córais-comhadlanna FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ag athméadś"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "caillfear gach sonra ar an rann seo"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Roghnaigh an méid nua"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Méid i MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Cén diosca ag a dteastaķonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Teascįn"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Cén tescįn ag a dteastaķonn uait é a bhogadh?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Ag bogadh"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Ag bogadh rann..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Roghnaigh RAID atį ann le méadś"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nua"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
#, fuzzy
msgid "Choose an existing LVM to add to"
msgstr "Roghnaigh RAID atį ann le méadś"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "ainm LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Fķor ainm"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Roghachais modśil:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "feist"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "leibhéal"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "méid smutįn"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Cén sort rannś atį ort?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Roghnaigh pacįistķ ..."
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1735,7 +1948,7 @@ msgstr ""
"Mį tį tś ag śsįid LILO nķ oibróidh sé, nó nķl /boot uait muna n-śsįideann tś "
"LILO"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1746,144 +1959,144 @@ msgstr ""
"sorcóir ar an dhiosca, agus nķl aon rann /boot agat.\n"
"Mį tį tś chun LILO a śsįid, beidh ort rann /boot a cruthś ar ball."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Scrķobhfar clįr diosca %s go dhiosca!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Beidh ort an rķomhaire a aththosnś sula ndéanfar an athrś"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ag formįidiś"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ag formįidiś comhad 'loopback' %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Ag formįidiś rann %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "teip ar 'mkraid'"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Cruthaigh rann nua"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Réiteachaķ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Gaireas: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Litir Dioscthiomįnt DOS: %s (buile faoi thuraim)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Cineįl: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ainm: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Tśs: teascįn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Méid: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s teascįin"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sorcóir %d go sorcóir %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formįidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Neamhformįidithe\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1891,27 +2104,27 @@ msgstr ""
"Rann tosaithe de ghnįth\n"
" (do thosnś MS-DOS, nķ lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Leibhéal %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Méid smutįn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dioscaķ RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1919,7 +2132,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1927,65 +2140,60 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Méid: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Céimseasamh: %s sorcóir, %s ceann, %s teascįn\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
#, fuzzy
msgid "Info: "
msgstr "Eolas"
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dioscaķ LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Cinéal tabla rann: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ar bhśs %d, id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Roghnachais: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Cineįl córas-comhadlanna:"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Nķ mar a chéile na pasfhocail"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2039,23 +2247,23 @@ msgstr "Fearannas NIS"
msgid "Search servers"
msgstr "freastalaķ DNS"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formįidiś %s de %s teipithe"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nķl a fhios agam conas %s a formįidiś go %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2072,57 +2280,57 @@ msgstr ""
msgid "server"
msgstr "Freastalaķ"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Earrįid ag oscailt %s do scrķobh: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2131,258 +2339,262 @@ msgstr ""
"nua a cruthu. Ba chóir duit do chuid crua-earraķ a seiceįil le cśis an fadhb "
"a aimsiś"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Nķl aon ranna agat!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Scrķos Printéir"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Gnįth"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Cuimhne Charta (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Ag formįidiś"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Athraigh cineįl ranna"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Éalaigh"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/C_śidiś"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/C_śidiś"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Cśidiś/_Faoi..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Luchóg"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Cuimhne Charta (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Cealaigh"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Luchóg"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Cuntas"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Deimniś"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Roghnaigh Comhad"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gaireas na hInneal Geata"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 cnaipķ"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Éalaigh"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/C_śidiś"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/C_śidiś"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cśidiś/_Faoi..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "leagan `kernel'"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Leįmh an t-eolais crua-earra"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Cumraigh luchóg"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Taispeįn Eolas"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Cumraigh luchóg"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "Pointe taca dublach %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Fan tamall"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d siocand"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Scrķos Printéir"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Scrķos Printéir"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Gnįth"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
+#: ../../harddrake/v4l.pm_.c:213
+#, fuzzy
+msgid "Card model :"
+msgstr "Cuimhne Charta (DMA)"
+
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Athraigh cineįl ranna"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Ag formįidiś"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3355,7 +3567,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3363,7 +3575,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3383,26 +3595,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Earrįid ag léamh comhad %s"
@@ -3435,7 +3647,7 @@ msgstr ""
"\n"
"x1Lean ar aghaidh ar aon nós?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
@@ -3603,12 +3815,12 @@ msgstr ""
"Ta earraid ann, nķl a fhios agam conas é a cheartś.\n"
"Lean ort, ar do phriacal féin."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pointe taca dublach %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3616,12 +3828,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Fįilte go %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nķl dioscthiomįnt flapach ar fįil"
@@ -3631,7 +3843,7 @@ msgstr "Nķl dioscthiomįnt flapach ar fįil"
msgid "Entering step `%s'\n"
msgstr "Ag tosnś ar céim `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3639,153 +3851,153 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Rann Feistiś"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Méid iomlįn: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Pacįiste mķcheart"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ainm: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Leagan: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Méid: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Tįbhacht: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Feistiś"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Sabhįil ar dhiosca flapach"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Eirigh as Feistiś"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Ag Feistiś"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Ag meastś"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Am fagtha "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Fan tamall, ag ullmhaigh feistiś"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pacįistķ"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Ag feistiįl pacįiste %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aontaigh"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Tarrthįil"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3795,17 +4007,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr ""
@@ -3979,108 +4191,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Eocharclįr"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Cén leagan amach atį ar d'eocharchlįrsa"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Cén rann feistiś atį uait?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Feistiśi/Uadgrįdaigh"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Feistigh nó uasgrįdaigh ?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Molta"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Saineolaķ"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Uasgrįdaigh"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Gaireas luchóige"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Cumraigh Cįrtaķ PCMCIA"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Ag cumraigh IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "nķl aon ranna saora ann"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4093,7 +4305,7 @@ msgstr ""
"Ni féidir liom an tįbla rainn a léamh, tį mįchaillķ ann :(\n"
"Leanfaidh mé orm ag cealś droch rainn"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4101,135 +4313,135 @@ msgstr ""
"Theip ar DiskDrake an tabla rainn a léamh i gceart.\n"
"Lean ort, ar do phriacal féin!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Roghnaigh na ranna atį le formįidiś"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Rann Fréamhach"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Céard é an rann fréamhach (/) ded' chóras?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
#, fuzzy
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Beidh ort an rķomhaire a aththosnś sula ndéanfar an athrś"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Roghnaigh na ranna atį le formįidiś"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Ag formįidiś ranna"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ag curdach do na pacįistķ atį ar fįil"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Ag curdach do na pacįistķ atį ar fįil"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Ag cśrdach pacįistķ le hśasgrįdś"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Roghnaigh pacįistķ ..."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Ag cśrdach pacįistķ le hśasgrįdś"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Aisig ó dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Sabhįil ar dhiosca flapach"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacįistķ a feistiś ..."
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4245,11 +4457,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feistiś"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4258,21 +4470,21 @@ msgstr ""
"Ag feisteįil pacįiste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Cumraķocht Iar-feistś"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4311,7 +4523,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4323,178 +4535,187 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Freastalaķ NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Scrios Freastalaķ CUPS"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Gan Printéir"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimriś"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Luchóg"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Am Crķos"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Printéir"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Carta Telefķs"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Dealaigh Windows(TM)"
+msgid "Windows Domain"
+msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Chomaid Įitiśl"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimniś"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Deimniś LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Freastalaķ LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Deimniś NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Freastalaķ NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Deimniś LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Fearannas NIS"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Freastalaķ NTP"
+msgid "Authentication Windows Domain"
+msgstr "Deimniś LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Ainm Fearannas"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -4512,19 +4733,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Cead dioscthiomįnt flapach"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Dara dioscthiomįint flapach"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Scipeįil"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4540,7 +4761,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4549,29 +4770,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Brón orm, nķl aon dioscthiomįnt flapach ar fįil"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
#, fuzzy
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Roghnaigh na ranna atį le formįidiś"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh rķomhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4579,27 +4800,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Céard a theastaķonn uait a dhéanamh?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cód tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4610,24 +4831,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4646,16 +4867,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootįil"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4664,15 +4885,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Athlódaigh"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Roghnś Grśpa Pacįistķ"
@@ -4700,402 +4921,463 @@ msgstr ""
msgid "Choose a file"
msgstr "Roghnaigh gnķomh"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Réamhioaķocht"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr ""
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Teacs"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Droch rogha, aththrialaigh\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Do rogha? (gnįs %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Do rogha? (gnįs %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Roghnachais: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Céard a theastaķonn uait a dhéanamh?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Do rogha? (gnįs %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ceichķs (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Gearmįinis"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spįinis"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Fionlainnais"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francaigh"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Ioruais"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polainnais"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ruislķs"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Méarchlįr UK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Meįrchlįr US"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr ""
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgįiris"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+msgid "Bengali"
+msgstr ""
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Bulgįiris"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgįiris"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr ""
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Eastóinis"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarśisis"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Eilvéis (Stķl Ghearmįnais)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Eilvéis (Stķl Francaigh)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ceichķs (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Gearmįinis (gach meachlįr marbh)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danmharghais"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (Meiriceį)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Ioruais)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Meiriceį)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Eastóinis"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Greicķs"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungįrais"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Cróitis"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Iodįlais"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Seįpainis (106 eochair)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Méarchlįr Chóiris"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Mheirceį Theas"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Įit"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Įit"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+msgid "Mongolian (cyrillic)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rśisis (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rśisis (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rśisis (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slóbaicis (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slóbaicis (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Table"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Meįrchlįr US"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Mearchlįr US (idirnaisiśnta)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5104,37 +5386,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Uimhir fón"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formįidigh ranna"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5239,51 +5521,43 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchóg ar bith"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Teastįil an luchóg, le do thoil"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Fionnlainnis"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "An bhfuil seo ceart?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Eolas"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5303,6 +5577,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "śsįid dhcp"
@@ -5326,7 +5604,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Roghnaigh an clįréadan ghréasįn"
@@ -5340,7 +5618,7 @@ msgstr "Cén cinéal luchóg atį agat?"
msgid "no network card found"
msgstr "nķ fuaireathas cįrta gréasįnś"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Cumraigh gréasįnś"
@@ -5352,7 +5630,7 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "ÓstAinm"
@@ -5380,7 +5658,7 @@ msgstr ""
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5491,44 +5769,44 @@ msgstr "Cén cinéal luchóg atį agat?"
msgid "Dialup options"
msgstr "Roghanna 'Dialup'"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Ainm Nasc"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Uimhir fón"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Ainm Login:"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-bhunaithe"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Teirminéal-bhunaithe"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Ainm Fearannas"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Cead Freastalaķ DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Dara Freastalaķ DNS"
@@ -5628,13 +5906,13 @@ msgstr "Roghnagih an śsįidoer gneįs:"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mód Saineolaķ"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr ""
@@ -5743,7 +6021,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -5751,50 +6029,50 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumrś gléas gréasįnś %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomįint $module)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Cruthaigh an diosca "
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5802,40 +6080,40 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "freastalaķ DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastalaķ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr ""
@@ -5848,7 +6126,7 @@ msgstr "Cumraigh Idirlķon"
msgid "Do you want to try to connect to the Internet now?"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
#, fuzzy
msgid "Testing your connection..."
msgstr "Cumraigh nasc ghréasįn"
@@ -5876,45 +6154,45 @@ msgstr "Cumraķocht Idirlķon."
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ na Carta"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Cuimhne Charta (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "I/A Carta"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "I/A_0 Carta"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "I/A_1 Carta"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
#, fuzzy
msgid "Your personal phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Uimhir fón"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Roghanna Printéir"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Roghanna Printéir"
@@ -5924,30 +6202,30 @@ msgstr "Roghanna Printéir"
msgid "Choose your country"
msgstr "Roghnaigh mhéarchlįr"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Athraigh cineįl ranna"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Ainm Nasc"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Pasfhocal"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -5980,7 +6258,7 @@ msgstr "Droch comhad chśltaca"
msgid "Error writing to file %s"
msgstr "Earrįidh ag scrķobh comhad %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6023,7 +6301,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6052,7 +6330,7 @@ msgstr "Scrķos Printéir"
msgid "Printer on remote CUPS server"
msgstr "Scrios Freastalaķ CUPS"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Scrios freastalaķ lpd"
@@ -6072,7 +6350,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Freastalaķ Printéir"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Gaireas Printéir (URI)"
@@ -6081,130 +6359,134 @@ msgstr "Gaireas Printéir (URI)"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Printéir įitiśl"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Scrķos Printéir"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Earrįidh ag scrķobh comhad %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modķl %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP freastalaķ SMP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
#, fuzzy
msgid " (Default)"
msgstr "Gnįth"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr ""
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr ""
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "cumraķocht"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Scrios Freastalaķ CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6215,7 +6497,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6225,35 +6507,35 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
#, fuzzy
msgid "CUPS server IP"
msgstr "IP freastalaķ SMP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Poirt"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Cumraigh ADSL"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6266,37 +6548,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Printéir įitiśl"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Printéir įitiśl"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6310,53 +6623,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Scrķos Printéir"
-
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Pointe taca dublach %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Printéir Gréasįn (lpd)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6364,43 +6674,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Printéir įitiśl"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Printéir įitiśl"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6408,7 +6709,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6416,110 +6717,87 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Ag feistiįl pacįiste %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Ag feistiįl pacįiste %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Ag feistiįl pacįiste %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "ÓstAinm"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Pointe taca dublach %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Nasc Printéir"
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ag dśnadh sķos an ghreasįn"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Roghanna Printéir SMB (Fuinneoga 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6527,35 +6805,46 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "freastalaķ óstann SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP freastalaķ SMP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Comh. ainm"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Grupa na hOibre"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Scrķos Printéir"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6579,7 +6868,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6588,7 +6877,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6596,11 +6885,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6608,84 +6897,104 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Freastalaķ Printéir"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Roghanna Printéir NetWare"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Gaireas Printéir (URI)"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Ainm Printéir"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Įit"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6700,28 +7009,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "An bhfuil seo ceart?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Cén sort printéir atį ort?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -6730,18 +7039,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6751,12 +7060,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6764,7 +7073,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -6777,7 +7086,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -6787,34 +7096,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Bain trial as arķs"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6822,42 +7131,42 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Printéir"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Uirlisķ gnįth"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6867,22 +7176,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6891,15 +7200,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -6908,7 +7217,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -6916,41 +7225,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6960,7 +7269,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -6969,46 +7278,46 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ag dśnadh sķos an ghreasįn"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ag dśnadh sķos an ghreasįn"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ag dśnadh sķos an ghreasįn"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ag dśnadh sķos an ghreasįn"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Dśn"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7017,9 +7326,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7030,18 +7339,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7051,51 +7360,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7103,61 +7412,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Gan Printéir"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Cumraigh Printéir"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Cumraigh gréasįnś"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Nķl aon scįileįn cumraithe"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7165,12 +7474,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Cumraigh gréasįnś"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7180,34 +7489,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Įrd"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranóid"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7222,11 +7531,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7240,69 +7549,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Cén rann atį uait?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Ag feistiįl pacįiste %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Roghanna Printéir"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Cumraigh printéir"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "An dteastaģonn uait printéir a chumrś?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Clódóir"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7310,148 +7619,144 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Cumraigh gréasįnś"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Luchóg ar bith"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Éalaigh"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Nasc Printéir"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Óstainm Printéir"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Scrķos Printéir"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Printéir įitiśl"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "An bhfuil tś ag iarraidh an cumraķocht a thrial?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Scrķos Printéir"
@@ -7500,7 +7805,7 @@ msgid ""
msgstr ""
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../proxy.pm_.c:79
@@ -7550,34 +7855,6 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:144
-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 ""
-
-#: ../../security/msec.pm_.c:150
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Éirigh as cumraķocht"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Roghnachais"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7811,7 +8088,7 @@ msgstr "Idirlķon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Mód Coras"
@@ -7931,7 +8208,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Bainteach le hIdirlķon"
@@ -8031,21 +8308,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Ag feistiįl pacįiste %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Éirigh as le do thoil agus Crtl-Alt-BackSpace a śsįid"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8053,174 +8330,174 @@ msgstr ""
"Ni féidir liom an tįbla rainn a léamh, tį mįchaillķ ann :(\n"
"Leanfaidh mé orm ag cealś droch rainn"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Freastalaķ Printéir"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Freastalaķ Printéir"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "Freastalaķ NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "Freastalaķ NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Suimigh śsįideoir"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/C_śidiś"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Scrķos"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Suimigh śsįideoir"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr ""
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nķl dioscthiomįnt flapach ar fįil"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Earrįid"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Cumraķocht Iar-feistś"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8235,23 +8512,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Cumraķocht Stķl Tosnś"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Cruthaigh flapach bootįil"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8259,40 +8536,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Comhghairdeas!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Feistiś"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Suimigh śsįideoir"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Ag formįidiś comhad 'loopback' %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8300,7 +8590,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8308,34 +8598,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Bain trial as arķs"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Droch comhad chśltaca"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8343,734 +8697,799 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Earrįid ag léamh comhad $f"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ciś"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Ainm śsįideora"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastįil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Cén leagan amach atį ar d'eocharchlįrsa"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Roghnaigh rann le do thoil"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Roghnaigh rann le do thoil"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Roghnaigh rann le do thoil"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Roghnaigh Comhad"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Roghnaight do theangam le do thoil."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Teastįil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Clįréadan Gréasįn"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Cineįl"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Ainm śsįideora"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Roghachais modśil:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraķocht Gréasįnś"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Gaireas luchóige: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraķocht Gréasįnś"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Teastįil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Nasc LAN"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Nasc Printéir"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Feistigh córas"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Clįr Tosnś"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Teacs"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chśltaca"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Sabhįil i gcomhad"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Teastįil an luchóg, le do thoil"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraķocht Gréasįnś"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraķocht Gréasįnś"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraķocht"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Éirigh as cumraķocht"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9081,7 +9500,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9102,7 +9521,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9111,7 +9530,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9135,7 +9554,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9152,21 +9571,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9180,17 +9599,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9207,7 +9626,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9247,7 +9666,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9258,7 +9677,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9271,7 +9690,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9310,94 +9729,121 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr ""
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr ""
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Bainteach le hIdirlķon"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "sainordaitheach"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Luchóg"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Scrķos Printéir"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Comh. ainm"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Clódóir"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Draķodóir Cumraķocht Gréasįnś"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Deimniś"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Roghnś Grśpa Pacįistķ"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Fan tamall"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9409,338 +9855,338 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Eirigh as Feistiś"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Poirt"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Eirigh as Feistiś"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
msgstr ""
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
msgstr "Cumraķocht Gréasįnś"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr ""
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
#, fuzzy
msgid "Hostname: "
msgstr "Ainm śsįideora"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
#, fuzzy
msgid "Internet access"
msgstr "suimiśil"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
#, fuzzy
msgid "Type:"
msgstr "Cineįl: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Inneal Geata:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
#, fuzzy
msgid "Interface:"
msgstr "suimiśil"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr ""
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
#, fuzzy
msgid "Configure Internet Access..."
msgstr "Cumraigh gréasįnś"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
#, fuzzy
msgid "LAN configuration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Tiomįnaķ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Interface"
msgstr "Clįréadan Gréasįn"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Clįr Tosnś"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
#, fuzzy
msgid "Configure Local Area Network..."
msgstr "Cumraigh gréasįnś"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Draķodoir..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Trialaigh an cumraķocht"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Ainm Nasc"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Not connected"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
#, fuzzy
msgid "LAN Configuration"
msgstr "cumraķocht"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr ""
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
#, fuzzy
msgid "Internet connection configuration"
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
#, fuzzy
msgid "Internet Connection Configuration"
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
#, fuzzy
msgid "Connection type: "
msgstr "Athraigh cineįl ranna"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Inneal Geata:"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "Śsįid: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Ainm Modśl"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Méid"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
#, fuzzy
msgid "boot disk creation"
msgstr "Trialaigh an cumraķocht"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "gnįth"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Earraidh DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "leagan `kernel'"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Gnįth"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Roghnachais Saineoiaķ"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Suimigh Modśil"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forsįil"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr ""
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
#, fuzzy
msgid "omit scsi modules"
msgstr "Luchóg ar bith"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
#, fuzzy
msgid "omit raid modules"
msgstr "Scrķos modśil"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Scrķos modśil"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Aschur"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Teip ar glaoch `fork': %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -9748,104 +10194,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "Teip ag cuardach %s"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Crķochnithe"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Formadaigh flapach"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ag Ullmhaigh feistiś"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "teorannaigh"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9854,120 +10300,125 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Formįidigh ranna"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Éirigh as cumraķocht"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr ""
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Roghnaigh na ranna atį le formįidiś"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Oifig"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Tobscoir"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Printéir"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Feistigh córas"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Scrķos Printéir"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Scéal Tosnś"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Nķl aon gaireas ghreasįn san do chorįs!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Feistiś"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Nķl aon gaireas ghreasįn san do chorįs!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Eirigh as Feistiś"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9975,32 +10426,32 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10008,20 +10459,20 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10031,31 +10482,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, fuzzy, c-format
msgid "Interface %s"
msgstr "suimiśil"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nķl aon gaireas ghreasįn san do chorįs!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Clįréadan Gréasįn"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10065,18 +10516,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Nķl aon scįileįn cumraithe"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10086,17 +10537,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Cumraigh ADSL"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10107,7 +10558,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10119,78 +10570,78 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP freastalaķ SMP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
#, fuzzy
msgid "Configuring..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Ag feistiįl pacįiste %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Nasc na hIdirlķon agus cumraķocht"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10200,21 +10651,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Bainteach le hIdirlķon"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr ""
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10223,106 +10666,110 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Fraince"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Athlódaigh"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Eorap"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "srathach"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10346,11 +10793,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Cén leagan amach atį ar d'eocharchlįrsa"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
@@ -10372,7 +10819,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -10482,147 +10929,148 @@ msgstr "Feilire"
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "Ag Parsįil an comhad %s, fan tamall"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Cumraigh Lilo/Grub"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Ainm Fearannas"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "Freastalaķ NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Freastalaķ Printéir"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "Freastalaķ NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "Freastalaķ NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Seirbishķ"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Freastalaķ Printéir"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "suimiśil"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Ag formįidiś"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Cumraigh Idirlķon"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Aththrialaigh"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Sįbhįil mar..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Cén cinéal luchóg atį agat?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr ""
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr ""
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Scrķos Printéir"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr ""
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr ""
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Roghnaigh carta grafachach"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Gaireas bootįil"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10630,7 +11078,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -10650,17 +11098,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "ag leįmh cumraķocht"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "ag leįmh cumraķocht"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -10668,7 +11116,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -10860,56 +11308,60 @@ msgstr ""
msgid "Can't open %s for writing: %s\n"
msgstr "Earrįid ag oscailt %s do scrķobh: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "ag leįmh cumraķocht"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Fan tamall, ag ullmhaigh feistiś"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Greasan/FTP"
@@ -10958,6 +11410,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
@@ -11049,10 +11505,6 @@ msgid "Office Workstation"
msgstr "Stįisiśn Oibre"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Freastalaķ"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -11115,6 +11567,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr ""
@@ -11148,6 +11604,57 @@ msgstr "Ilmheįnach"
msgid "Scientific Workstation"
msgstr "Stįisiśn Oibre"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Roghnachais"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Slįndįil"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Cén leagan amach atį ar d'eocharchlįrsa"
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Teastįil an luchóg, le do thoil"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Dealaigh Windows(TM)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Table"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Freastalaķ NTP"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Scrķos Printéir"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Ag feistiįl pacįiste %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Ag feistiįl pacįiste %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Ag feistiįl pacįiste %s"
+
+#, fuzzy
+#~ msgid "Control Center"
+#~ msgstr "Bainteach le hIdirlķon"
+
#~ msgid "Choose options for server"
#~ msgstr "Roghnaigh cumraķocht an freastalaķ"
@@ -11188,9 +11695,6 @@ msgstr "Stįisiśn Oibre"
#~ msgid "Preparing X-Window configuration"
#~ msgstr "Ag ullmhś cumraķocht X-Windows"
-#~ msgid "What do you want to do?"
-#~ msgstr "Céard a theastaķonn uait a dhéanamh?"
-
#~ msgid "Change Monitor"
#~ msgstr "Athraigh Scįileįn"
@@ -11209,9 +11713,6 @@ msgstr "Stįisiśn Oibre"
#~ msgid "Test again"
#~ msgstr "Bain trial as arķs"
-#~ msgid "Graphics card"
-#~ msgstr "Carta Grafach"
-
#~ msgid "Select a graphics card"
#~ msgstr "Roghnaigh carta grafachach"
@@ -11250,6 +11751,3 @@ msgstr "Stįisiśn Oibre"
#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
#~ msgstr "Scįileįn a bhfuil in ann do 1600x1200 ag 76Hz"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Roghnaigh liebhéal slįndįil"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 1c219d281..9b997624b 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jesśs Bravo Įlvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -53,56 +53,56 @@ msgstr "Escolla un servidor X"
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "lendo a configuración"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Seleccione a cantidade de memoria da tarxeta grįfica"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Configuración de XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "æQue configuración de XFree quere usar?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
#, fuzzy
msgid "Use Xinerama extension"
msgstr "Usar detección automįtica"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Axudante da configuración de rede"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -112,18 +112,18 @@ msgstr ""
"XFree %s. A tarxeta estį soportada por XFree %s, que pode ter un mellor\n"
"soporte en 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"A sśa tarxeta pode ter soporte de aceleración 3D por hardware con XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,7 +135,7 @@ msgstr ""
"A sśa tarxeta estį soportada por XFree %s, que pode ter un mellor soporte en "
"2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,11 +144,57 @@ msgstr ""
"A sśa tarxeta pode ter soporte de aceleración 3D por hardware, pero só con\n"
"XFree %s, ADVIRTA QUE ESTE SOPORTE É EXPERIMENTAL E PODE COLGAR O SISTEMA."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Personalizado"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Tarxeta grįfica"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resolución"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Opcións"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Aceptar"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Saķr"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -161,32 +207,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Escolla o monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Personalizado"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Xenérico"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Refacer"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -209,11 +251,11 @@ msgstr ""
"xa que pode danalo.\n"
"No caso de dśbida, escolla unha configuración conservadora."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Frecuencia de actualización horizontal"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Frecuencia de actualización vertical"
@@ -237,57 +279,42 @@ msgstr "16 millóns de cores (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4 mil millóns de cores (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resolucións"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resolución"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Escolla a resolución e a profundidade de cor"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Tarxeta grįfica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Cancelar"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Aceptar"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "æDesexa probar a configuración?"
@@ -296,71 +323,71 @@ msgstr "æDesexa probar a configuración?"
msgid "Test of the configuration"
msgstr "Proba da configuración"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposición do teclado: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo de rato: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo do rato: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frecuencia horizontal do monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frecuencia vertical do monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Tarxeta grįfica: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memoria da tarxeta grįfica: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Profundidade de cor: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolución: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Lanzar X11 ó arrincar"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -369,167 +396,184 @@ msgstr ""
"Pódese configurar o seu ordenador para que entre automaticamente\n"
"en X ó arrincar. æDesexa que se execute X ó reiniciar?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "æQue tipo de conexión RDSI ten?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Primeiro sector da partición de arranque"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Instalación do SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "æOnde quere instalar o cargador de arrinque?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Instalación do LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO con menś de texto"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO con menś grįfico"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrincar dende DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Cargador de arrinque que usar"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Instalación do cargador de arrinque"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funciona en BIOS antigas)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compacto"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Modo de vķdeo"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Retardo antes de arrincar a imaxe por omisión"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Restrinxir opcións da lińa de comandos"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "restrinxir"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tamańo exacto de memoria se for necesario (atopįronse %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Activar perfķs mśltiples"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Indicar o tamańo da memoria en MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"A opción ``restrinxir opcións da lińa de comandos'' non ten sentido sen "
"contrasinal"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Mensaxe inicial"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "æPermitir o arrinque de CD?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "æSO por omisión?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -538,7 +582,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -546,155 +590,156 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas mįis ou cambiar as que xa existen."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "æQue tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Raķz"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tįboa"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Por omisión"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr ""
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Quitar entrada"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Debe ter unha partición de intercambio"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Esta etiqueta xa se estį a usar"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "æTen algunha outra?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "æTen algunha interface %s?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Mire a información 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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -705,17 +750,17 @@ msgstr ""
"As opcións son da forma «nome=valor nome2=valor2 ...».\n"
"Por exemplo pode ter «io=0x300 irq=7»"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Opcións do módulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "æQue controlador de %s desexa probar?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -733,15 +778,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non deberķa\n"
"causar ningśn dano."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Autodetección"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Especificar as opcións"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -750,54 +795,54 @@ msgstr ""
"Fallo o cargar o módulo %s\n"
"æDesexa retentalo con outros parįmetros?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Este contrasinal é demasiado simple"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "O nome de usuario (login) só debe conter letras, nśmeros, '-' e '_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Este nome de usuario xa estį engadido"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Este nome de usuario xa estį engadido"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -806,32 +851,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Login automįtico"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -841,59 +886,59 @@ msgstr ""
"como un usuario. Se non quere usar esta caracterķstica, prema o botón\n"
"cancelar."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 estarįn dispońibles trala instalación"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -902,42 +947,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Benvida ós crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estįndar"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -947,7 +992,7 @@ msgstr ""
"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha mįquina\n"
"conectada a outras ou į Internet. Non hai contrasinais de acceso."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -955,7 +1000,7 @@ msgstr ""
"Os contrasinais estįn activados, pero o uso como ordenador de rede aķnda\n"
"non se recomenda."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -964,13 +1009,13 @@ msgstr ""
"Esta é a seguridade recomendada para un ordenador usado para conectar\n"
"į Internet como cliente. Agora hai mįs comprobacións de seguridade."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -984,7 +1029,7 @@ msgstr ""
"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
"que acepta conexións de mśltiples clientes."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -993,32 +1038,49 @@ msgstr ""
"Tómanse caracterķsticas do nivel 4, pero agora o sistema estį completamente\n"
"pechado. As caracterķsticas de seguridade estįn ó mįximo nivel."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcións"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Escola o nivel de seguridade"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcións para o servidor"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1042,157 +1104,280 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandos antes de arrincar, ou 'c' para a li¤a 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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
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:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Menś Inicio"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "axuda aķnda non implementada.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ficheiro"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ficheiro/_Saķr"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "Mudar o monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Modo de marcación"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Modo de arrinque"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Instalar sistema"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Erro"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "bo"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Clase de instalación"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
#, fuzzy
msgid "Configure"
msgstr "Configurar as X"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Gardar a selección de paquetes"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window ó iniciar"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Non, non quero login automįtico"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automįtico con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Aceptar"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "non se pode abrir /etc/inittab para lectura: %s"
@@ -1237,68 +1422,119 @@ msgstr "Non é posible engadir mįis particións"
msgid "Screenshots will be available after install in %s"
msgstr "Pode escoller outras linguas que estarįn dispońibles trala instalación"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Alemįn"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Grego"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Noruegués"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Mirar"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Italiano"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "serie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "novo"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Servidor"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Probe o seu rato"
+
+#: ../../diskdrake/dav.pm_.c:71
+#, fuzzy
+msgid "The URL must begin with http:// or https://"
+msgstr "O proxy deberķa ser http://..."
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Servidor"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Punto de montaxe: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opcións: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Faga primeiro unha copia de seguridade dos seus datos"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "”Lea coidadosamente!"
@@ -1311,15 +1547,6 @@ msgstr ""
"Se ten pensado usar aboot, teńa coidado de deixar un espacio libre (2048\n"
"sectores abondan) no inicio do disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Erro"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Axudante"
@@ -1345,7 +1572,7 @@ msgid "Please click on a partition"
msgstr "Prema nunha partición"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detalles"
@@ -1374,13 +1601,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Intercambio"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Baleiro"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Outros"
@@ -1388,12 +1615,12 @@ msgstr "Outros"
msgid "Filesystem types:"
msgstr "Tipos de sist. de ficheiros:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Crear"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1403,7 +1630,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Use ``%s'' no seu lugar"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Borrar"
@@ -1411,84 +1638,84 @@ msgstr "Borrar"
msgid "Use ``Unmount'' first"
msgstr "Use ``Desmontar'' primeiro"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ó mudar o tipo da partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Escolla a acción"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Mudar a modo experto"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Mudar a modo normal"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Refacer"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "æContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Saķr sen gardar"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "æSaķr do programa sen gardar a tįboa de particións?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "æDesexa probar a configuración?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Asignación automįtica"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Borrar todas"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Mįis"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Tódalas particións primarias estįn usadas"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Non é posible engadir mįis particións"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1496,35 +1723,35 @@ msgstr ""
"Para ter mįis particións, borre unha para poder crear unha partición "
"estendida"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Escribir tįboa de particións"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Tįboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Tįboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Tįboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Automonta-las unidades extraķbles"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Seleccione un ficheiro"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1532,11 +1759,11 @@ msgstr ""
"A tįboa de particións de rescate non ten\n"
"o mesmo tamańo. æContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Advertencia"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1544,131 +1771,114 @@ msgstr ""
"Insira un disquete na unidade\n"
"Perderanse tódolos datos no disquete"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Tentando recuperar a tįboa de particións de rescate"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Información do correo"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opcións"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Redimensionar"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Desprazar"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatar"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Engadir ó RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Engadir ó LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmontar"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Quitar do RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Quitar do LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modificar o RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Usar para loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Crear unha nova partición"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Sector inicial: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Punto de montaxe: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Preferencia: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Mudar o tipo de partición"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "æQué sistema de ficheiros desexa?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "æOnde desexa montar o ficheiro loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "æOnde desexa montar o dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1677,136 +1887,141 @@ msgstr ""
"usar de loopback.\n"
"Quite primeiro o loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "æOnde desexa montar o dispositivo %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Calculando os lķmites do sistema de ficheiros FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Redimensionando"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Esta partición non se pode redimensionar"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Deberķa facer unha copia de seguridade dos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ó redimensionar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Escoller o novo tamańo"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Tamańo en MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "æA que disco desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "æA que sector desexa desprazala?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Desprazando"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Desprazando partición..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Escolla un dos RAID para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "novo"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Escolla un dos LVM para engadirlle"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "æNome do LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Esta partición non pode usarse para loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Nome do ficheiro loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Nome real"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "O ficheiro xa estį a ser usado por outro loopback, escolla outro"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "O ficheiro xa existe. æUsalo?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Opcións do módulo:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "nivel"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "tamańo do bloque de datos"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Teńa coidado: esta operación é perigosa."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "æQué tipo de particionamento quere?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr ""
"Este paquete ten que ser actualizado\n"
"æEstį seguro de que quere deseleccionalo?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1817,7 +2032,7 @@ msgstr ""
"(nun cilindro > 1024). Se usa o LILO, non funcionarį, e se non o\n"
"usa, non necesita /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1829,7 +2044,7 @@ msgstr ""
"Se pensa usar o selector de SO de arrinque LILO, lembre engadir unha\n"
"partición /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1840,138 +2055,138 @@ msgstr ""
"partición /boot.\n"
"Lembre polo tanto engadir unha partición /boot"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "”Escribirase ó disco a tįboa de particións da unidade %s!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Necesitarį reiniciar o equipo para que a modificación sexa tomada en conta"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ó formatar a partición %s, perderanse tódolos datos desta partición"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatando"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatando a partición %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid fallou"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resolución: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra de unidade DOS: %s (aproximación)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Inicio: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Tamańo: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sectores"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindro %d a cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Non formatado\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Montado\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Ficheiro(s) loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1979,27 +2194,27 @@ msgstr ""
"Partición de arrinque por omisión\n"
" (para arrincar en MS-DOS, non para lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Tamańo do bloque de datos %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discos RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome do ficheiro loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2007,7 +2222,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2015,65 +2230,60 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Tamańo: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Xeometrķa: %s cilindros, %s cabezas, %s sectores\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discos LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo de tįboa de particións: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "no bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opcións: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipo de sist. de ficheiros: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Este contrasinal é demasiado simple (ten que ter polo menos %d caracteres)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Os contrasinais non coinciden"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2127,23 +2337,23 @@ msgstr "Dominio NIS"
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Descońécese o xeito de formatar %s de tipo %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2160,33 +2370,33 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particións mįis pequenas que 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particións mįis pequenas que 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Os puntos de montaxe deben empezar por /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Xa existe unha partición co punto de montaxe %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio deberķa permanecer dentro do sistema de ficheiros raķz"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2195,26 +2405,26 @@ msgstr ""
"Necesita un sistema de ficheiros real (ext2, reiserfs) para este punto de "
"montaxe\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non pode usar un volume lóxico LVM para o punto de montaxe %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Non hai espacio libre dabondo para asignar novas particións"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2222,259 +2432,263 @@ msgstr ""
"Ocorreu un erro - non se atopou ningśn dispositivo vįlido para crear novos "
"sistemas de ficheiros. Verifique o seu equipo para ver a razón deste problema"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "”Non ten ningunha partición!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Usar detección automįtica"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Xenérico"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memoria da tarxeta (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Formatando"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Mudar o tipo de partición"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Saķr"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/A_xuda"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/A_xuda"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Axuda/_Acerca..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Rato"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Cancelar"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Rato"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Descrición"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autenticación"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Seleccione un ficheiro"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Dispositivo de pasarela"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 botóns"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Saķr"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/A_xuda"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Axuda/_Acerca..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Autodetección"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detectar discos duros"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Mire a información sobre o hardware"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Configurar o rato"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Mostrar información"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Configurar o rato"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "detectado no porto %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Agarde, por favor"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usar detección automįtica"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Xenérico"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Autodetección"
+msgid "Card model :"
+msgstr "Memoria da tarxeta (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Mudar o tipo de partición"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatando"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3577,7 +3791,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3585,7 +3799,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3605,20 +3819,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3626,7 +3840,7 @@ msgstr ""
"Para usar esta selección de paquetes gardada, arrinque a instalación con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
@@ -3664,7 +3878,7 @@ msgstr ""
"\n"
"æDesexa continuar de calquera xeito?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe ter unha partición de intercambio"
@@ -3847,12 +4061,12 @@ msgstr ""
"Ocorreu un erro, e o programa non sabe como manexalo de\n"
"maneira limpa. Continśe ó seu propio risco."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto de montaxe %s duplicado"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3864,12 +4078,12 @@ msgstr ""
"Comprobe o cdrom nun ordenador xa instalado usando \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispońible"
@@ -3879,7 +4093,7 @@ msgstr "Ningunha disqueteira dispońible"
msgid "Entering step `%s'\n"
msgstr "Entrando na etapa '%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3891,80 +4105,80 @@ msgstr ""
"en modo texto. Para iso, prema 'F1' cando arrinque o CDROM, e escriba\n"
"'text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Clase de instalación"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Escolla unha das seguintes clases de instalación:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Selección individual de paquetes"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Tamańo total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Paquete erróneo"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versión: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Tamańo: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Importancia: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non pode seleccionar este paquete xa que non hai espacio dabondo para "
"instalalo"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Vanse eliminar os seguintes paquetes"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Non pode seleccionar/deseleccionar este paquete"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Este é un paquete obrigatorio, non se pode deseleccionar"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Non pode deseleccionar este paquete. Xa estį instalado"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3972,77 +4186,77 @@ msgstr ""
"Este paquete ten que ser actualizado\n"
"æEstį seguro de que quere deseleccionalo?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non pode deseleccionar este paquete. Ten que ser actualizado"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instalar"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalar"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instalando"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Estimando"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Por favor, agarde, preparando a instalación"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paquetes"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Instalando o paquete %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceptar"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4056,17 +4270,17 @@ msgstr ""
"Por favor, insira o Cd-Rom etiquetado \"%s\" na unidade e prema Aceptar. Se "
"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "æSeguir adiante?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ó ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Houbo un erro ó instalar os paquetes:"
@@ -4240,108 +4454,108 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Escolla a disposición do seu teclado."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Esta é a lista completa de teclados dispońibles"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "æQué clase de instalación desexa?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instalar/Actualizar"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "æÉ isto unha instalación ou unha actualización?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Recomendada"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Experto"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Actualización"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Gardar a selección de paquetes"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Porto do rato"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Escolla o porto serie onde estį conectado o seu rato."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Configurando tarxetas PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Configurando o IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "ningunha partición dispońible"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Examinando as particións para atopar os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Seleccione os puntos de montaxe"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4359,7 +4573,7 @@ msgstr ""
"\n"
"æConcorda coa perda de tódalas particións?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4367,80 +4581,80 @@ msgstr ""
"O DiskDrake non puido ler correctamente a tįboa de particións.\n"
"”Continśe ó seu propio risco!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Partición raķz"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "æCal é a partición raķz (/) do seu sistema?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Necesita reiniciar o equipo para que a modificación da tįboa\n"
"de particións se tome en conta"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Elixa as particións que desexa formatar"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "æComprobar os bloques erróneos?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formatando as particións"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Creando e formatando o ficheiro %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Non hai espacio de intercambio dabondo para finalizar a instalación,\n"
"por favor, engada algśn"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Buscando os paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Atopando os paquetes para actualizar"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Non pode deseleccionar este paquete. Xa estį instalado"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Atopando os paquetes para actualizar"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -4449,61 +4663,61 @@ msgstr ""
"O seu sistema non ten espacio libre dabondo para a instalación ou "
"actualización (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaurar a partir dun disquete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Gardar nun disquete"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4522,11 +4736,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Preparando a instalación"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4535,21 +4749,21 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Configuración trala instalación"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4620,7 +4834,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4632,186 +4846,195 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Contactando co espello para obter a lista dos paquetes dispońibles"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "æCal é a sśa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "æO reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "æTen algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows(FAT32)"
+msgid "Windows Domain"
+msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticación NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Servidor NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Autenticación"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Dominio NIS"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Servidor NIS"
+msgid "Authentication Windows Domain"
+msgstr "Autenticación"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Nome de dominio"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4840,19 +5063,19 @@ msgstr ""
"de Mandrake, facendo asķ moito mįis fįcil a recuperación no caso de fallo\n"
"grave do sistema. æDesexa crear un disco de arrinque para o seu sistema?"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4879,7 +5102,7 @@ msgstr ""
"grave do sistema. æDesexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4888,28 +5111,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4917,11 +5140,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "æDesexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4929,16 +5152,16 @@ msgstr ""
"Erro instalando aboot, \n"
"æprobar a forzar a instalación mesmo se iso destrśe a primeira partición?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A instalación do xestor de arrinque fallou. Ocorreu o seguinte erro:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4949,17 +5172,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4969,7 +5192,7 @@ msgstr ""
"\n"
"æDesexa realmente saķr agora?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5002,15 +5225,15 @@ msgstr ""
"da instalación, hai un capķtulo na Guķa do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5024,15 +5247,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Gardar a selección de paquetes"
@@ -5060,406 +5283,469 @@ msgstr ""
msgid "Choose a file"
msgstr "Escolla a acción"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Avanzado"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Anterior"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Texto"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, tente de novo\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "æA sśa escolla? (por omisión %s)"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "æA sśa escolla? (por omisión %s)"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcións: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "æDesexa usar aboot?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "æA sśa escolla? (por omisión %s)"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Checo (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Alemįn"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Teclado dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Espańol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finlandés"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francés"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Noruegués"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polaco"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ruso"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Sueco"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Britįnico"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Estadounidense"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenio (antigo)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenio (mįquina de escribir)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaianķ (latķn)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "activar"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenio (fonético)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bślgaro"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasileiro (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonio"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Bielorruso"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Suķzo (alemįn)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Suķzo (francés)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Checo (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Alemįn (sen teclas acentuadas)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Dinamarqués"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruegués)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EUA)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonio"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Xeorxiano (\"ruso\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Xeorxiano (\"latino\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grego"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hśngaro"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israelķ"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israelķ (Fonético)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iraniano"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandés"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italiano"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Xaponés de 106 teclas"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "Britįnico"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latinoamericano"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Localización"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituano AZERTY (antigo)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituano AZERTY (novo)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituano \"ringleira de nśmeros\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituano \"fonético\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Localización"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedonio"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azerbaianķ (cirķlico)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Holandés"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polaco (disposición qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polaco (disposición qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugués"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Canadiano (Québec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ruso (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Esloveno"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Eslovaco (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Eslovaco (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaianķ (cirķlico)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Tįboa"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclado Thai"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turco (tradicional modelo \"F\")"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turco (moderno modelo \"Q\")"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ucraķno"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Estadounidense (internacional)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"ringleira de nśmeros\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslavo (latķn/cirķlico)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5468,37 +5754,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Puntos de montaxe circulares %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lóxicos\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Nśmero de teléfono"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formatar particións"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5601,51 +5887,43 @@ msgstr "ningśn"
msgid "No mouse"
msgstr "Ningśn rato"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "”MOVA A RODA!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finalizar"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Seguinte ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Anterior"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "æÉ isto correcto?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Expandir įrbore"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Pechar įrbore"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre lista completa e ordenada por grupos"
@@ -5668,6 +5946,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "usar dhcp"
@@ -5695,7 +5977,7 @@ msgstr ""
"Non se detectou ningśn adaptador de rede ethernet no seu sistema.\n"
"Non se pode configurar este tipo de conexión."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Escolla a interface de rede"
@@ -5708,7 +5990,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -5724,7 +6006,7 @@ msgstr ""
"Este nome debe ser completamente cualificado,\n"
"como ``mińamaquina.meulab.mińacomp.es''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Nome de mįquina"
@@ -5752,7 +6034,7 @@ msgstr "æQue tipo de conexión RDSI ten?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5876,43 +6158,43 @@ msgstr "Escolla o porto serie onde estį conectado o seu módem."
msgid "Dialup options"
msgstr "Opcións de chamada"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nome da conexión"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Nśmero de teléfono"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "ID do login"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Baseado nun script"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Baseado nun terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nome de dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Primeiro Servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
@@ -6024,13 +6306,13 @@ msgstr "Escolla o perfil para configurar"
msgid "Use auto detection"
msgstr "Usar detección automįtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
@@ -6141,7 +6423,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6153,7 +6435,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituirį esta configuración."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6163,43 +6445,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notación decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Mįscara de rede"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP automįtico"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Iniciado o arrincar"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6211,40 +6493,40 @@ msgstr ""
"como ``mińamaquina.meulab.mińacomp.es''.\n"
"Pode tamén introducir o enderezo IP da pasarela se usa unha"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Configuración dos proxys"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "O proxy deberķa ser http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "O proxy deberķa ser ftp://..."
@@ -6256,7 +6538,7 @@ msgstr "Configuración de Internet"
msgid "Do you want to try to connect to the Internet now?"
msgstr "æQuere probar agora a conexión į Internet?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Probando a conexión..."
@@ -6284,43 +6566,43 @@ msgstr "Configuración da conexión"
msgid "Please fill or check the field below"
msgstr "Encha ou marque os campos de embaixo"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ da tarxeta"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Memoria da tarxeta (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "E/S da tarxeta"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "E/S_0 da tarxeta"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "E/S_1 da tarxeta"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "O seu nśmero de teléfono persoal"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Nome do provedor (p.ex provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Nśmero de teléfono do provedor"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 do provedor (opcional)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 do provedor (opcional)"
@@ -6329,30 +6611,30 @@ msgstr "Dns 2 do provedor (opcional)"
msgid "Choose your country"
msgstr "Escoller teclado"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Modo de marcación"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipo de conexión: "
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Login da conta (nome de usuario)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Contrasinal da conta"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6388,7 +6670,7 @@ msgstr "Ficheiro de backup incorrecto"
msgid "Error writing to file %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6434,7 +6716,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6463,7 +6745,7 @@ msgstr "Impresora remota"
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remoto"
@@ -6482,7 +6764,7 @@ msgstr "Impresora SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Servidor de impresión"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI do dispositivo de impresión"
@@ -6491,112 +6773,112 @@ msgstr "URI do dispositivo de impresión"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Impresora local"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Impresora remota"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Erro escribindo ó ficheiro %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(módulo %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP do servidor CUPS"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Por omisión)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Selección da conexión da impresora"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "æComo estį conectada a impresora?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6607,17 +6889,21 @@ msgstr ""
"ningunha impresora, xa que serįn detectadas automaticamente.\n"
"No caso de dśbida, seleccione \"Servidor CUPS remoto\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuración da LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6628,7 +6914,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6638,36 +6924,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
#, fuzzy
msgid "The port number should be an integer!"
msgstr "O nśmero de porto debe ser numérico"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP do servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Porto"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6680,37 +6966,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Impresora local"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Impresora local"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6724,53 +7041,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Usar detección automįtica"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Impresora remota"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Probar portos"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impresora SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "detectouse %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Impresora de rede (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Impresora SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6778,43 +7092,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6822,7 +7127,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6830,83 +7135,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Escolla o porto serie onde estį conectado o seu módem."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Configuración"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Instalando o paquete %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Lendo a base de datos de controladores de CUPS..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Opcións da impresora remota lpd"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6916,31 +7176,51 @@ msgstr ""
"que indique o nome do servidor de impresión e o nome da fila\n"
"nese servidor."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nome do servidor"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "detectouse %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Probando a conexión..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Desactivando a rede"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcións de impresora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6955,35 +7235,46 @@ msgstr ""
"da impresora que quere usar, asķ como calquera nome de usuario,\n"
"grupo de traballo ou contrasinal que for necesario."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Servidor de SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP do servidor SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Nome de recurso compartido"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Grupo de traballo"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Usar detección automįtica"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7007,7 +7298,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7016,7 +7307,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7024,11 +7315,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Opcións de impresora NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7042,88 +7333,109 @@ msgstr ""
"que desexa usar, asķ como calquera nome de usuario ou contrasinal\n"
"que for necesario."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Nome da fila de impresión"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcións da impresora de socket"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Para imprimir nunha impresora de socket, ten que fornecer\n"
"o nome do servidor da impresora, e opcionalmente o nśmero do porto."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Servidor de impresión"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI do dispositivo de impresión"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nome da impresora"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Localización"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7138,28 +7450,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "æÉ isto correcto?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "æQué tipo de impresora ten?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7168,18 +7480,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7189,12 +7501,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7202,7 +7514,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7215,7 +7527,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7225,34 +7537,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "æDesexa probar a impresión?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Probar portos"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7260,45 +7572,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Si, imprimir ambas pįxinas de proba"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Impresora"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Ferramentas estįndar"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Imprimindo pįxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Imprimindo pįxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Imprimindo pįxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Imprimindo pįxina(s) de proba..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7314,7 +7626,7 @@ msgstr ""
"\n"
"æFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7324,16 +7636,16 @@ msgstr ""
"Pode que lle leve un pouco ata que a impresora comece.\n"
"æFunciona correctamente?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7342,15 +7654,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7359,7 +7671,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7367,41 +7679,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7411,7 +7723,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7420,47 +7732,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Desactivando a rede"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Rato"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7469,9 +7781,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7482,19 +7794,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7504,51 +7816,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7556,62 +7868,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Sen impresora"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configurar a impresora"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Probando a conexión..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "O monitor non estį configurado"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7619,12 +7931,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Configurando a rede"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7634,34 +7946,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "æQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Alto"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranoico"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7676,12 +7988,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "æQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7695,69 +8007,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Selección da conexión da impresora"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "æQue sistema de impresión desexa usar?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Instalando o paquete %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Opcións da impresora"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Configurar impresora"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "æDesexa configurar unha impresora?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7768,7 +8080,7 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7778,141 +8090,137 @@ msgstr ""
"Estas son as filas de impresión.\n"
"Pode engadir unha nova ou cambiar as que xa existen."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Configurar a rede"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Saķr"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "æDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuración de Internet"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "æDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Compartición da conexión į Internet"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Conexión da impresora"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Imprimindo pįxina(s) de proba..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "æDesexa probar a configuración?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Impresora remota"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Impresora local"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "æDesexa reiniciar a rede?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Lendo a base de datos de controladores de CUPS..."
@@ -7964,8 +8272,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "O proxy deberķa ser ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "O proxy deberķa ser http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8016,42 +8324,6 @@ msgstr "mkraid fallou (æpode que non estean as raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particións dabondo para o nivel RAID %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Este nivel hai que usalo con coidado. Fai que o seu sistema sexa mįis\n"
-"sinxelo de utilizar, pero é moi sensible: non debe usarse nunha mįquina\n"
-"conectada a outras ou į Internet. Non hai contrasinais de acceso."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
-"A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
-"que acepta conexións de mśltiples clientes."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuración da LAN"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opcións"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8350,7 +8622,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8473,7 +8745,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Centro de control"
@@ -8573,21 +8845,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Entre de novo en %s para activar os cambios"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8595,176 +8867,176 @@ msgstr ""
"Non se pode ler a tįboa de particións, estį demasiado deteriorada :-(\n"
"Probarase a ir pońendo en branco as particións erróneas"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Configuración de Internet"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Bases de datos"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Bases de datos"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "Servidor NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "Servidor NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Engadir usuario"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Axuda"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Non conectado"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Borrar"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Engadir usuario"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Configurando..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "reconfigurar"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Insira un disquete na unidade %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ningunha disqueteira dispońible"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Erro"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Configuración trala instalación"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8779,23 +9051,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Configuración do estilo de arrinque"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Creando un disquete de auto-instalación"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8803,40 +9075,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "”Noraboa!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Instalar"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Engadir usuario"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Formatando o ficheiro loopback %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8844,7 +9129,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8852,34 +9137,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Probar portos"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Ficheiro de backup incorrecto"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8887,736 +9236,799 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo o ficheiro %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Prema nunha partición"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Prema nunha partición"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Escolla os paquetes que desexa instalar."
+msgid "Please check if you are using a DVDR device"
+msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Prema nunha partición"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Seleccione un ficheiro"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Escolla os paquetes que desexa instalar."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Escolla os paquetes que desexa instalar."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Opcións do módulo:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Dispositivo do rato: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcións"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Escolla o porto serie onde estį conectado o seu módem."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Conexión LAN"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Selección da conexión da impresora"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Texto"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Probe o seu rato"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Escolla os paquetes que desexa instalar."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9627,7 +10039,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9648,7 +10060,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9657,7 +10069,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9681,7 +10093,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9698,21 +10110,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9726,17 +10138,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9753,7 +10165,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9793,7 +10205,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9804,7 +10216,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9817,7 +10229,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9856,95 +10268,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Fallou a instalación do %s. Ocorreu o erro seguinte:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas de consola"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Centro de control"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "obrigatorio"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Rato"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Impresora remota"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Nome de recurso compartido"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Axudante da configuración de rede"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Autenticación"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Agarde, por favor"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9956,324 +10395,324 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Saķr da instalación"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Porto"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Saķr da instalación"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Pode escoller outras linguas que estarįn dispońibles trala instalación"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Configuración de rede (%d adaptadores)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Perfil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Borrar perfil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Perfil para borrar:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Novo perfil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Nome de mįquina: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Acceso į Internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipo:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Pasarela:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interface:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Estado:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Configurar o acceso į Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Controlador"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interface"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protocolo"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Estado"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Configurar a rede de įrea local..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Axudante..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Por favor, agarde... Aplicando a configuración"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Conectar..."
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Non conectado"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Conectar..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
#, fuzzy
msgid "Disconnect..."
msgstr "Conectar..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adaptador %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protocolo de arrinque"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Iniciado o arrincar"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Activar"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Activar"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Configuración da conexión į Internet"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Configuración da conexión į Internet"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tipo de conexión: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parįmetros"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Pasarela"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Tarxeta Ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "uso: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Nome do módulo"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Tamańo"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "creación do disquete de arrinque"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "defecto"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Erro do DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "versión do nścleo"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Xeral"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Įrea de experto"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "argumentos opcionais para o mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Engadir un módulo"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forzar"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "se for necesario"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "omitir os módulos scsi"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "omitir os módulos raid"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Quitar un módulo"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Saķda"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Crear o disco"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10281,104 +10720,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s non atopado"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "feito"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Formatar disquete"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Preparando a instalación"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "restrinxir"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10387,122 +10826,127 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Formatar particións"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Desinstalando os RPMs"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Punto de montaxe"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Elixa as particións que desexa formatar"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Office"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Abortar"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Impresora"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Instalar sistema"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Impresora remota"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
#, fuzzy
msgid "Initials tests"
msgstr "Mensaxe inicial"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "”Non hai ningśn adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "”Non hai ningśn adaptador de rede no seu sistema!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Saķr da instalación"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Compartición da conexión į Internet"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "A compartición da conexión į Internet estį activada"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10514,31 +10958,31 @@ msgstr ""
"\n"
"æQue desexa facer?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "desactivar"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "reconfigurar"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Desactivando os servidores..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "A compartición da conexión į Internet estį agora desactivada."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "A compartición da conexión į Internet estį desactivada"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10550,19 +10994,19 @@ msgstr ""
"\n"
"æQue desexa facer?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "activar"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Activando os servidores..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "A compartición da conexión į Internet estį agora activada."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10578,21 +11022,21 @@ msgstr ""
"Nota: necesita un adaptador de rede dedicado para configurar unha rede de "
"įrea local (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (usando o módulo %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interface %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "”Non hai ningśn adaptador de rede no seu sistema!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10600,11 +11044,11 @@ msgstr ""
"Non se detectou ningśn adaptador de rede ethernet no seu sistema. Execute a "
"ferramenta de configuración de hardware."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Interface de rede"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10619,19 +11063,19 @@ msgstr ""
"\n"
"Vaise configurar a rede de įrea local usando ese adaptador."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Escolla o adaptador de rede que vai estar conectado į rede de įrea local."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "O monitor non estį configurado"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10641,17 +11085,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuración do estilo de arrinque"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuración de Internet"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10662,7 +11106,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10674,35 +11118,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP do servidor CUPS"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"”Atopouse un conflicto potencial de enderezos da LAN na configuración actual "
"de %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "”Detectouse unha configuración de firewall!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10710,21 +11154,21 @@ msgstr ""
"”Atención! Detectouse unha configuración de firewall existente. Pode que "
"teńa que facer algśn arranxo manual trala instalación."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Configurando..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Configurando os scripts, instalando o software, iniciando os servidores..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problemas instalando o paquete %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10734,7 +11178,7 @@ msgstr ""
"Agora pode compartir a conexión į Internet con outros ordenadores da rede de "
"įrea local, usando a configuración automįtica de rede (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -10743,23 +11187,23 @@ msgstr ""
"\n"
"æQue desexa facer?"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
"A configuración da compartición da conexión į Internet xa foi feita.\n"
"Actualmente estį activada."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "A compartición da conexión į Internet estį activada"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10769,20 +11213,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro de control"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Elixa a ferramenta que queira usar"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10791,108 +11228,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadiano (Québec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Francia"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Islandés"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "serie"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Houbo un erro ó instalar os paquetes:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10916,11 +11357,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "æQuere que a tecla de Borrar devolva Suprimir na consola?"
@@ -10945,7 +11386,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -11058,148 +11499,149 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Nome de dominio"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "Servidor NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Bases de datos"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "Servidor NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "Servidor NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "dispositivo"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Servidor de impresión"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "interesante"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "Formatando"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Configuración"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Tente de novo"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Gardar como..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "non se atopou ningśn serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "æEmular o terceiro botón?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Detectando os dispositivos..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Probar portos"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Seleccione unha tarxeta grįfica"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Dispositivo de arrinque"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11207,7 +11649,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11227,17 +11669,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "lendo a configuración"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "lendo a configuración"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11245,7 +11687,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11437,56 +11879,60 @@ msgstr "Adaptador %s: %s"
msgid "Can't open %s for writing: %s\n"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "lendo a configuración"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Por favor, agarde, preparando a instalación"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -11536,6 +11982,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Ferramentas de audio: reproductores de mp3 ou midi, mesturadores, etc"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libros e howtos sobre Linux e o software libre"
@@ -11627,10 +12077,6 @@ msgid "Office Workstation"
msgstr "Estación de traballo de oficina"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -11696,6 +12142,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Acceso į Internet"
@@ -11728,6 +12178,105 @@ msgstr "Multimedia - Gravación de CD"
msgid "Scientific Workstation"
msgstr "Estación de traballo cientķfica"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Este nivel hai que usalo con coidado. Fai que o seu sistema sexa mįis\n"
+#~ "sinxelo de utilizar, pero é moi sensible: non debe usarse nunha mįquina\n"
+#~ "conectada a outras ou į Internet. Non hai contrasinais de acceso."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Con este nivel de seguridade, é posible usar este sistema coma servidor.\n"
+#~ "A seguridade é agora alta dabondo para usar o sistema coma un servidor\n"
+#~ "que acepta conexións de mśltiples clientes."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opcións"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Establecendo o nivel de seguridade"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Escolla a disposición do seu teclado."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Probe o seu rato"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Escolla os paquetes que desexa instalar."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "O proxy deberķa ser ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Escolla os paquetes que desexa instalar."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows(FAT32)"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tįboa"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Servidor NIS"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Impresora remota"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Instalando o paquete %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Instalando o paquete %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Instalando o paquete %s"
+
+#, fuzzy
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Lendo a base de datos de controladores de CUPS..."
+
+#~ msgid "Control Center"
+#~ msgstr "Centro de control"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Elixa a ferramenta que queira usar"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "non se atopou ningśn serial_usb\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Escolla as opcións para o servidor"
@@ -11792,9 +12341,6 @@ msgstr "Estación de traballo cientķfica"
#~ msgid "Setting security level"
#~ msgstr "Establecendo o nivel de seguridade"
-#~ msgid "Graphics card"
-#~ msgstr "Tarxeta grįfica"
-
#~ msgid "Select a graphics card"
#~ msgstr "Seleccione unha tarxeta grįfica"
@@ -11875,6 +12421,3 @@ msgstr "Estación de traballo cientķfica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Porcentaxe de paquetes a instalar"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Escola o nivel de seguridade"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 655bd0053..00979df9e 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -59,11 +59,11 @@ msgstr "Odaberite X poslu¾itelj"
msgid "X server"
msgstr "X poslu¾itelj"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Vi¹e-zaslonska postava"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,44 +71,44 @@ msgstr ""
"Va¹ sustav podr¾ava postavu sa vi¹e zaslona.\n"
"©to ¾elite napraviti?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Odaberite količinu memorije na grafičkoj kartici"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree postavke"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Koju konfiguraciju XFree-a ¾elite imati?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Podesi sve zaslone nezavisno"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama pro¹irenje"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Va¹a video kartica mo¾e imati 3D ubrzanje samo sa XFree %s.\n"
"Va¹a kartica je podr¾ana od XFree %s koji mo¾da ima bolju podr¹ku u 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Va¹a kartica mo¾e imati 3D hardware-sku akceleraciju sa XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"RAČUNALO.Va¹a kartica je podr¾ana od XFree %s koja mo¾e imati bolju podr¹ku "
"u 2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,11 +149,57 @@ msgstr ""
"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODR©KA I MO®E ZAMRZNUTI VA©E "
"RAČUNALO."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljački program)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Prilagošeno"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Grafička kartica"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Rezolucija"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "U redu"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Zavr¹i"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -166,32 +212,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Odaberite monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Prilagošeno"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generički"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Vrati"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -215,11 +257,11 @@ msgstr ""
"veęi od moguęnosti va¹eg monitora jer mo¾ete o¹tetiti va¹ monitor.\n"
" Ukoliko ste u nedoumici, izaberite konzervativne postavke."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horizontalna vrijednost osvje¾avanja"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikalna vrijednost osvje¾avanja"
@@ -243,57 +285,42 @@ msgstr "16 milijuna boja (24 bita)"
msgid "4 billion colors (32 bits)"
msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Rezolucije"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Rezolucija"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Odaberite rezoluciju i color depth"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafička kartica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Odustani"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "U redu"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Da li ¾elite isku¹ati postavu ?"
@@ -302,71 +329,71 @@ msgstr "Da li ¾elite isku¹ati postavu ?"
msgid "Test of the configuration"
msgstr "Isku¹aj postavu"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tipkovnice: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Vrsta mi¹a: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Urešaj mi¹a: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontalna Sinkronizacija Monitora: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikalno Osvje¾enje Monitora: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Grafička kartica: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boje: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 poslu¾itelj: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljački program: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -375,167 +402,184 @@ msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li ¾elite da se X automatski pokreęe?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Kakav tip ISDN veze koristite ?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Gdje ¾elite instalirati bootloader?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Podizanje sa DOS/Windows-a (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Boot urešaj"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Zbijeno"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Ograničene opcije na komandnoj liniji"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp na svakom podizanju"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa (pronašeno %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Omoguęi vi¹e obrazaca"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Upi¹ite veličinu RAM u Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Postavka ``Ograničene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Molim poku¹ajte ponovo"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Init poruka"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Vrijeme čekanja podizanja kernela"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Omoguęi CD podizanje?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Omoguęi podizanje?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Uobičajeni OS?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -549,7 +593,7 @@ msgstr ""
"\n"
"Sa kojeg diska ¾elite podizati?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -557,147 +601,148 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Mo¾ete dodati jo¹ koji ili urediti postojeęi."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa ¾elite dodati"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Čitaj-pi¹i"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Uobičajeno"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-veličina"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NemaVidea"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ukloni zapis"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ova oznaka veę postoji"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Prona¹ao sam %s %s mešusklopova"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Da li imate jo¹ koji?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s mešusklopova?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Poka¾i 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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljački program %s za karticu %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -706,7 +751,7 @@ msgstr ""
"Sada mo¾ete unijeti opcije za modul %s.\n"
"Primjetite da svaka adresa treba biti une¹ena sa prefiksom 0x kao '0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -717,17 +762,17 @@ msgstr ""
"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Postavke modula:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljački program ¾elite isprobati?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -746,15 +791,15 @@ msgstr ""
"računalo za informacije koje treba? Ponekad, isprobavanje mo¾e zamrznuti\n"
"va¹e računlo, ali ne bi trebalo izazvati nikakvu ¹tetu."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -763,54 +808,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Da li ¾elite poku¹ati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(veę postoji %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime mo¾e sadr¾avati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Ovaj korisnik veę postoji"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Ovaj korisnik veę postoji"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -819,32 +864,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -852,54 +897,54 @@ msgstr ""
"Mogu podesiti da se va¹e računalo automatski prijavi kao jedan korisnik.\n"
"Da li ¾elite koristiti tu pogodnost?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji ¾elite pokrenuti:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji ¾elite koristiti."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 druge jezike koji ęe biti dostupni nakon instalacije"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Mo¾ete izvesti koristeęi NFS ili Sambu. Koji od njih ¾elite"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nu¾ni paket %s nedostaje"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -915,11 +960,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" ęe omoguęiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -927,31 +972,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Mo¾ete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Dobrodo¹li Crackeri"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Vi¹i"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -962,7 +1007,7 @@ msgstr ""
"ali vrlo osjetljiv: ne smije biti kori¹ten za računala koja su povezana u "
"mre¾i ili na Internet. Naime, nema lozinke za pristup."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -970,7 +1015,7 @@ msgstr ""
"Lozinke su sada uključene mešutim jo¹ ne preporučam kori¹tenje ovog računala "
"u mre¾nom okoli¹u."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -978,7 +1023,7 @@ msgstr ""
"Ovo je standardna sigurnosna razina preporučena za računala koja ęe biti "
"kori¹tena za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -986,7 +1031,7 @@ msgstr ""
"Veę postoje neka ograničenja i vi¹e automatskih provjera se pokreęe svake "
"noęi."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1001,7 +1046,7 @@ msgstr ""
"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je va¹e računalo "
"samo klijent na Internetu, bolje da izaberete ni¾u razinu."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1009,31 +1054,48 @@ msgstr ""
"Temeljeno na prija¹njoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne značajke su na maksimumu."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opcije"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Izaberite sigurnosni nivo"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za poslu¾itelje"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja ¹titi od prekoračenja spremnika i format string napada."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1056,109 +1118,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Radna povr¹ina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "nema jo¹ implementirane pomoęi.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Novi stil kategoriziranja Monitora"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "NoviStil Monitora"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Tradicionalni Monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Tradicionalni Gtk+ Monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Pokreni Auroru pri podizanju"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub mod"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Instaliraj sustav"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Gre¹ka"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Kopiram %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "NemaVidea"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Odaberite razred instalacije"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1167,42 +1325,69 @@ msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje čarobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Podesi"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Spremi odabir paketa"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistemski mod"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ne, ne ¾elim automatsko prijavljivanje"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, ¾elim automatsko prijavljivanje sa ovim korisnikom i okru¾jem"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1246,61 +1431,112 @@ msgstr "Ne mogu napraviti screenshotove prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi ęe biti raspolo¾ivi poslije instalaciju u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Kosta Rika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Če¹ka Republika"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Njemačka"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grčka"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norve¹ka"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "©vedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italija"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Sjedinjene Američke Dr¾ave"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Nepoznati model"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "novi"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Poslu¾itelj"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Točka montiranja"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Upi¹ite brzinu cd snimača"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Poslu¾itelj"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Mjesto montiranja:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opcije: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Prvo napravite backup podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Pročitajte pa¾ljivo!"
@@ -1314,15 +1550,6 @@ msgstr ""
"sektora) na\n"
"početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Gre¹ka"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Čarobnjak"
@@ -1348,7 +1575,7 @@ msgid "Please click on a partition"
msgstr "Molim kliknite na particiju"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detalji"
@@ -1376,13 +1603,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Ostali"
@@ -1390,12 +1617,12 @@ msgstr "Ostali"
msgid "Filesystem types:"
msgstr "Vrste datotečnih sustava:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Napravi"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Vrsta"
@@ -1405,7 +1632,7 @@ msgstr "Vrsta"
msgid "Use ``%s'' instead"
msgstr "Umjesto toga koristi ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Obri¹i"
@@ -1413,7 +1640,7 @@ msgstr "Obri¹i"
msgid "Use ``Unmount'' first"
msgstr "Prvo pritisnite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1421,72 +1648,72 @@ msgstr ""
"Nakon mijenjanja tipa particije %s svi podaci na ovoj particiji biti ęe "
"obrisani"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Izaberite particiju"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Izaberite drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Normalno > Ekspert"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Vrati"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Da zavr¹im bez spremanja"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Da zavr¹im bez zapisivanje particijske tablice?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Da li ¾elite spremiti /etc/fstab promjene?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Raspodijeli automatski"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Očisti sve"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Vi¹e"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Hard disk informacije"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Sve primarne particije su iskori¹tene"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Ne mogu dodati niti jednu dodatnu particiju"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1495,31 +1722,31 @@ msgstr ""
"bi\n"
"mogli stvoriti jednu extended particiju."
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Spremi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Vrati particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Spasi particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ponovno učitaj particijsku tabelu"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Automatsko montiranje prenosivog medija"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Odaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1527,11 +1754,11 @@ msgstr ""
"Backup particijske tablice nema istu veličinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1539,129 +1766,112 @@ msgstr ""
"Umetnite disketu u pogon\n"
"Svi podaci na disketi biti ęe izbrisani"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Poku¹avam spasiti particijsku tablicu"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Točka montiranja"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opcije"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Promijeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Premjesti"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Dodaj RAID-u"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Dodaj LVM-u"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Ukloni sa RAID-a"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Ukloni sa LVM-a"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Promijeni RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Stvori novu particiju"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Početni sektor:"
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Veličina u MB:"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Vrsta datotečnog sustava:"
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Mjesto montiranja:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Postavke:"
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Mijenjam tip particije"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sustav ¾elite?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Mijenjam iz ext2 u ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje ¾elite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje ¾elite montirati urešaj %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1670,133 +1880,138 @@ msgstr ""
"loop back.\n"
"Uklonite loopback prvo"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Gdje ¾elite montirati urešaj %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice fat datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ova particija nije promjenjiva u veličini"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Preporučam da prvo backupirate sve podatke s ove particije"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon mijenjanja veličine particije %s svi podaci na ovoj particiji biti ęe "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Odaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk se ¾elite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Na koji se sektor ¾elite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Premje¹tam"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Premje¹tam particiju..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeęi RAID na koji ¾elite dodati "
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeęi LVM na koji ¾elite dodati "
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM ime?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne mo¾e koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Ime loopback datoteke:"
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Dajte ime datoteke"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Datoteku koristi neki drugi loopback. Molim izaberite neku drugu datoteku"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Datoteka veę postoji. Da li da nju upotrijebim?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Razno"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "urešaj"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "razina"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "chunk veličina"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Kakav tip particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Paket %s treba instalirati. Da li ga ¾elite instalirati?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1808,7 +2023,7 @@ msgstr ""
"Imate dvije opcije ili ęete koristiti LILO pa neęe raditi ili neęete\n"
"koristiti LILO pa vam /boot neęe ni trebati."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1820,7 +2035,7 @@ msgstr ""
"Ukoliko planirate koristiti LILO boot menad¾er, budite pa¾ljivi da dodate/"
"boot particiju"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1830,45 +2045,45 @@ msgstr ""
"Nema bootloader-a koji je u moguęnosti to podr¾ati bez /boot particije.\n"
"Zato budite pa¾ljivi da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Particijska tablica pogona %s ęe sada biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Trebate ponovo pokrenuti sustav prije nego promjene postanu aktivne"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s svi podaci na ovoj particiji biti ęe obrisani"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Sakrij datoteku"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Premijesti datoteku na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1877,83 +2092,83 @@ msgstr ""
"Direktorij %s veę sadr¾i neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Premije¹team datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Urešaj:"
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS urešaj slovo: %s (nagašanje)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Vrsta: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nije formatiran\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Montiran\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1962,7 +2177,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1970,27 +2185,27 @@ msgstr ""
"Podrazumijevana boot particija\n"
" (za MS-DOS boot, ne za LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Razina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Chunk veličina %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Ime loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2002,7 +2217,7 @@ msgstr ""
"ustvari particija upravljačkog programa, vjerojatno\n"
"biste ju trebali ostaviti.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2014,64 +2229,59 @@ msgstr ""
"particija je za\n"
"dvostruko-podizanje (dual-boot) va¹eg sustava.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Vrsta particijske tabele: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "na sabirnici %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opcije: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Ključ enkriptiranja datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Izaberite va¹ ključ za enkriptiranje datotečnog sustava"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Upisani enkripcijski ključ je prejednostavan (mora biti dug najmanje %d "
"znakova)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Enkripcijski ključevi se ne sla¾u"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Enkripcijski ključ"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Enkripcijski ključ (ponovno)"
@@ -2122,23 +2332,23 @@ msgstr "NIS domena"
msgid "Search servers"
msgstr "Poslu¾itelji za pretra¾ivanje"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspje¹no"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gre¹ka kod demontiranja %s: %s"
@@ -2155,33 +2365,33 @@ msgstr "sa /usr"
msgid "server"
msgstr "poslu¾itelj"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS se ne mo¾e koristiti na particijama koje su manje od 16 MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne mo¾e koristiti na particijama koje su manje od 32 MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Mjesto montiranja mora početi sa /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Veę postoji particija sa mjestom montiranja %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne mo¾ete koristiti LVM logički prostor za mjesto montiranja %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij bi trebao ostati unutar root datotečnog sustava"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2190,26 +2400,26 @@ msgstr ""
"Treba vam istinski datotečni sustav (ex2, reiserfs) za ovo mjesto "
"montiranja\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ne mo¾ete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno slobodnog prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Nema ni¹ta za uraditi"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gre¹ka prilikom otvaranja %s za pisanje: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2218,259 +2428,263 @@ msgstr ""
"bih mogao instalirati datotečni sustav. Provjerite da li je sa va¹im "
"hardverom sve u redu."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Nemate niti jednu particiju!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Koristi auto detekciju"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generički"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memorija kartice (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "Postavka optereęenja"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Promijeni tip"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Zavr¹i"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoę"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Pomoę"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Pomoę/_O programu"
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Mi¹"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Odustani"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Mi¹"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Opis"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Provjera autentičnosti"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Odaberite datoteku"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gateway urešaj"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 gumba"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Zavr¹i"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoę"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoę"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoę/_O programu"
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Auto. ispitaj"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Otkrivanje hard diskova"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Poka¾i info o hardveru"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Podesi mi¹"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Prika¾i informacije"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Podesi mi¹"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "detektiran na portu %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Molim pričekajte"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam pisač \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto detekciju"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generički"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Auto. ispitaj"
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promijeni tip"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Postavka optereęenja"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4419,7 +4633,7 @@ msgstr ""
"Pritisnite na \"Odustani\" za prekidanje ove operacije bez gubljenja bilo\n"
"kakvih postojeęih podataka i particija na ovom hard disku."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4430,7 +4644,7 @@ msgstr ""
"s nedostaje), ovo obično znači da va¹a disketa za dizanje sustava nije "
"usklašena sainstalacijskim medijem (napravite noviju boot disketu)"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Morate takošer formatirati %s"
@@ -4461,20 +4675,20 @@ msgstr ""
"\n"
"Da li zaista ¾elite instalirati te poslu¾itelje?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4482,7 +4696,7 @@ msgstr ""
"Za kori¹tenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Gre¹ka prilikom čitanja datoteke %s"
@@ -4520,7 +4734,7 @@ msgstr ""
"\n"
"Da ipak nastavim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
@@ -4699,12 +4913,12 @@ msgstr ""
"Dogodila se gre¹ka, ali neznam kako s njom lijepo rukovati.\n"
"Nastavite dalje na vlastiti rizik."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dupliciraj mjesto monitranja %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4716,12 +4930,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računalu koristeęi \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Dobrodo¹li u %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -4731,7 +4945,7 @@ msgstr "Disketni pogon nije dostupan"
msgid "Entering step `%s'\n"
msgstr "Pokreęem korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4742,79 +4956,79 @@ msgstr ""
"instalacije Mandrake Linux-a. Ukoliko se to desi, mo¾ete probati tekstualnu\n"
"instalaciju. Za to, pritisnite `F1' kada podi¾ete CDROM, i unesite `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Instalacijski razred"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Molim izaberite jedan od slijedeęih razreda instalacije:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Lo¹ paket"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Inačica: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Ne mo¾ete označiti ovaj paket buduęi da nema dovoljno mjesta gdje ga se mo¾e "
"instalirati"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Slijedeęi paketi ęe biti instalirani"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Slijedeęi paketi ęe biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Ne mo¾ete označiti/odznačiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Buduęi da je ovo obvezni paket ne mo¾ete ga odznačiti"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Ne mo¾ete odznačiti ovaj paket buduęi da je veę instaliran"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4822,74 +5036,74 @@ msgstr ""
"Ovaj paket treba nadograditi\n"
"Da li ste sigurni da ga ¾elite odznačiti?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne mo¾ete odznačiti ovaj paket buduęi da ga treba nadograditi"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Prika¾i automatski odabrane pakete"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instaliraj"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Učitaj/Spremi na disketu"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Dograšujem izbor paketa"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje ¾elite instalirati"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Preostalo vrijeme"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Molimo pričekajte, Pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4905,17 +5119,17 @@ msgstr ""
"Ukoliko ga nemate, pritisnite Odustani kako bi izbjegli instalaciju sa ovog "
"Cd-Rom-a."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Javila se gre¹ka prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Pojavila se gre¹ka kod instalacije paketa:"
@@ -5230,104 +5444,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tipkovnica"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Molim, izaberite raspored tipkovnice."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je cijeli popis raspolo¾ivih tipkovnica"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Koji instalacijski razred ¾elite?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instaliraj/Nadogradi"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili nadogradnja?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Dogradnja"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Samo dogradi pakete"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Molim izaberite va¹u vrstu mi¹a."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Port mi¹a"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Izaberite na kojem serijskom portu je mi¹ priključen."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulacija gumbova"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulacija 2 gumba"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulacija 3 gumba"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Pode¹avam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Pode¹avam IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Tra¾im particije kako bi prona¹ao mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Odaberite mjesta montiranja"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5345,7 +5559,7 @@ msgstr ""
"\n"
"Da li se sla¾ete da izgubite sve particije?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5353,7 +5567,7 @@ msgstr ""
"DiskDrake nije uspio pročitati va¹u particijsku tablice.\n"
"Nastavite o vlastitoj odgovornosti."
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5362,71 +5576,71 @@ msgstr ""
"podizanje va¹eg sustava, trebati ęete napraviti bootstrap particiju u "
"DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Niti jedna root particija nije pronašena da se obavi dogradnja"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Korijenska particija"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Koja je korijenska particija (/) va¹eg sustava?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Morate ponovo pokrenuti sustav kako bi se aktivirala promjena particijske "
"tablice"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje ¾elite formatirati"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Provjeri za lo¹e blokove?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Stvaram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nema dovoljno swapa za zavr¹etak instalacije, molim dodajte jo¹"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Tra¾im dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Tra¾im dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Tra¾im pakete koje mogu nadograditi"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Ne mo¾ete odznačiti ovaj paket buduęi da je veę instaliran"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Tra¾im pakete koje mogu nadograditi"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5434,7 +5648,7 @@ msgid ""
msgstr ""
"Va¹ sustav nema dovoljno prostora za instalaciju ili dogradnju (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5442,35 +5656,35 @@ msgstr ""
"Molimo izaberite učitivanje ili spremanje izbora paketa na disketu.\n"
"Format je isto kao auto_install napravljene diskete."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Učitaj sa diskete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Učitavam sa diskete"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Odabir paketa"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Umetnite disketu koja sadr¾ava izbor paketa"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Spremi na disketu"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veęa nego raspolo¾iv prostor"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5478,15 +5692,15 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako ¾elite"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
@@ -5506,11 +5720,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5519,21 +5733,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5604,7 +5818,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5624,181 +5838,190 @@ msgstr ""
"\n"
"Da li ¾elite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web site za dobivanje popisa raspolo¾ivih mirrora"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg ¾elite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Koja je va¹a vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Va¹ hardverski sat namje¹ten je na GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeęi NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP Poslu¾itelj"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS poslu¾itelj"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Nema pisača"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije za pode¹avanje va¹e zvučne "
"kartice"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije pronašena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Mi¹"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windowse (FAT32)"
+msgid "Windows Domain"
+msgstr "Dobavi Windows fontove"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Pode¹avanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova lozinka je prejednostavna (lozinka mora sadr¾avati barem %d znakova)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentičnosti"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP Poslu¾itelj"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS Poslu¾itelj"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "LDAP Autentifikacija"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Dobavi Windows fontove"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP Poslu¾itelj"
+msgid "Authentication Windows Domain"
+msgstr "LDAP Autentifikacija"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Ime domene"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5829,19 +6052,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:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5868,7 +6091,7 @@ msgstr ""
"Da li ¾elite napraviti proizvoljnu boot disketu za va¹ sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5882,28 +6105,28 @@ msgstr ""
"stvaranje boot diskete na disketi kapaciteta 1.44 Mb vjerojatno\n"
"neęe uspjeti, jer XFS treba vrlo velik pokretački program)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "®alim, mešutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5915,11 +6138,11 @@ msgstr ""
"Instalacija ęe nastaviti, ali ęete morati\n"
" koristiti BootX da podignete va¹e računalo"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Da li ¾elite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5927,16 +6150,16 @@ msgstr ""
"Gre¹ka prilikom instalacije aboot-a, \n"
"probati nasilno instalirati iako to mo¾e uni¹titi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeęa gre¹ska:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5953,17 +6176,17 @@ msgstr ""
" Tada napi¹ite: shut-down\n"
"Pri slijedeęem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5973,7 +6196,7 @@ msgstr ""
"\n"
"®elite li zaista zavr¹iti?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6006,16 +6229,16 @@ msgstr ""
"Informacije o konfiguriranju va¹eg sustava je raspolo¾ivo u poslije\n"
"instalacijskom poglavlju od Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6029,15 +6252,15 @@ msgstr ""
"\n"
"Mo¾ete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ponovno prika¾i"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -6064,24 +6287,35 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Prija¹nje"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Slijedeęe"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Krivi izbor, poku¹ajte ponovo\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Va¹ izbor? (uobičajeno %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6090,35 +6324,35 @@ msgstr ""
"Unosi koje trebate popuniti:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Va¹ izbor? (0/1, uobičajeno '%s') "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Gumb `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Da li ¾elite kliknuti na ovaj gumb? "
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Va¹ izbor? (uobičajeno `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari za odabir iz (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6128,7 +6362,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Va¹ izbor? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6137,327 +6371,379 @@ msgstr ""
"=> Obavijest, naziv promijenjen:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Ponovno Po¹alji"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Če¹ka (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "©panjolska"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norve¹ka"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "©vedska"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "UK tipkovnica"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "US tipkovnica"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaęa ma¹ina)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbejd¾anska (latinica)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "omoguęi"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonska"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "©vicarska (Njemački raspored)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "©vicarska (francuski raspored)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Če¹ka (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipaka)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (USA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norve¹ka)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (©vedska)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" raspored)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latin\" raspored)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Mašarska"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Izraelska (fonetska)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Talijanska"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japanska (106 tipaka)"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Korejska tipkovnica"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latino američka"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvija"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanska AZERTY (nova)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanska \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvija"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Srpska (čirilica)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Nizozemska"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty raspored)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz raspored)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadska (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Rumunjska (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Rumunjska (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovenska"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Srpska (čirilica)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Tajlandska tipkovnica"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tajik tipkovnica"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderna \"Q\" model)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US keyboard (internacionalna)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vijetnamska \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinična)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Obe Shift tipke istodobno"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipke istodobno"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istodobno"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipku istodobno"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Menu\" tipka"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6466,37 +6752,37 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kru¾no montiranje %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logički volumen prvo\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefonski broj"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formatiraj particije"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"PCMCIA podr¹ka vi¹e ne postoji za 2.2 kernele. Molimo koristite 2.4 kernel."
@@ -6600,51 +6886,43 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema mi¹a"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Molimo istestirajte mi¹a."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Za aktiviranje mi¹a,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VA© KOTAČIĘ!"
-#: ../../my_gtk.pm_.c:688
-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-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Zavr¹i"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Slijedeęe ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Prija¹nje"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Pro¹iri stablo"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Sa¾mi stablo"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Prebaci izmešu ravno i grupno sortiranog"
@@ -6667,6 +6945,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "koristi dhcp"
@@ -6694,7 +6976,7 @@ msgstr ""
"Nije pronašen niti jedan mre¾ni adapter na va¹em sustavu.\n"
"Ne mogu postaviti ovu vrstu veze."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Odaberite mre¾ni mešusklop"
@@ -6708,7 +6990,7 @@ msgstr ""
msgid "no network card found"
msgstr "ne mogu pronaęi niti jednu mre¾nu karticu"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Pode¹avam mre¾u"
@@ -6724,7 +7006,7 @@ msgstr ""
"Va¹e ime računala bi trebalo biti potpuno-kvalificirano ime računala,\n"
"kao ¹to je ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Ime računala"
@@ -6752,7 +7034,7 @@ msgstr "Kakav tip ISDN veze koristite ?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6880,43 +7162,43 @@ msgstr "Izaberite serijski port na kojemu se nalazi modem."
msgid "Dialup options"
msgstr "Podesi dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Ime veze"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefonski broj"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Prijavno ime"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Temeljem skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-zasnovano"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Ime domene"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Prvi DNS poslu¾itelj (opciono)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS poslu¾itelj (opciono)"
@@ -7029,13 +7311,13 @@ msgstr "Izaberite profil za konfiguriranje"
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Otkrivanje urešaja..."
@@ -7152,7 +7434,7 @@ msgstr ""
"ili mcca. Ako va¹a veza ne radi, mo¾da ęete morati ponovno pokrenuti\n"
"konfiguraciju"
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7164,7 +7446,7 @@ msgstr ""
"Jednostavno prihvatite ovaj urešaj konfiguriran.\n"
"Promjena polja ni¾e ęe prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7174,42 +7456,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"točkama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Pode¹avam mre¾ni urešaj %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (upravljački program %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Pokrenuto pri podizanju"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7221,40 +7503,40 @@ msgstr ""
"primjerice mojeracunalo.odjel.domena.hr.\n"
"Takošer unesite IP adresu gateway računala ako gateway postoji"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS poslu¾itelj"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gateway urešaj"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Prati id mre¾ne kartice (korisno za laptope)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
@@ -7266,7 +7548,7 @@ msgstr "Postava Interneta"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li ¾elite poku¹ati spajanje na Internet ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Testiram va¹u vezu..."
@@ -7294,43 +7576,43 @@ msgstr "Postava Veze"
msgid "Please fill or check the field below"
msgstr "Molim ispunite ili provjerite vrijednost doljnjeg polja"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Va¹ osobni telefonski broj"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Ime ISP pru¾atelja (npr. provider.hr)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Telef. broj pru¾atelja"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Pru¾ateljev DNS 1 (opciono)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Pru¾ateljev DNS 2 (opciono)"
@@ -7338,28 +7620,28 @@ msgstr "Pru¾ateljev DNS 2 (opciono)"
msgid "Choose your country"
msgstr "Odaberite va¹u zemlju"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Način biranja"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Brzina"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Vrijeme čekanja veze (u sek)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Korisničko ime"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Korisnička Lozinka"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7395,7 +7677,7 @@ msgstr "Lo¹a backup datoteka"
msgid "Error writing to file %s"
msgstr "Gre¹ka prilikom pisanja u datoteku %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7441,7 +7723,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Ispi¹i, Bez Reda"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7469,7 +7751,7 @@ msgstr "Udaljeni pisač"
msgid "Printer on remote CUPS server"
msgstr "Pisač na udaljenom CUPS poslu¾itelju"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Pisač na udaljenom lpd poslu¾itelju"
@@ -7485,7 +7767,7 @@ msgstr "Pisač na SMB/Windows 95/98/NT poslu¾itelju"
msgid "Printer on NetWare server"
msgstr "Pisač na NetWare poslu¾itelju"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Unesite URI pisača"
@@ -7493,110 +7775,110 @@ msgstr "Unesite URI pisača"
msgid "Pipe job into a command"
msgstr "Proslijedi (pipe) na komandu"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Nepoznati model"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Lokalni pisači"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Udaljeni pisači"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB pisač \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multi-funkcionalan urešaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", multi-funkcionalan urešaj na USBu"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", multi-funkcionalan urešaj na HP JetDirectu"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", multi-funkcionalan urešaj"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", ispis na %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "na LPD poslu¾itelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "na Windows poslu¾itelju \"%s\", dijeli \"%s\""
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "na Novell poslu¾itelju \"%s\", pisač \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", kori¹tenjem komande %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Raw printer (Bez upravljačkog programa)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(na ovom računalu)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS poslu¾itelju \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Uobičajeno)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Odaberite vezu pisača"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Kako je pisač povezan?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7606,15 +7888,19 @@ msgstr ""
"Pisače na udaljenom CUPS poslu¾itelju ne morate konfiguriratiovdje; ti "
"pisači ęe biti automatski pronašeni."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS postavke"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Odredi CUPS poslu¾itelj"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7632,7 +7918,7 @@ msgstr ""
"unesti IP adresuCUPS poslu¾itelja i, opcionalno, broj porta, da bi dobili "
"informacije o pisačuod poslu¾itelja. Inače, ostavite ova polja praznima."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7648,32 +7934,32 @@ msgstr ""
"uredite datoteku /etc/cups/cupsd.conf ručno. Nemojte zaboraviti poslije "
"ponovnopokrenuti CUPS (naredba:\"service cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba izgledati poput 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Broj porta bi trebao biti cjelobrojni broj!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP CUPS poslu¾itelja"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Automatska CUPS konfiguracija"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Dodaj novi pisač"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7696,49 +7982,67 @@ msgstr ""
"pristupsvim dostupnim pokretačkim programima za pisače, njihovim opcijama i "
"vrstamaveza prema pisačima."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Lokalni pisač"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Dobrodo¹li u Čarobnjak za namje¹tanje pisača\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Ovaj čarobnjak ęe vam pomoęi da instalirate pisače spojene na ovo računalo.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-"Priključite svoj pisač(e) u ovo računalo i uključite ga/ih. Stisnite na "
-"\"Dalje\"kada ste spremni, ili na \"Odustani\" ako ne ¾elite sada namje¹tati "
-"pisač(e).\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Primjetite da se neka računala mogu sru¹iti tijekom automatskog "
-"prepoznavanjapisača. Isključite \"Automatski prepoznaj pisače\" da bi "
-"instalirali pisač bezautomatskog prepoznavanja. Koristite \"Mod za stručnjake"
-"\" ili printerdrake kada¾elite namjestiti ispis na udaljenom pisaču ako ga "
-"printerdrake ne prika¾eautomatski."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Automatski prepoznaj pisač"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Lokalni pisač"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7762,57 +8066,50 @@ msgstr ""
"ispisa,...),izaberite \"Pisač\" u \"Hardver\" odjeljku Mandrake kontrolnog "
"centra."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Automatski pronalazak pisača"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake mo¾e prepoznati va¹e lokalne paralelne i USB pisače, "
-"aliprimjetite da na nekim sustavima proces automatskog prepoznavanja "
-"MO®EZAMRZNUTI VA© SUSTAV I O©TETITI DATOTEČNE SUSTAVE! Zato činite to "
-"NAVLASTITI RIZIK!\n"
-"\n"
-"Da li zaista ¾elite automatski prepoznati va¹e pisače?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Koristi auto detekciju"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Ručno pode¹avanje pisača"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Isku¹aj portove"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Pisač na SMB/Windows 95/98/NT poslu¾itelju"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Detektirano %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Pisač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB pisač \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Mre¾ni pisač (TCP/socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Pisač na SMB/Windows 95/98/NT poslu¾itelju"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7824,35 +8121,23 @@ msgstr ""
"odgovara LPT1:, LPT2:, ..., prvi USB pisač: /dev/usb/lp0, drugi USB pisač:/"
"dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Morate unijeti ime urešaja ili datoteke!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"Nije pronašen lokalni pisač!\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Mre¾ni pisači se mogu instalirati samo nakon instalacije. Izaberite\"Hardver"
-"\" i potom \"Pisač\" u Mandrake kontrolnom centru."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Da bi instalirali mre¾ne pisače, stisnite \"Odustani\", prebacite se u"
-"\"Stručnjak\" mod i ponovno stisnite \"Dodaj novi pisač\"."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Lokalni pisač"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7860,7 +8145,7 @@ msgstr ""
"Ovaj pisač je prepoznat, ako to nije onaj kojeg ¾elite pode¹avati, "
"upi¹iteime urešaja/datoteke u liniju za unos."
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7868,7 +8153,7 @@ msgstr ""
"Ovo je popis svih prepoznatih pisača. Izaberite kojeg ¾elite podesitiili "
"upi¹ite ime urešaja/datoteke u liniju za unos"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7879,7 +8164,7 @@ msgstr ""
"va¹ pisač nije ispravno prepoznat ili ako biste radije ručno "
"namje¹talipisač, uključite \"Ručno namje¹tanje\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7891,7 +8176,7 @@ msgstr ""
"prepoznat ili ako biste radije ručno namje¹talipisač, uključite \"Ručno "
"namje¹tanje\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7899,11 +8184,11 @@ msgstr ""
"Izaberite port preko kojeg je va¹ pisač povezan ili upi¹ite ime urešaja/"
"datotekeu liniju za unos."
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Izaberite port na kojem se nalazi pisač."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7911,65 +8196,19 @@ msgstr ""
" (paralelni portovi:/dev/lp0, /dev/lp1, ...,odgovara LPT1:, LPT2:, ..., prvi "
"USB pisač: /dev/usb/lp0, drugi USB pisač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati/upisati pisač/urešaj!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Ručno namje¹tanje"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Da li je va¹ pisač HPov multi-funkcijski urešaj (OfficeJet, PSC, PhotoSmart,"
-"LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Instaliram HPOJ paket"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Provjeravam urešaj i namje¹tam HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Instaliram SANE paket..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Instaliram pakete..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Skeniram na va¹em HP multi-funkcijskom urešaju"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Skeniram na va¹em HP multi-funkcijskom urešaju"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Činim pisač dostupnim CUPSu ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Čitam bazu pisača ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Postavke udaljenog lpd pisača"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7977,27 +8216,47 @@ msgstr ""
"Ukoliko ¾elite koristiti udaljeni lpd pisač, morate unijetiime ispisnog "
"poslu¾itelja te ime pisača na tom poslu¾itelju."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Udaljeno ime računala"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Ime udaljenog pisača"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Nedostaje ime računala udaljenog pisača!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Nedostaje ime udaljenog pisača!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Detektirano %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Pokreęem mre¾u ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "na Windows poslu¾itelju \"%s\", dijeli \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Ispis na pisaču \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Postavke SMB (Windows 9x/NT) pisača"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -8009,35 +8268,46 @@ msgstr ""
"poslu¾itelja, kao iime dijeljenog resursa za pisač kojem ¾elite pristupiti i "
"bilo kojeprimjenjivo korisničko ime, lozinku ili informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB poslu¾itelj"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP SMB poslu¾itelja"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Ime sharea"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Koristi auto detekciju"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Ime poslu¾itelja ili IP poslu¾itelja mora biti naveden!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Ime dijeljenog samba resursa nedostaje!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "SIGURNOSNO UPOZORENJE!"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8080,7 +8350,7 @@ msgstr ""
"uPrinterdrakeu.\n"
"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8093,7 +8363,7 @@ msgstr ""
"Printerdrakeu.\n"
"\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8105,11 +8375,11 @@ msgstr ""
"\n"
"Da li stvarno ¾elite nastaviti namje¹tati ovaj pisač kao ¹to činite sada?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Postavke NetWare pisača"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8121,51 +8391,70 @@ msgstr ""
"ime ispisnog reda za pisač kojim¾elite pristupiti, te neko primjenjivo "
"korisničko ime i lozinku."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Ispisni poslu¾itelj"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Ime reda pisača"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Ime NCP poslu¾itelja nedostaje!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Nedostaje ime NCP reda!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Opcije TCP/Socket pisača"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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 ""
"Za ispis na TCP ili socket pisač, trebate navestiime poslu¾itelja pisača te "
"opciono broj porta. Na HP JetDirect poslu¾iteljimabroj porta je obično 9100, "
"na drugim poslu¾iteljima mo¾e biti drugačije.Pogledajte priručnik va¹eg "
"hardvera."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Ime računala od pisača"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Nedostaje ime računala od pisača!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Ime računala od pisača"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI Urešaja pisača"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8175,11 +8464,11 @@ msgstr ""
"ili Foomatic specifikacijama. Primjetite da nisu svi URI tipovi podr¾ani od "
"svih spoolera."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Ispravan URI mora biti une¹en!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8187,23 +8476,27 @@ msgstr ""
"Svaki pisač treba ime (na primjer \"pisač\").Polja opisa i lokacije ne "
"moraju biti popunjena. To su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Ime pisača"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Čitam bazu pisača ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Pripremam bazu pisača ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Model va¹eg pisača"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8228,24 +8521,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Model je točan"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Ručno izaberi model"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Izabir modela pisača"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Kakav model pisača imate?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8259,7 +8552,7 @@ msgstr ""
"pisačaispravno. Pronašite ispravan model upopisu kada pokazivač pokazuje "
"nakrivi model ili na \"Raw pisač\"."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8267,11 +8560,11 @@ msgstr ""
"Ako va¹ pisač nije prikazan, izaberite kombatibilni (pogledajte priručnik "
"odpisača) ili neki slični."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI winprinter konfiguracija"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8287,11 +8580,11 @@ msgstr ""
"ispisaprobne stranice. Inače pisač neęe raditi. Va¹u postavu tipa veze "
"pokretačkiprogram ęe ignorirati."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark inkjet konfiguracija"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8303,7 +8596,7 @@ msgstr ""
"Spojiteva¹ pisač na lokalni port ili ga namjestite na računalu u kojeg je "
"uključen."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8325,7 +8618,7 @@ msgstr ""
"stranice za namje¹tanje glavepisača sa \"lexmarkmaintain\" i podesite "
"postavke za namje¹tanje glave saovim programom."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8341,22 +8634,22 @@ msgstr ""
"(memorija,duplex jedinica, dodatne ladice) postavljeni ispravno. Primjetite "
"dasa vrlo velikom kakvoęom ispisa/rezolucijom ispis mo¾e znatno usporiti."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s je izvan dosega!<"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8365,11 +8658,11 @@ msgstr ""
"Da li ¾elite postaviti ovaj pisač (\"%s\")\n"
"kao podrazumijevani pisač?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Testne stranice"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8381,39 +8674,39 @@ msgstr ""
"laserskimpisačima sa malo memorije i uopęe se ne ispisati. U veęini "
"slučajeva jedovoljno ispisati standardnu probnu stranicu."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Bez testnih stranica"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Ispi¹i"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Standardna testna stranica"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna stranica (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Alternativna testna stranica (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Foto testna stranica"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Ne ispi¹i nikakve probne stranice"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Ispisujem probnu stranicu(e)..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8428,7 +8721,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8436,15 +8729,15 @@ msgstr ""
"Probna stranica(e) poslana je na pisač.\n"
"Ponekad je potrebno par sekundi prije nego pisač počne s ispisom.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Da li je sve radilo ispravno?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Raw pisač"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8457,7 +8750,7 @@ msgstr ""
"\"kprinter <datoteka>\". Grafički alati vam omoguęuju da lako izaberetepisač "
"i podesite opcije.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8467,8 +8760,8 @@ msgstr ""
"ispis mnogih aplikacija, ali ovdje ne stavljate ime datoteke jerdatoteku za "
"ispis dobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8480,7 +8773,7 @@ msgstr ""
"\"%s\" komanda dozvoljava da podesite opcije za pojedini posao ispisa.Samo "
"dodajte ¾eljene postavke u komandnu liniju, npr. \"%s <datoteka>\"."
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8490,7 +8783,7 @@ msgstr ""
"Da bi saznali o dostupnim opcijama za trenutni pisač pročitajte ili "
"popisprikazan dolje ili stisnite na \"Popis ispisnih opcija\".%s\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8498,7 +8791,7 @@ msgstr ""
"Ovo je popis dostupnih opcija za ispis za trenutni pisač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8507,8 +8800,8 @@ msgstr ""
"Da bi ipisali datoteku iz komandne linije (terminalski prozor) "
"koristitekomandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8518,7 +8811,7 @@ msgstr ""
"dijalogamnogih aplikacija. Ali tamo ne upisujete ime datoteke jer datoteku "
"za ispisdobavlja sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8526,7 +8819,7 @@ msgstr ""
"Da bi dobili popis opcija dostupnih za trenutni pisač stisnite na "
"\"Popisispisnih opcija\"."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8535,7 +8828,7 @@ msgstr ""
"Da bi ispisali datoteku iz komandne linije (terminalskog prozora) "
"koristitenaredbu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8550,7 +8843,7 @@ msgstr ""
"nazvanu \"ZAUSTAVI pisač!\", koja zaustavlja sve poslove ispisa čim "
"jestisnete. Ovo je korisno kad se, npr., zaglavi papir.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8563,45 +8856,45 @@ msgstr ""
"odrešeniposao ispisa. Jednostavno dodajte ¾eljene postavke u komandnu "
"liniju, npr.\"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Ispis/skeniranje na \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Ispis na pisaču \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Zatvori"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Popis ispisnih opcija"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8619,9 +8912,9 @@ msgstr ""
"\n"
"Ne koristite \"scannerdrake\" za ovaj urešaj!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8632,17 +8925,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Čitam podatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Prebaci postavke pisača"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8656,7 +8949,7 @@ msgstr ""
"vrsta veze i podrazumijevane opcije) su preuzeti, ali ne i poslovi.\n"
"Ne mogu se svi redovi prebaciti zbog:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8664,18 +8957,18 @@ msgstr ""
"CUPS ne podr¾ava pisače na Novell poslu¾iteljima ili pisače koji "
"¹aljupodatke u naredbu slobodne forme.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"PDQ podr¾ava samo lokalne pisače, udaljene LPD pisače i socket/TCPpisače.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podr¾avaju IPP pisače.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8683,7 +8976,7 @@ msgstr ""
"Uz to, ovaj program ne mo¾e stvarati redove ili \"foomatic-configure\" sene "
"mo¾e prebaciti."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8693,7 +8986,7 @@ msgstr ""
"Takošer, pisači pode¹eni sa PPD datotekama od svog proizvošača ili sanative "
"CUPS pokretačkim programima se ne mogu prebaciti."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8702,15 +8995,15 @@ msgstr ""
"\n"
"Označite pisače koje ¾elite prebaciti i stisnite \"Prebaci\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Ne prebacuj pisače"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8721,11 +9014,11 @@ msgstr ""
"Stisnite \"Prebaci\" da prepi¹ete preko njega.\n"
"Mo¾ete i upisati novo ime ili preskočiti ovaj pisač."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Ime pisača mo¾e sadr¾avati samo slova, brojeve i podvlaku"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8734,16 +9027,16 @@ msgstr ""
"Pisač \"%s\" veę postoji,\n"
"da li zaista ¾elite prepisati njegovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Novo ime pisača"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8752,29 +9045,29 @@ msgstr ""
"Prebacili ste va¹ biv¹i podrazumijevani pisač(\"%s\"), da li bi trebao "
"bitipodrazumijevani pisač i u novom sustavu %s?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Osvje¾avam padatke o pisaču ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Postavke udaljenog pisača"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Pokreęem mre¾u ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Podesi mre¾u"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Mre¾a nije pode¹ena"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8785,11 +9078,11 @@ msgstr ""
"jo¹ nije pode¹ena. Ako nastavite bez ispravne mre¾e, neęete moęikoristiti "
"pisač kojeg sada pode¹avate. Kako ¾elite nastaviti?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Nastavi bez pode¹avanja mre¾e"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8804,7 +9097,7 @@ msgstr ""
"Internet\"/\"Veza\", i poslije podesite pisač, takošer iz Mandrake "
"kontrolnog centra,odjeljak \"Hardver\"/\"Pisač\""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8813,24 +9106,24 @@ msgstr ""
"Mre¾a nije pokrenuta. Provjerite postavke i hardver. Zatim probajte "
"ponovnopodesiti va¹ udaljeni pisač."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Ponovno pokreęem ispisni sutav ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "Visoka"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "Paranoidna"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram ispisni sustav s %s sigurnosnom razinom."
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8853,11 +9146,11 @@ msgstr ""
"\n"
"Da li stvarno ¾elite namjestiti ispisivanje na ovom računalu?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Pokretanje ispisnog sustava prilikom podizanja sustava"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8877,63 +9170,63 @@ msgstr ""
"\n"
"®elite li ponovno uključiti automatsko podizanje ispisnog sustava?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Provjeravam instalirani softver..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Odaberite spooler pisača"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji ispisni sustav (spooler) ¾elite koristiti?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Pode¹avam pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Postavke pisača"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Pode¹avam aplikacije..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Da li ¾elite podesiti ispisivanje?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Ispisni sustav:"
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8945,7 +9238,7 @@ msgstr ""
"pogledali informacijeo njemu; ili da bi pisač sa udaljenog CUPS poslu¾itelja "
"učinili dostupnimStarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8955,32 +9248,28 @@ msgstr ""
"promijenilipostavke; da ga odredite za podrazumijevani pisač; ili da bi "
"pogledaliinformacije o njemu."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Osvje¾i popis pisača (za prikaz svih dostupnih udaljenih CUPS pisača)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Promijeni ispisni sustav"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Zavr¹i"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "®elite li podesiti neki drugi pisač?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Promijeni postavke pisača"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8989,100 +9278,100 @@ msgstr ""
"Pisač %s\n"
"©to ¾elite promijeniti na ovom pisaču?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Napravi!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Vrsta veze s pisačem"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Ime pisača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Proizvošač pisača, model, pokretački program"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Proizvošač pisača, model"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Odredi ovaj pisač za podrazumijevani"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj pisač StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Ispi¹i probne stranice"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Saznajte kako koristiti ovaj pisač"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Ukloni pisač"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari pisač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Podrazumijevani pisač"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Pisač \"%s\" je sada odrešen za podrazumijevani."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodavanje pisača StarOfficeu/OpenOffice.orgu"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Pisač \"%s\" je uspje¹no dodan StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati \"%s\" StarOfficeu/OpenOffice.orgu."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam pisač iz StarOfficea/OpenOffice.orga"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Pisač \"%s\" je uspje¹no uklonjen iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti pisač \"%s\" iz StarOfficea/OpenOffice.orga."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li stvarno ¾elite ukloniti pisač \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Uklanjam pisač \"%s\" ..."
@@ -9137,8 +9426,9 @@ msgstr ""
"Ostavite prazno ukoliko ne ¾elite ftp proxy"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url treba početi sa 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba početi sa 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9187,44 +9477,6 @@ msgstr "mkraid nije uspio (mo¾da niste instalirali raidtools alate?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ova razina se treba koristiti sa pa¾njom. Ona čini va¹ sustav mnogo lak¹im "
-"za kori¹tenje,\n"
-"ali vrlo osjetljiv: ne smije biti kori¹ten za računala koja su povezana u "
-"mre¾i ili na Internet. Naime, nema lozinke za pristup."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Sa ovom sigurnosnom razinom, kori¹tenje ovog sustava kao poslu¾itelj postaje "
-"moguęe.\n"
-"Sigurnost je sada toliko visoka da se sustav mo¾e koristiti kao poslu¾itelj\n"
-"koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je va¹e računalo "
-"samo klijent na Internetu, bolje da izaberete ni¾u razinu."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opcije"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvučnu Arhitekturu) zvučni sustav"
@@ -9533,7 +9785,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Sustav"
@@ -9663,7 +9915,7 @@ msgstr ""
"GNU gcc prevoditelja kao i najbolja Open Source okru¾ja za razvojaplikacija."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni Centar"
@@ -9782,20 +10034,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9803,177 +10055,177 @@ msgstr ""
"Ne mogu pročitati va¹u particijsku tablicu, previ¹e je uni¹tena za mene :(\n"
"Poku¹ati ęu sa brisanjem lo¹ih particija"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Prebaci postavke pisača"
# ../../share/compssUsers
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Poslu¾itelj baza podataka"
# ../../share/compssUsers
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Poslu¾itelj baza podataka"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS Poslu¾itelj"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS Poslu¾itelj"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Dodaj korisnika"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pomoę"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
#, fuzzy
msgid "No kernel selected!"
msgstr "Nema TV kartice!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nije povezan"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Obri¹i"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Izabrao sve"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Dodaj korisnika"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Pode¹avam..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "ponovno postavi"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disketni pogon nije dostupan"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Gre¹ka!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Ne mogu naęi potrebnu datoteku sa slikom '%s'."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Postava automatske instalacije"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -10000,11 +10252,11 @@ msgstr ""
"\n"
"®elite li nastaviti?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Postava automatskih koraka"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -10012,12 +10264,12 @@ msgstr ""
"Izaberite za svaki korak da li ęe se ponoviti kao i u va¹oj instalaciji, "
"ilięe se izvoditi ručno"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Pravim auto instalacijsku disketu"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -10029,12 +10281,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljku na lijevoj strani"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Čestitke!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -10042,19 +10294,32 @@ msgstr ""
"Disketa je uspje¹no stvorena.\n"
"Sada mo¾ete ponoviti svoju instalaciju"
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Automatska Instalacija"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Ukloni posljednju stavku"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10064,7 +10329,7 @@ msgstr ""
" DrakBackup Report \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10076,7 +10341,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10088,31 +10353,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Sigurnosna pohrana korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Koristi vrpcu za pohranu"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -10120,7 +10449,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -10129,7 +10458,7 @@ msgstr ""
"popis datoteka poslan FTPom : %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -10140,35 +10469,39 @@ msgstr ""
"(!) problem sa FTP vezom: nije bilo moguęe poslati va¹e pohranjene "
"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Gre¹ka prilikom čitanja datoteke %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10176,25 +10509,26 @@ msgstr ""
"\n"
"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu pohraniti i povratiti sve datoteke u va¹oj /etc mapi.\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Sigurnosno pohranjivanje va¹ih sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Izostavi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10202,83 +10536,129 @@ msgstr ""
"S ovom opcijom moęi ęete povratiti bilo koju inačicu\n"
"va¹eg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Odaberite sve korisnike koje ¾elite uključiti u pohranu."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za pohranu"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Prebaci"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Upi¹ite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "Upi¹ite mapu na ovom hostu u koju ęete staviti pohranu."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Upi¹ite svoje korisničko ime"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Upi¹ite svoju lozinku"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Naznačite da li koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Naznačite da li prethodno ¾elite obrisati va¹ CDRW"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Naznačite da li ¾elite uključiti podizanje instalacije pri\n"
-"dizanju računala sa CDa."
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Naznačite da li koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Naznačite da li koristite CDRW medij"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10286,21 +10666,36 @@ msgstr ""
"Upi¹ite ime va¹eg CD snimača\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Odaberite datoteku"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Upi¹ite ime urešaja kojeg ęete koristiti za sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Naznačite da li prethodno ¾elite obrisati va¹ CDRW"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Naznačite da li prethodno ¾elite obrisati va¹ CDRW"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Naznačite da li prethodno ¾elite obrisati va¹ CDRW"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10308,57 +10703,57 @@ msgstr ""
"Upi¹ite maksimalnu dozvoljenu\n"
" veličinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Upi¹ite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Mre¾a"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Tvrdi disk / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10366,13 +10761,13 @@ msgstr ""
"Izaberite vremenski razmak izmešu\n"
"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10380,59 +10775,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "Osigurajte da je cron daemon uključen u va¹e servise"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Ovjde po¹alji izvje¹taj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "©to"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Jo¹ opcija"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Izaberite gdje ¾elite pohranjivati"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "preko mre¾e"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Izaberite ¹to ¾elite pohranjivati"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Ručno izaberi korisnika"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10440,7 +10847,7 @@ msgstr ""
"\n"
"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10448,7 +10855,7 @@ msgstr ""
"\n"
"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10456,7 +10863,7 @@ msgstr ""
"\n"
"- Korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10464,7 +10871,7 @@ msgstr ""
"\n"
"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10473,22 +10880,32 @@ msgstr ""
"\n"
"- Snimi na tvrdi disk u putanju : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Urešaj mi¹a: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10497,12 +10914,12 @@ msgstr ""
"\n"
"Snimi FTPom na host : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10511,7 +10928,7 @@ msgstr ""
"\n"
"Snimi FTPom na host : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10520,7 +10937,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10528,19 +10945,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10549,41 +10966,41 @@ msgstr ""
"\n"
"- Daemon (%s) uključi :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Mre¾u FTPom.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Mre¾u SSHom.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mre¾u FTPom.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mre¾u FTPom.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nema postavki, molimo izaberite Čarobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10591,7 +11008,7 @@ msgstr ""
"Popis podataka za povrat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10599,137 +11016,134 @@ msgstr ""
"Popis o¹teęenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Molimo poni¹tite odabir ili ga uklonite iduęi put"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "Pohranjene datoteke su o¹teęene"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " Svi va¹i izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Uspje¹no povraęeni na %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Popis korisnika za povrat (samo je najnoviji nadnevak va¾an za svakog "
"korisnika)"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Upi¹ite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP veza"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Sigurna veza"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Upi¹ite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij s kojeg ęete povratiti podatke"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
"pohrane.)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Prilagošena pohrana"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Prija¹nje"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Slo¾i sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Slijedeęe"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10737,9 +11151,9 @@ msgstr ""
"Molimo slo¾ite pohranu prije povrata...\n"
"ili provjerite da je putanja ispravna"
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10747,14 +11161,14 @@ msgstr ""
" va¹ mail sa izvje¹tajem nije poslan\n"
" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Slijedeęi paketi ęe biti instalirani"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10763,19 +11177,19 @@ msgstr ""
"Gre¹ka tijekom slanja datoteke putem FTPa.\n"
" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Izaberite podatke koje ęete pohraniti..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10783,75 +11197,60 @@ msgstr ""
"Nije pronašena datoteka s postavkama \n"
"pritisnite Čarobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Razvija se ... molimo sačekajte."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Pohrani korisničke datoteke"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "©aljem datoteke..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Popis datoteka koje ęe biti na CDu."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Upi¹ite brzinu cd snimača"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Upi¹ite ime CD snimača (ex:0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Naznačite ¾elite li da se instalacija sustava mo¾e pokretati sa CDa."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Postavke čarobnjaka"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10862,7 +11261,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10911,7 +11310,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10925,7 +11324,7 @@ msgstr ""
" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10949,7 +11348,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -11003,21 +11402,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -11055,18 +11454,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -11096,7 +11495,7 @@ msgstr ""
"sa ovim programom; ako ne, pi¹ite na Free Software Foundation,\n"
"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11174,7 +11573,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11192,7 +11591,7 @@ msgstr ""
"no ¹to je po¹aljete poslu¾itelju.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11213,7 +11612,7 @@ msgstr ""
"mapu, i izgubit ęete sve podatke. Va¾no je biti\n"
"oprezan i ne mijenjati podatke u pohrani ručno.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11289,97 +11688,124 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %s-a nije uspjela. Prijavljena je slijedeęa gre¹ska:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
# ../../share/compssUsers
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konzolni Alati"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "na tvrdi disk"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "MandrakConsulting"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Mi¹"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Udaljeni pisač"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Ime sharea"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Čarobnjak mre¾nih postavki"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Provjera autentičnosti"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Odabir paketa"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Molim pričekajte"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11391,47 +11817,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Post deinstalacija"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Post deinstalacija"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi ęe biti raspolo¾ivi poslije instalaciju u %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Mre¾ne postavke (%d adaptera)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Obri¹i profil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profil za obrisati:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Novi profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11439,95 +11865,95 @@ msgstr ""
"Ime profila kojeg treba stvoriti (novi profil se stvara kao kopija "
"trenutnog):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Ime računala: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internet pristup"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tip:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Mešusklop:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Molim sačekajte"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Pode¹avanje Internet Pristupa..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN postavke"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Upravljački program"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Mešusklop"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Stanje"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Podesi lokalnu mre¾u..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Ovdje stisnite za pokretanje čarobnjaka ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Čarobnjak..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Povezan"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nije povezan"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Pove¾i..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Odspoji..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11535,7 +11961,7 @@ msgstr ""
"Upozorenje, otkrivena je jo¹ jedna Internet veza, koja mo¾da koristiva¹u "
"mre¾u"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11543,36 +11969,36 @@ msgstr ""
"Nemate niti jedan konfigurirani mešusklop.\n"
"Konfigurirajte ga prvo klikanjem na 'Postavljanje'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN postavke"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapter %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Boot protokol"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Pokrenuto pri podizanju"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP klijent"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Aktiviraj sada"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "Deaktiviraj sada"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11580,7 +12006,7 @@ msgstr ""
"Ovo sučelje jo¹ nije pode¹eno.\n"
"Pokrenite čarobnjak za postavu u glavnom prozoru"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11588,121 +12014,121 @@ msgstr ""
"Nemate niti jednu internet vezu.\n"
"Napravite jednu klikanjem na 'Podesi'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Postava Internet veze"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Postava Internet veze"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tip veze: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametri"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet kartica"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "uporaba: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-2,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Ime modula"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Veličina"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "pravljenje boot diskete"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "uobičajeno"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Gre¹ka DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "kernel inačica"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Opęenito"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ekspertno područje"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd opcionalni argumenti"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Dodaj modul"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "prisili"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ako je potrebno"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "izostavi scsi module"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "izostavi raid module"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Ukloni modul"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ispis"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Uvjerite se da je medij\tprisutan za urešaj %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11711,12 +12137,12 @@ msgstr ""
"Ne postoji medij za urešaj %s.\n"
"Molimo ubacite jedan."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu napraviti fork: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11727,99 +12153,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Tra¾i instalirane fontove"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Odselektiraj instalirane fontove"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "parsiraj sve fontove"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "nisu pronašeni fontovi"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "Gotov"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "nisam mogao naęi nikakve fontove na va¹im montiranim particijama"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ponovno izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "nisam mogao naęi nijedan font.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Potra¾i fontove u popisu instaliranih"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "sačekajte tijekom ttmkfdira..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Instalacija True Typea gotova"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Pretvaranje fontova"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "stvaranje typ1insta"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript reference"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "pretvaranje ttf fontova"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pretvaranje pfm fontova"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Potisni privremene datoteke"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Ponovno pokreni XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Potisni datoteke fontova"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "Ponovno pokreni xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11833,107 +12259,111 @@ msgstr ""
"-Mo¾ete instalirati fontove na normalan način. U rijetkim slučajevima, "
"la¾nifontovi ęe sru¹iti va¹ X poslu¾itelj."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Dobavi Windows fontove"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Odinstaliraj fontove"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Popis fontova"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje ęe podr¾avati fontove :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Generički pisač"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite datoteku ili mapu fontova i stisnite 'Dodaj'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Instalacijski popis"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "stisnite ovdje ako ste sigurni"
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "ovdje ako niste."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Odselektiraj sve"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Izabrao sve"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Popis za uklanjanje"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Početni testovi"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na va¹ sustav"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Instaliraj i pretvori fontove"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Post instalacija"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Ukloni fontove s va¹eg sustava"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Post deinstalacija"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet Veze"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje veze prema internetu je trenutno omoguęeno"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11945,31 +12375,31 @@ msgstr ""
"\n"
"©to ¾elite napraviti?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "onemoguęi"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "odustani"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "ponovno postavi"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Onemoguęujem poslu¾itelje..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje veze prema Internetu je trenutno onemoguęeno."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje veze prema Internetu je trenutno onemoguęeno"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11981,19 +12411,19 @@ msgstr ""
"\n"
"©to ¾elite napraviti?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "omoguęi"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Omoguęujem poslu¾itelje..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje veze prema internetu je trenutno omoguęeno."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -12009,21 +12439,21 @@ msgstr ""
"Upozorenje: trebati ęete primjenjeni Mre¾ni Urešaj za postavljanje lokalne "
"mre¾e (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Mešusklop %s (koristi modul %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Mešusklop %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nema mre¾nog adaptera na va¹em sustavu!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -12031,11 +12461,11 @@ msgstr ""
"Nije pronašen niti jedan mre¾ni adapter na va¹em sustavu. Molimo pokrenite "
"hardware-ski konfiguracijski alat."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Mre¾ni mešusklop"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12050,18 +12480,18 @@ msgstr ""
"\n"
"Postaviti ęu lokalnu mre¾u (LAN) sa tim adapterom."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo odaberite koji mre¾ni adapter ęe biti povezan na va¹u lokalnu mre¾u."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Mre¾no sučelje veę pode¹eno"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12076,15 +12506,15 @@ msgstr ""
"\n"
"Mo¾ete je podesiti i ručno, ali trebate znati ¹to radite."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automatska rekonfiguracija"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Poka¾i trenutne postavke sučelja"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12101,7 +12531,7 @@ msgstr ""
"IP atribut: %s\n"
"Pokretački program: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12121,33 +12551,33 @@ msgstr ""
"poslu¾itelj.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C-Class lokalna mre¾a"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "IP (ovog) DHCP poslu¾itelja"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Re-konfiguriraj sučelje i DHCP poslu¾itelj"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mre¾a nije zavr¹ila sa '.0', odustajem."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalni LAN adresni konflikt je pronašen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Detektirana je vatrozidna konfiguracija!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -12155,20 +12585,20 @@ msgstr ""
"Upozorenje! Postojeęa vatrozidna konfiguracija je pronašena. Morati ęete "
"ručno popraviti neke dijelove nakon instalacije."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Pode¹avam..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Pode¹avam skriptove, instaliram softver, pokreęem poslu¾itelje..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problem prilikom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12178,23 +12608,23 @@ msgstr ""
"Sada mo¾ete dijeliti va¹u internet vezu sa drugim računalima na va¹oj "
"lokalnoj mre¾i, koristeęi automatsku mre¾nu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Postavljanje je veę urašeno, ali je trenutno onemoguęeno."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Postavljanje je veę urašeno, ali je trenutno omoguęeno."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje veze prema internetu nije bilo konfigurirano."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Postavke dijeljenja internet veze"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12209,20 +12639,13 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko ¾elite pokreniti čarobnjak za postavljanja."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Kontrolni Centar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Izaberite alat koje ¾elite koristiti"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12231,67 +12654,71 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kabl)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "SAD (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "SAD (kabl)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "SAD (kabl-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japan (kabl)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Istočna Europa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "Francuska [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Zapadna Europa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Ju¾na Afrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -12299,36 +12726,36 @@ msgstr ""
"Molim, \n"
"upi¹ite svoj tv standard i zemlju"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Područje :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Pretra¾ivanje TV kanala u tijeku ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Tra¾im TV kanale"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Pojavila se gre¹ka kod instalacije paketa:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -12360,11 +12787,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Molim izaberite raspored tipkovnice."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Da li ¾elite da BackSpace vrati Delete u konzoli?"
@@ -12389,7 +12816,7 @@ msgstr "Ne mogu pokrenuti ¾ivu nadogradnju !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Promjena je izvr¹ena, ali da bi imala učinak, morate se odlogirati"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12497,22 +12924,25 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "Sadr¾aj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Upozorenje na po¹tu/SMS"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "Molim pričekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Postava upozorenja na po¹tu/SMS"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12520,110 +12950,111 @@ msgstr ""
"\n"
"Ovdje ęete moęi namjestiti sustav upozoravanja.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Ime domene"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS Poslu¾itelj"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix mail poslu¾itelj, Inn news poslu¾itelj"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS Poslu¾itelj"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS Poslu¾itelj"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Servisi"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Ispisni poslu¾itelj"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "postavljanje servisa"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Primit ęete upozorenje ako jedan od izabranih servisa vi¹e ne radi"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "Postavka optereęenja"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Primit ęete upozorenje ako je optereęenje veęe od ove vrijednosti"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "postava upozoravanja"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Odredite način na koji ęe vas sustav upozoravati"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Upi¹ite svoju lozinku"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Snimi kao.."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Molim izaberite koju vrstu mi¹a koristite."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "niti jedan serial_usb nije pronašen\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emuliranje treęe tipke?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Čitam podatke o pisaču ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Otkrivanje urešaja ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Isku¹aj portove"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s našen na %s, podesi?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Odaberite skener"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Skener %s nije podr¾an"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12632,11 +13063,11 @@ msgstr ""
"Scannerdrake nije uspio prepoznati va¹ %s skener.\n"
"Izaberite urešaj gdje je skener uključen"
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "Izaberite urešaj"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12647,7 +13078,7 @@ msgstr ""
"Mo¾ete pokrenuti printerdrake iz Mandrake kontrolnog centra uHardver "
"odjeljku."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12670,15 +13101,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Vatrozidne postave"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Vatrozidne postave"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12690,7 +13121,7 @@ msgstr ""
"Veę ste postavili vatrozid.\n"
"Kliknite na Podesi za promjenu ili brisanje vatrozida"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12941,48 +13372,48 @@ msgstr "Ne mogu otvoriti %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Ne mogu otvoriti %s za pisanje: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Ne, ne trebam DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Da, trebam DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Ne, ne trebam NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Da, trebam NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Nemoj snimiti"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Snimi & izaši"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Čarobnjak za postavu vatrozida"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Ne (sadr¾i ovo s interneta na vatrozidu)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Da (propusti ovo kroz vatrozid)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Molimo pričekajte... Provjeravam instalirane pakete"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12991,6 +13422,10 @@ msgstr ""
"Neuspjela instalacija potrebnih paketa : %s i Bastille.\n"
" Poku¹ajte ih instalirati ručno."
+#: ../../ugtk.pm_.c:619
+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-*"
+
# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -13045,6 +13480,10 @@ msgstr ""
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Audio-namjenjeni alati: mp3 ili midi svirači, mikseri, itd"
+#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13141,10 +13580,6 @@ msgstr "Alati za pravljenje i pr¾enje CD-a"
msgid "Office Workstation"
msgstr "Uredska radna stanica"
-#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Poslu¾itelj"
-
# ../../share/compssUsers
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -13222,6 +13657,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Klijenti za razne protokole uključujuęi ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet gateway"
@@ -13258,6 +13697,196 @@ msgstr "Multimedija - CD pr¾enje"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Ova razina se treba koristiti sa pa¾njom. Ona čini va¹ sustav mnogo "
+#~ "lak¹im za kori¹tenje,\n"
+#~ "ali vrlo osjetljiv: ne smije biti kori¹ten za računala koja su povezana u "
+#~ "mre¾i ili na Internet. Naime, nema lozinke za pristup."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Sa ovom sigurnosnom razinom, kori¹tenje ovog sustava kao poslu¾itelj "
+#~ "postaje moguęe.\n"
+#~ "Sigurnost je sada toliko visoka da se sustav mo¾e koristiti kao "
+#~ "poslu¾itelj\n"
+#~ "koji prima zahtjeve od mnogo klijenata. Upozorenje: ako je va¹e računalo "
+#~ "samo klijent na Internetu, bolje da izaberete ni¾u razinu."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opcije"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sigurnost"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Popis datoteka koje ęe biti na CDu."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Izaberite prostor na CDu"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Upi¹ite brzinu cd snimača"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Naznačite da li prethodno ¾elite obrisati va¹ CDRW"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Upi¹ite ime CD snimača (ex:0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr ""
+#~ "Naznačite ¾elite li da se instalacija sustava mo¾e pokretati sa CDa."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Url treba početi sa 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Naznačite da li ¾elite uključiti podizanje instalacije pri\n"
+#~ "dizanju računala sa CDa."
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windowse (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP Poslu¾itelj"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Dobrodo¹li u Čarobnjak za namje¹tanje pisača\n"
+#~ "\n"
+#~ "Ovaj čarobnjak ęe vam pomoęi da instalirate pisače spojene na ovo "
+#~ "računalo.\n"
+#~ "\n"
+#~ "Priključite svoj pisač(e) u ovo računalo i uključite ga/ih. Stisnite na "
+#~ "\"Dalje\"kada ste spremni, ili na \"Odustani\" ako ne ¾elite sada "
+#~ "namje¹tati pisač(e).\n"
+#~ "\n"
+#~ "Primjetite da se neka računala mogu sru¹iti tijekom automatskog "
+#~ "prepoznavanjapisača. Isključite \"Automatski prepoznaj pisače\" da bi "
+#~ "instalirali pisač bezautomatskog prepoznavanja. Koristite \"Mod za "
+#~ "stručnjake\" ili printerdrake kada¾elite namjestiti ispis na udaljenom "
+#~ "pisaču ako ga printerdrake ne prika¾eautomatski."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Automatski pronalazak pisača"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake mo¾e prepoznati va¹e lokalne paralelne i USB pisače, "
+#~ "aliprimjetite da na nekim sustavima proces automatskog prepoznavanja "
+#~ "MO®EZAMRZNUTI VA© SUSTAV I O©TETITI DATOTEČNE SUSTAVE! Zato činite to "
+#~ "NAVLASTITI RIZIK!\n"
+#~ "\n"
+#~ "Da li zaista ¾elite automatski prepoznati va¹e pisače?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Ručno pode¹avanje pisača"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Mre¾ni pisači se mogu instalirati samo nakon instalacije. Izaberite"
+#~ "\"Hardver\" i potom \"Pisač\" u Mandrake kontrolnom centru."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Da bi instalirali mre¾ne pisače, stisnite \"Odustani\", prebacite se u"
+#~ "\"Stručnjak\" mod i ponovno stisnite \"Dodaj novi pisač\"."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Da li je va¹ pisač HPov multi-funkcijski urešaj (OfficeJet, PSC, "
+#~ "PhotoSmart,LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Instaliram HPOJ paket"
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Provjeravam urešaj i namje¹tam HPOJ ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Instaliram SANE paket..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Instaliram pakete..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Skeniram na va¹em HP multi-funkcijskom urešaju"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Skeniram na va¹em HP multi-funkcijskom urešaju"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Činim pisač dostupnim CUPSu ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Kontrolni Centar"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Izaberite alat koje ¾elite koristiti"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Odredite način na koji ęe vas sustav upozoravati"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "niti jedan serial_usb nije pronašen\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck neuspje¹an sa izlaznim kodom %d ili signalom %d"
@@ -13370,9 +13999,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Setting security level"
#~ msgstr "Pode¹avam sigurnosni nivo"
-#~ msgid "Graphics card"
-#~ msgstr "Grafička kartica"
-
#~ msgid "Select a graphics card"
#~ msgstr "Odaberite grafičku karticu"
@@ -13460,9 +14086,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Odaberite postotak paketa koje ¾elite instalirati"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Izaberite sigurnosni nivo"
-
#~ msgid "Complete (%dMB)"
#~ msgstr "Kompletno (%dMB)"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index bac82dea7..7eaf98096 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2002-08-01 00:13+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-08-20 15:02+0000\n"
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -59,11 +59,11 @@ msgstr "Vįlasszon egy X-kiszolgįlót"
msgid "X server"
msgstr "X-kiszolgįló"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "A többképernyõs mód beįllķtįsa"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -71,44 +71,44 @@ msgstr ""
"A grafikus kįrtya lehetõvé teszi több képernyõ hasznįlatįt.\n"
"Mit szeretne tenni?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Vįlassza ki a grafikus kįrtyįn talįlható memória mennyiségét"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree-beįllķtįsok"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Melyik XFree-t szeretné hasznįlni?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "A képernyõk egymįstól független beįllķtįsa"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "A Xinerama kiterjesztés hasznįlata"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Csak a(z) \"%s\"%s kįrtya beįllķtįsa"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s hardveres 3D-s gyorsķtįssal"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"A kįrtya tįmogat hardveres 3D-s gyorsķtįst, de csak az XFree %s verzióban.\n"
"Az XFree %s is hasznįlható; elképzelhetõ, hogy abban jobb a 2D-s tįmogatįs."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "A kįrtya tįmogat hardveres 3D-s gyorsķtįst az XFree %s verzióval."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KĶSÉRLETI JELLEGŪ hardveres 3D-s gyorsķtįssal"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"Az XFree %s verzió is hasznįlható; elképzelhetõ, hogy ebben jobb a 2D-s\n"
"tįmogatįs."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,11 +148,56 @@ msgstr ""
"A kįrtya tįmogat hardveres 3D-s gyorsķtįst az XFree %s verzióban,\n"
"DE EZ KĶSÉRLETI JELLEGŪ, HASZNĮLATA AKĮR A GÉP LEFAGYĮSĮHOZ IS VEZETHET!"
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (telepķtési meghajtóprogram)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Egyéni"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Grafikus kįrtya"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Felbontįs"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Teszt"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+msgid "Options"
+msgstr "Beįllķtįsok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Kilépés"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -165,31 +210,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "A monitor kivįlasztįsa"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Egyéni"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr "Plug and Play"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Įltalįnos"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
msgstr "Gyįrtó"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr "A Plug'n Play-felderķtés sikertelen. Vįlasszon ki egy monitort."
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -211,11 +252,11 @@ msgstr ""
"Ha nem ismeri a monitor jellemzõit, vįlasszon egy biztonsįgosan\n"
"alacsony értéket!"
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Vķzszintes frissķtés"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Függõleges frissķtés"
@@ -239,57 +280,42 @@ msgstr "16 millió szķn (24-bites)"
msgid "4 billion colors (32 bits)"
msgstr "4 milliįrd szķn (32-bites)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Felbontįsok"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Felbontįs"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Vįlassza ki a felbontįst és a szķnmélységet"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafikus kįrtya: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Mégsem"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ki szeretné próbįlni a beįllķtįsokat?"
@@ -298,71 +324,71 @@ msgstr "Ki szeretné próbįlni a beįllķtįsokat?"
msgid "Test of the configuration"
msgstr "A beįllķtįsok kipróbįlįsa"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Billentyūzetkiosztįs: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Az egér tķpusa: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Az egeret kezelõ eszköz: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "A vķzsz. frissķtési frekvencia: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "A függ. frissķtési frekvencia: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "A grafikus kįrtya: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "A kįrtya memóriįja: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Szķnmélység: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Felbontįs: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-meghajtó: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Indķtįs grafikus módban"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -372,167 +398,191 @@ msgstr ""
"automatikusan elinduljon.\n"
"Szeretné, ha a grafikus felület elindulna a rendszer indķtįsakor?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Śgy tūnik, a grafikus kįrtyįnak van tévékimenete.\n"
+"Framebuffer segķtségével lehetõség van ennek hasznįlatįra.\n"
+"\n"
+"Ehhez a grafikus kįrtyįt a televķzióra kell csatlakoztatni még a szįmķtógép "
+"bekapcsolįsa elõtt.\n"
+"Ez utįn a rendszerbetöltõben vįlassza ki a \"tévékimenet\" bejegyzést.\n"
+"\n"
+"Valóban van tévékimenet a grafikus kįrtyįn?"
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "Milyen normįt hasznįl a televķzió?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "A rendszerindķtįsi partķció elsõ szektora"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "A lemezmeghajtó legelsõ szektora (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "A SILO telepķtése"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Hovį kerüljön a rendszerindķtó program (bootloader)?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "A LILO/GRUB telepķtése"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO, szöveges menüvel"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO, grafikus menüvel"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "GRUB"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Indķtįs DOS-ból vagy Windows-ból (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Rendszerindķtįsi beįllķtįsok"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "A hasznįlni kķvįnt rendszerbetöltõ"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "A rendszerindķtó program telepķtése"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Rendszerindķtįsi eszköz"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nem mūködik régi BIOS-okkal)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Képernyõmód"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Vįrakozįsi idõ az alapértelmezett rendszer betöltése elõtt"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Jelszó"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Jelszó (még egyszer)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "A parancssorban įtadható paraméterek korlįtozįsa"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "korlįtozįs"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "A /tmp törlése minden śjraindulįsnįl"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "A RAM mérete, ha szükséges (%d MB-ot detektįltam)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Több profil engedélyezése"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "A fizikai memória mérete MB-ban"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"\"A parancssorban įtadható paraméterek korlįtozįsa\" beįllķtįsnak jelszó "
"nélkül nincs értelme"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Próbįlja meg śjra"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "A jelszavak nem egyeznek"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Indķtįsi üzenet"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Késleltetés Open Firmware-nél"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Vįrakozįsi idõ rendszerindķtįskor"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CD-rõl történhet rendszerindķtįs?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF-rõl történhet rendszerindķtįs?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Az alapértelmezett op. rendszer?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -548,7 +598,7 @@ msgstr ""
"\n"
"Melyik meghajtóról végzi a rendszer indķtįsįt?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -556,147 +606,148 @@ msgstr ""
"Itt lįthatók az indķtįsi menü jelenlegi bejegyzései.\n"
"Śj bejegyzések vehetõk fel, illetve módosķthatók a meglevõk."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Hozzįadįs"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Kész"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Módosķtįs"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Milyen bejegyzést szeretne felvenni?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Egyéb op. rendszer (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Egyéb op. rendszer (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Egyéb op. rendszer (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Indķtófįjl"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Gyökér"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Hozzįfūzés"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
-msgstr "Kezdeti RAM-diszk"
+msgstr "Indķtįsi RAM-diszk"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Ķrható-olvasható"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tįbla"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Nem biztonsįgos"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Cķmke"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Alapértelmezés"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
-msgstr "A RAM-diszk mérete"
+msgstr "Az indķtįsi RAM-diszk mérete"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Bejegyzés eltįvolķtįsa"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "A cķmke nem lehet üres"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Meg kell adni egy kernelfįjlt"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Meg kell adni egy gyökérpartķciót"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Mįr van ilyen nevū cķmke"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s csatolót talįltam"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Van még mįsik is?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Van valamilyen %s csatoló?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nem"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Igen"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "A hardverjellemzõk megjelenķtése"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Meghajtóprogram telepķtése ehhez a(z) %s-kįrtyįhoz: %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(%s modul)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -705,7 +756,7 @@ msgstr ""
"Most megadhatók a(z) \"%s\" modul paraméterei.\n"
"A cķmeket \"0x\" elõtaggal kell megadni, példįul: \"0x123\"."
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -716,17 +767,17 @@ msgstr ""
"a következõ formįtumban: \"név1=érték1 név2=érték2 ...\".\n"
"Példįul: \"io=0x300 irq=7\""
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "A modul paraméterei:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Melyik %s-meghajtóprogramot próbįljam meg?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -743,15 +794,15 @@ msgstr ""
"informįciókat? Bizonyos körülmények esetén az automatikus detektįlįs\n"
"a gép lefagyįsįhoz vezethet, de komolyabb kįrt nem okozhat."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Automatikus detektįlįs"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Paraméterek megadįsa"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -760,55 +811,55 @@ msgstr ""
"A(z) %s modul betöltése nem sikerült.\n"
"Megpróbįlja a betöltést mįs paraméterekkel?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "hozzįférés az X-es programokhoz"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "hozzįférés az RPM-eszközökhöz"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "\"su\" engedélyezése"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "hozzįférés az adminisztrįciós fįjlokhoz"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(mįr fel van véve: %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Ez a jelszó tśl egyszerū"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Adjon meg egy felhasznįlónevet"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"A felhasznįlónév csak a következõket tartalmazhatja: kisbetūk, szįmok, \"-\" "
"és \"_\""
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
msgid "The user name is too long"
msgstr "A felhasznįlónév tśl hosszś"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Mįr létezik ilyen felhasznįlónév"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Felhasznįló hozzįadįsa"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -817,32 +868,32 @@ msgstr ""
"Adjon meg egy felhasznįlónevet\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Név elfogadįsa"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Valódi név"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Felhasznįlónév"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Parancsértelmezõ"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Automatikus bejelentkezés"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -850,19 +901,19 @@ msgstr ""
"Beįllķtható, hogy indķtįskor egy felhasznįló automatikusan bejelentkezzen.\n"
"Szeretné hasznįlni ezt a lehetõséget?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Adja meg az alapértelmezett felhasznįlónevet:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Vįlassza ki a hasznįlni kķvįnt ablakkezelõt:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Vįlasszon nyelvet."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -872,37 +923,37 @@ msgstr ""
"mely nyelveket szeretné telepķteni. Ezek a telepķtés befejezõdése\n"
"utįni śjraindķtįst követõen lesznek elérhetõk."
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Mind"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Az összes felhasznįló engedélyezése"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Nincs megosztįs"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "A(z) %s csomagot telepķteni kell. Szeretné telepķteni?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Exportįlįs NFS-sel vagy Sambįval végezhetõ. Vįlassza ki, melyiket kķvįnja "
"hasznįlni."
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Hiįnyzik a(z) \"%s\" nevū kötelezõ csomag"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -919,11 +970,11 @@ msgstr ""
"\n"
"Az \"Egyéni\" opció hasznįlatįval felhasznįlónkénti beįllķtįs lehetséges.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "UserDrake indķtįsa"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -931,31 +982,31 @@ msgstr ""
"A felhasznįlónkénti megosztįs a \"fileshare\" csoportot hasznįlja.\n"
"A UserDrake programmal lehet felhasznįlót felvenni ebbe a csoportba."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Üdvözlet a cracker-eknek"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Gyenge"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Szabvįnyos"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Magas"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Magasabb"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoiįs"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -967,7 +1018,7 @@ msgstr ""
"internethez\n"
"csatlakozik. A hozzįférés nincs jelszóval védve."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -975,7 +1026,7 @@ msgstr ""
"A jelszavak be vannak kapcsolva, de hįlózatra kapcsolódó gép esetén\n"
"ez a konfigurįció még mindig nem ajįnlott."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -983,7 +1034,7 @@ msgstr ""
"Ez a szabvįnyos biztonsįgi szint, amely az internetre (kliensként) "
"csatlakozó gépek esetén javasolt."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -991,7 +1042,7 @@ msgstr ""
"Mįr vannak bizonyos megszorķtįsok, és több automatikus ellenõrzés fut "
"éjszakįnként."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1005,7 +1056,7 @@ msgstr ""
"keresztül csatlakozó klienst szolgįljon ki. Ha a gép az interneten csak "
"kliensként van jelen, akkor érdemesebb egy alacsonyabb szintet vįlasztani."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1013,32 +1064,50 @@ msgstr ""
"Az elõzõ szinthez hasonló, de itt a rendszer teljesen zįrt.\n"
"Ez a legbiztonsįgosabb szint."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "DrakSec - alapvetõ beįllķtįsok"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "Vįlassza ki a kķvįnt biztonsįgi szintet"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Biztonsįgi szint"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "A libsafe hasznįlata kiszolgįlókhoz"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Könyvtįr, amely védelmet nyśjt a puffertślcsordulįsos és a formįtumsztringes "
"tįmadįsok ellen."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr "Biztonsįgi adminisztrįtor (felhasznįlói név vagy email-cķm)"
+#: ../../any.pm_.c:1189
+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 ""
+"Itt kijelölheti azt a billentyūt vagy billentyūkombinįciót, amellyel\n"
+"a különbözõ billentyūzetkiosztįsok (példįul: latin illetve nem-latin)\n"
+"közt lehet majd vįltani."
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1063,7 +1132,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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Udvozoljuk a GRUB rendszerindito programban!"
@@ -1077,7 +1146,7 @@ msgstr "Udvozoljuk a GRUB rendszerindito programban!"
#
#. -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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "A(z) %c es a(z) %c billentyukkel lehet a bejegyzesek kozott lepegetni."
@@ -1092,7 +1161,7 @@ msgstr "A(z) %c es a(z) %c billentyukkel lehet a bejegyzesek kozott lepegetni."
#
#. -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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
"Nyomja meg az Enter billentyut a kijelolt rendszer inditasahoz, az 'e'-t "
@@ -1107,7 +1176,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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "az inditasi parancsok modositasahoz, vagy a 'c'-t a parancssorhoz."
@@ -1121,84 +1190,182 @@ msgstr "az inditasi parancsok modositasahoz, vagy a 'c'-t a parancssorhoz."
#
#. -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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "A kijelolt operacios rendszer %d masodperc mulva elindul."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
msgid "not enough room in /boot"
msgstr "nincs elég hely a /boot partķción"
#. -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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Asztal"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start menü"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "A rendszerindķtó program nem tehetõ %s partķcióra\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "még nem hasznįlható a segķtség\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "A rendszerindķtįs beįllķtįsai"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fįjl"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fįjl/Ki_lépés"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Śj stķlusś kategorizįló monitor"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Śj stķlusś monitor"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Hagyomįnyos monitor"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Hagyomįnyos GTK+-monitor"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Az Aurora indķtįsa rendszerindķtįskor"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "LILO/GRUB mód"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot mód"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Témįk telepķtése"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "Téma megjelenķtése a konzolon"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "Az indķtįsi kép elõnézete nem hozható létre"
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Hiba"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "\"%s\" mentése \"%s.old\" névre"
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "A LILO-üzenet elmentése sikertelen"
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "\"%s\" mįsolįsa ebbe: \"%s\""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "A LILO-üzenet nem módosķtható"
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "LILO-üzenet nem talįlható"
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "A /etc/sysconfig/bootsplash fįjl nem ķrható."
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "Ķrįs: %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+"A /etc/sysconfig/bootsplash fįjl nem ķrható:\n"
+"a fįjl nem talįlható."
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr "Nem indķtható el: mkinitrd -f /boot/initrd-%s.img %s."
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr "Indķtįsi RAM-diszk elõįllķtįsa: 'mkinitrd -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+"A LILO elindķtįsa sikertelen.\n"
+"A LILO-téma telepķtésének befejezéséhez adja ki parancssorban a \"lilo\"\n"
+"parancsot rendszergazdaként."
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "A LILO elindķtįsa"
+
+#: ../../bootlook.pm_.c:248
+msgid "Notice"
+msgstr "Megjegyzés"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "A LILO- és az indķtįsikép-témįk telepķtése megtörtént"
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "A témįkat nem sikerült telepķteni."
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1207,42 +1374,73 @@ msgstr ""
"Jelenleg a(z) %s programot hasznįlja rendszerindķtįsra.\n"
"Kattintson a Beįllķtįs gombra a beįllķtįsvarįzsló elindķtįsįhoz."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Beįllķtįs"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "Indķtįsi kép vįlasztįsa"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Témįk"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+"\n"
+"Vįlasszon egy LILO- és\n"
+"egy indķtįsikép-témįt\n"
+"(egymįstól függetlenül\n"
+"vįlaszthatók)."
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "LILO-képernyõ"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "Indķtįsi kép"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Rendszer-mód"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Rendszerindķtįskor induljon el a grafikus környezet"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ne legyen automatikus bejelentkezés"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Legyen automatikus bejelentkezés (felhasznįlónév, grafikus környezet)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Az /etc/inittab fįjlt nem sikerült olvasįsra megnyitni: %s"
@@ -1286,61 +1484,108 @@ msgstr "Partķcionįlįs elõtt nem készķthetõk képernyõfelvételek"
msgid "Screenshots will be available after install in %s"
msgstr "A képernyõfelvételek a telepķtés utįn itt lesznek elérhetõk: %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Franciaorszįg"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgium"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Cseh Köztįrsasįg"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Németorszįg"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Görögorszįg"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norvégia"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Svédorszįg"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Hollandia"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Olaszorszįg"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Ausztria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Amerikai Egyesült Įllamok"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Ismeretlen modell"
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Śj"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Kiszolgįló"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Csatlakoztatįsi pont"
+
+#: ../../diskdrake/dav.pm_.c:68
+msgid "Please enter the WebDAV server URL"
+msgstr "Adja meg a WebDAV-kiszolgįló URL-jét"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr "Az URL-nek http:// vagy https:// kezdetūnek kell lenni"
+
+#: ../../diskdrake/dav.pm_.c:92
+msgid "Server: "
+msgstr "Kiszolgįló: "
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Csatlakoztatįsi pont: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Beįllķtįsok: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Elõször készķtsen biztonsįgi mentést az adatokról"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Olvassa el figyelmesen!"
@@ -1353,15 +1598,6 @@ msgstr ""
"Ha az aboot-ot fogja hasznįlni, elõször ellenõrizze, hogy maradt-e elég\n"
"hely (legalįbb 2048 szektor) a lemez elején"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Hiba"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Varįzsló"
@@ -1387,7 +1623,7 @@ msgid "Please click on a partition"
msgstr "Kattintson egy partķcióra"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Részletek"
@@ -1415,13 +1651,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Lapozóterület (swap)"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Üres"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Egyéb"
@@ -1429,12 +1665,12 @@ msgstr "Egyéb"
msgid "Filesystem types:"
msgstr "Fįjlrendszer-tķpusok:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Létrehozįs"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tķpus"
@@ -1444,7 +1680,7 @@ msgstr "Tķpus"
msgid "Use ``%s'' instead"
msgstr "Hasznįlja inkįbb ezt: \"%s\""
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Törlés"
@@ -1452,79 +1688,79 @@ msgstr "Törlés"
msgid "Use ``Unmount'' first"
msgstr "Hasznįlja elõször a \"Levįlasztįs\"-t"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"A(z) %s partķció tķpusįnak módosķtįsa utįn a partķción levõ adatok elvesznek"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Vįlasszon egy partķciót"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Vįlasszon egy mįsik partķciót"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Kilépés"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Įtvįltįs szakértõi módba"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Įtvįltįs normįl módba"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Visszavonįs"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Folytassam a mūveletet?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Kilépés mentés nélkül"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Ki akar lépni a programból a partķciós tįbla mentése nélkül?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "El szeretné menteni az /etc/fstab fįjlban végrehajtott módosķtįsokat?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Automatikus helyfoglalįs"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Teljes törlés"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Egyéb"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Merevlemez-jellemzõk"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Mindegyik elsõdleges partķció foglalt"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Nem hozható létre több partķció"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1532,31 +1768,31 @@ msgstr ""
"Tovįbbi partķciók létrehozįsįhoz törölni kell egyet (hogy egy kiterjesztett "
"partķciót létre lehessen hozni)"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "A partķciós tįbla mentése"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "A partķciós tįbla visszatöltése"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "A partķciós tįbla helyreįllķtįsa"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "A partķciós tįbla śjratöltése"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Cserélhetõ lemez automatikus csatlakoztatįsa"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Fįjlvįlasztįs"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1564,11 +1800,11 @@ msgstr ""
"A partķciós tįbla két példįnyįnak mérete eltér!\n"
"Folytassam a mūveletet?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Figyelmeztetés"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1576,129 +1812,116 @@ msgstr ""
"Helyezzen be egy floppylemezt a meghajtóba!\n"
"A lemezen talįlható adatok elvesznek"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Megpróbįlom helyrehozni a partķciós tįblįt"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Részletes informįció"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Csatlakoztatįsi pont"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Beįllķtįsok"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Įtméretezés"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Įthelyezés"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formįzįs"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Csatlakoztatįs"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Hozzįadįs RAID-hez"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Hozzįadįs LVM-hez"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Levįlasztįs"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Eltįvolķtįs RAID-bõl"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Eltįvolķtįs LVM-bõl"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAID módosķtįsa"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Loopback-hez hasznįlva"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Śj partķció létrehozįsa"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Kezdõszektor: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Méret (MB): "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "A fįjlrendszer tķpusa: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Csatlakoztatįsi pont: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Beįllķtįsok: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Nem lehet śj partķciót létrehozni\n"
+"(mivel elérte az elsõdleges partķciók lehetséges maximįlis szįmįt).\n"
+"Tįvolķtson el egy elsõdleges partķciót és hozzon létre egy kiterjesztett "
+"partķciót."
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "El szeretné tįvolķtani a loopback fįjlt?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "A partķciótķpus megvįltoztatįsa"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Melyik fįjlrendszert szeretné?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Konvertįlįs Ext2-rõl Ext3-ra"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hovį szeretné csatlakoztatni a(z) %s loopback fįjlt?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hovį szeretné csatlakoztatni a(z) %s eszközt?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1706,132 +1929,137 @@ msgstr ""
"Nem lehet megszüntetni a csatlakoztatįsi pontot, mert ez egy loopback\n"
"partķció. Elõször tįvolķtsa el a loopback-et."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Hovį szeretné csatlakoztatni ezt: \"%s\"?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "A FAT fįjlrendszer jellemzõinek kiszįmķtįsa"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Įtméretezés"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ezt a partķciót nem lehet įtméretezni"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Készķtsen biztonsįgi mentést errõl a partķcióról"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"A(z) %s partķció įtméretezésekor a partķción talįlható adatok elvesznek"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Adja meg az śj méretet"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Az śj méret (MB-ban): "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Melyik lemezre szeretné įthelyezni?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Szektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Melyik szektorra szeretné įthelyezni?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Įthelyezés"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Partķció įthelyezése..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Vįlassza ki azt a RAID-et, amelyikhez hozzį szeretné adni a lemezt"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "śj"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Vįlassza ki azt az LVM-et, amelyhez hozzį szeretné adni a lemezt"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Az LVM neve?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Ez a partķció nem hasznįlható loopback-hez"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "A loopback fįjl neve: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Adjon meg egy fįjlnevet"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ez a fįjl mįr egy mįsik loopback-hez van rendelve, vįlasszon egy mįsikat"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "A fįjl mįr létezik, hasznįljam?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Csatlakoztatįsi (mount) opciók"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Vegyes"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "eszköz"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "szint"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "szeletméret"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Vigyįzat! Ez a mūvelet adatvesztést okozhat."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Milyen tķpusś partķcionįlįst szeretne?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Szükség van a(z) %s csomagra. Szeretné telepķteni?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1842,7 +2070,7 @@ msgstr ""
"> 1024). Ha a LILO-t hasznįlja, akkor az nem fog mūködni, ha pedig nem\n"
"hasznįlja a LILO-t, akkor nincs szükség a /boot-ra."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1853,7 +2081,7 @@ msgstr ""
"cilinder utįn talįlható, és a rendszerben nincs /boot partķció.\n"
"Ha a LILO-t szeretné hasznįlni, hozzon létre egy /boot partķciót."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1863,44 +2091,44 @@ msgstr ""
"Egyik rendszerindķtó program sem tudja ezt kezelni /boot partķció nélkül,\n"
"ezért mindenképpen hozzon létre egy /boot partķciót."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "A(z) \"%s\" meghajtó partķciótįblįjįnak mentése következik!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "A vįltozįsok csak a rendszer śjraindķtįsakor lépnek életbe"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "A(z) %s partķció formįzįsakor a partķción talįlható adatok elvesznek!"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formįzįs"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "A(z) %s loopback fįjl formįzįsa"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "A(z) %s partķció formįzįsa"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Fįjlok elrejtése"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Fįjlok įthelyezése az śj partķcióra"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1909,83 +2137,83 @@ msgstr ""
"A(z) %s könyvtįr mįr tartalmaz adatot\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Fįjlok įthelyezése az śj partķcióra"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "%s mįsolįsa"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "%s eltįvolķtįsa"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "a(z) %s partķció jelenleg \"%s\"-ként ismert"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Eszköz: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-meghajtó betūjele: %s (ez csak egy tipp)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tķpus: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Név: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Kezdõszektor: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Méret: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s szektor"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "A(z) %d. cilindertõl a(z) %d.-ig\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formįzva\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nincs formįzva\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Csatlakoztatva\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1994,7 +2222,7 @@ msgstr ""
"Loopback fįjl(ok):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2002,27 +2230,27 @@ msgstr ""
"Az alapértelmezett indķtįsi partķció\n"
" (a DOS-nak, nem a LILO-nak)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "%s. szint\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "A szelet mérete: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID lemezek: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "A loopback fįjl neve: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2034,7 +2262,7 @@ msgstr ""
"meghajtóknak van fenntartva,\n"
"ne módosķtson rajta.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2046,64 +2274,59 @@ msgstr ""
"partķció (hogy többféle operįciós\n"
"rendszert lehessen indķtani).\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Méret: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilinder, %s fej, %s szektor\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Informįció: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-lemezek: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "A partķciós tįbla tķpusa: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
msgid "on channel %d id %d\n"
msgstr "csatorna: %d, id: %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Beįllķtįsok: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Fįjlrendszer-titkosķtįsi kulcs"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Vįlasszon fįjlrendszer-titkosķtįsi kulcsot"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ez a titkosķtįsi kulcs tśl egyszerū (legalįbb %d karakter hosszśnak kell "
"lennie)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "A titkosķtįsi kulcsok nem egyeznek"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Titkosķtįsi kulcs"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Titkosķtįsi kulcs (még egyszer)"
@@ -2151,23 +2374,23 @@ msgstr "Tartomįny"
msgid "Search servers"
msgstr "Kiszolgįlók keresése"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formįzįs sikertelen a(z) %s eszközön"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nem tudom, hogyan kell megformįzni a(z) %s eszközt %s tķpusśra"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "a(z) %s partķció ide történõ csatolįsa sikertelen: %s"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "hiba történt a(z) %s levįlasztįsakor: %s"
@@ -2184,33 +2407,33 @@ msgstr "/usr-rel"
msgid "server"
msgstr "kiszolgįló"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nem lehet JFS-t hasznįlni 16 MB-nįl kisebb partķción"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nem lehet ReiserFS-t hasznįlni 32 MB-nįl kisebb partķción"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "A csatlakoztatįsi pontoknak /-rel kell kezdõdni"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mįr van egy partķció amelynek %s a csatlakoztatįsi pontja\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nem hasznįlható LVM logikai kötet a(z) %s csatlakoztatįsi ponthoz"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Ennek a könyvtįrnak a gyökér-fįjlrendszeren belül kell maradnia"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2218,25 +2441,25 @@ msgstr ""
"Valódi fįjlrendszert (Ext2/Ext3, ReiserFS, XFS vagy JFS) kell hasznįlni "
"ennél a csatolįsi pontnįl\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Titkosķtott fįjlrendszer nem hasznįlható ehhez a csatolįsi ponthoz: %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Nincs elég szabad terület az automatikus helyfoglalįshoz"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Nincs mit tenni"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Hiba történt %s ķrįsra való megnyitįsįnįl: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2244,139 +2467,65 @@ msgstr ""
"Hiba történt - nincs olyan meghajtó, amelyen śj fįjlrendszert lehetne "
"létrehozni. Ellenõrizze a gépben talįlható eszközöket."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Egyetlen partķció sincs!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-msgid "Auto-detect"
-msgstr "Automatikus felderķtés"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr "Ismeretlen|Įltalįnos"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Ismeretlen|CPH05X (bt878) [több gyįrtó]"
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Ismeretlen|CPH06X (bt878) [több gyįrtó]"
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-"A legtöbb modern tévékįrtya esetén a Linux-kernel bttv modulja automatikusan "
-"meghatįrozza a megfelelõ paramétereket.\n"
-"Ha az Ön kįrtyįjįt a rendszer helytelenül hatįrozta meg, akkor itt "
-"beįllķtható a megfelelõ tuner- és kįrtyatķpus. Ha szükséges, adja meg a "
-"tévékįrtya-paramétereket."
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr "Kįrtyatķpus:"
-
-#: ../../harddrake/bttv.pm_.c:197
-msgid "PLL setting :"
-msgstr "PLL-beįllķtįs:"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr "Felvételi pufferek szįma:"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "felvételi pufferek szįma mmap-es felvétel esetére"
-
-#: ../../harddrake/bttv.pm_.c:199
-msgid "Tuner type :"
-msgstr "Tuner-tķpus:"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr "Rįdiótįmogatįs:"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr "rįdiótįmogatįs bekapcsolįsa"
-
-#: ../../harddrake/ui.pm_.c:12
-msgid "/_Quit"
-msgstr "/_Kilépés"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Segķtség"
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr "/_Segķtség..."
-
#: ../../harddrake/ui.pm_.c:15
-msgid "/_About..."
-msgstr "/_Névjegy..."
-
-#: ../../harddrake/ui.pm_.c:22
msgid "Model"
msgstr "Modell"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
msgstr "merevlemez-modell"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
msgstr "Csatorna"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr "EIDE-/SCSI-csatorna"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr "Busz"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
"ez a fizikai busz, amelyre az eszköz csatlakoztatva van (PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr "az eszközt kezelõ linuxos kernelmodul"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr "Médiaosztįly"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr "a hardvereszköz osztįlya"
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Leķrįs"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr "az eszköz leķrįsa"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
msgstr "Busz-azonosķtįs"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
@@ -2384,11 +2533,11 @@ msgstr ""
"- PCI- és USB-eszközök: gyįrtó, eszköz, algyįrtó, aleszköz PCI-/USB-"
"azonosķtók"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr "A buszon elfoglalt hely"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
@@ -2398,98 +2547,176 @@ msgstr ""
"- EIDE-eszközök: \"slave\" vagy \"master\" (mįsodik illetve elsõ meghajtó)\n"
"- SCSI-eszközök: SCSI-busz és SCSI eszközazonosķtók"
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
msgid "Old device file"
msgstr "Régi eszközfįjl"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr "a dev csomagban hasznįlt régi statikus eszköznév"
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
msgid "New devfs device"
msgstr "Śj devfs-eszköz"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr "a kernelbeli devfs įltal elõįllķtott śj dinamikus eszköznév"
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
msgstr "Gombok szįma"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr "az eszköz gyįrtójįnak neve"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Kilépés"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Segķtség"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Segķtség..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "HardDrake segķtség"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+"A mezõk leķrįsa:\n"
+"\n"
+
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_Névjegy..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "A HardDrake névjegye"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"HardDrake - Mandrake hardverbeįllķtįsi program.\n"
+"Verzió:"
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Szerzõ:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
msgstr "HardDrake2 verzió "
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
msgstr "A megtalįlt hardver"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Modul beįllķtįsa"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
msgstr "Informįciók"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr "Beįllķtóprogram indķtįsa"
-#: ../../harddrake/ui.pm_.c:158
-msgid "Configure module"
-msgstr "Modul beįllķtįsa"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr "Felderķtés folyamatban"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Egy kis türelmet kérek"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr "elsõdleges"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
msgstr "mįsodlagos"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr "A modul összes paramétere beįllķtható itt."
+
+#: ../../harddrake/ui.pm_.c:192
#, c-format
msgid "Running \"%s\" ..."
msgstr "\"%s\" végrehajtįsa..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr "A HardDrake névjegye"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Automatikus felderķtés"
-#: ../../harddrake/ui.pm_.c:280
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
-msgstr ""
-"HardDrake - Mandrake hardverbeįllķtįsi program.\n"
-"Verzió:"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Ismeretlen|Įltalįnos"
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
-msgstr "Szerzõ:"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Ismeretlen|CPH05X (bt878) [több gyįrtó]"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr "HardDrake segķtség"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Ismeretlen|CPH06X (bt878) [több gyįrtó]"
-#: ../../harddrake/ui.pm_.c:287
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"Description of the fields:\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-"A mezõk leķrįsa:\n"
-"\n"
+"A legtöbb modern tévékįrtya esetén a Linux-kernel bttv modulja automatikusan "
+"meghatįrozza a megfelelõ paramétereket.\n"
+"Ha az Ön kįrtyįjįt a rendszer helytelenül hatįrozta meg, akkor itt "
+"beįllķtható a megfelelõ tuner- és kįrtyatķpus. Ha szükséges, adja meg a "
+"tévékįrtya-paramétereket."
+
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Kįrtyatķpus:"
+
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Tuner-tķpus:"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "Felvételi pufferek szįma:"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "felvételi pufferek szįma mmap-es felvétel esetére"
+
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "PLL-beįllķtįs:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Rįdiótįmogatįs:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "rįdiótįmogatįs bekapcsolįsa"
#: ../../help.pm_.c:13
msgid ""
@@ -4168,12 +4395,13 @@ msgstr ""
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" - Kezdeti RAM-diszk: ez az opció hasznįlható modulok betöltésére még\n"
-"azelõtt, hogy a rendszerindķtįsi eszköz elérhetõ lenne, vagy egy\n"
-"RAM-diszkes fįjl betöltésére hibaelhįrķtįsnįl.\n"
+" - Indķtįsi RAM-diszk: a rendszerindķtįsi eszköz elérhetõvé vįlįsa elõtt\n"
+"történõ modulbetöltésre hasznįlható, tovįbbį indķtįsi probléma esetén egy\n"
+"RAM-diszkes fįjl betöltésére.\n"
"\n"
-" - A RAM-diszk mérete: az alapértelmezett RAM-diszk-méret įltalįban 4096\n"
-"bįjt. Ha nagyobb méretet szeretne, hasznįlja ezt a lehetõséget.\n"
+" - Az indķtįsi RAM-diszk mérete: az alapértelmezett RAM-diszk-méret\n"
+"įltalįban 4096 bįjt. Ha nagyobb méretet szeretne, hasznįlja ezt a\n"
+"lehetõséget.\n"
"\n"
" - Ķrható-olvasható: įltalįban a gyökérpartķció csatlakoztatįsa elõször\n"
"csak-olvasható módban történik, hogy az aktivįlįs elõtt ellenõrizni\n"
@@ -4343,7 +4571,7 @@ msgstr ""
"Kattintson a \"Mégsem\" gombra, ha nem kķvįnja végrehajtani a mūveletet\n"
"(a lemezen talįlható partķciók és adatok ez esetben nem vįltoznak)."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4354,7 +4582,7 @@ msgstr ""
"azt jelenti, hogy az indķtólemez nincs összhangban a telepķtési médiummal. "
"Készķtsen egy śjabb indķtólemezt."
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Meg kell formįzni ezt is: %s"
@@ -4383,21 +4611,21 @@ msgstr ""
"\n"
"Biztosan telepķteni szeretné a kiszolgįlóprogramo(ka)t?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Nem lehet broadcast-ot hasznįlni NIS tartomįny nélkül"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
"Helyezzen egy FAT fįjlrendszerre formįzott floppyt a(z) \"%s\" meghajtóba"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Ezen a floppyn nincs FAT fįjlrendszer"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4405,7 +4633,7 @@ msgstr ""
"Ha fel akarja késõbb hasznįlni ezt a csomagkijelölést, akkor a telepķtést "
"\"linux defcfg=floppy\" paraméterrel indķtsa el."
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Hiba a(z) %s fįjl olvasįsa közben"
@@ -4443,7 +4671,7 @@ msgstr ""
"\n"
"Ennek ellenére tovįbb szeretne lépni?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Kell egy FAT partķció a /boot/efi ponthoz csatlakoztatva"
@@ -4624,12 +4852,12 @@ msgstr ""
"Hiba történt, de nem tudom megfelelõen lekezelni.\n"
"Folytatįs az Ön sajįt felelõsségére."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "A következõ csatolįsi pont kétszer van megadva: %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4642,12 +4870,12 @@ msgstr ""
"parancs segķtségével tesztelheti le:\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Üdvözöljük - %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nincs elérhetõ floppy-meghajtó"
@@ -4657,7 +4885,7 @@ msgstr "Nincs elérhetõ floppy-meghajtó"
msgid "Entering step `%s'\n"
msgstr "A következõ lépés: \"%s\"\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4669,78 +4897,78 @@ msgstr ""
"szöveges módś telepķtéssel: CD-rõl való rendszerindķtįst követõen nyomjon\n"
"\"F1\"-et, majd ķrja be azt, hogy \"text\"."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Telepķtési mód"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Vįlasszon a következõ telepķtési osztįlyok közül:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Csomag-csoportok kivįlasztįsa"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Csomagok egyedi kivįlasztįsa"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Összméret: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Hibįs csomag"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Név: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Verzió: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Méret: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Fontossįg: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nem vįlaszthatja ki ezt a csomagot, mert nincs elég hely a merevlemezen."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "A telepķtõ a következõ csomagokat fogja telepķteni"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "A telepķtõ a következõ csomagokat tįvolķtja el"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Ez a csomag nem jelölhetõ ki illetve nem törölhetõ a kijelölése"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ez egy kötelezõ csomag, nem lehet megszüntetni a kijelölését"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Nem törölhetõ ennek a csomagnak a kijelölése, mert mįr telepķtve van"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4748,75 +4976,75 @@ msgstr ""
"Ezt a csomagot frissķteni kell.\n"
"Biztos, hogy törölni kķvįnja a kijelölését?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
"Nem törölheti ennek a csomagnak a kijelölését. Ez a csomag frissķtendõ!"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Automat. kijelölt csomagok mutatįsa"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Telepķtés"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Betöltés/floppyra mentés"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "A csomagkivįlasztįs frissķtése"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Minimįlis telepķtés"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Vįlassza ki a telepķtendõ csomagokat"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Telepķtés"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Becslés"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Hįtralévõ idõ "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Egy kis türelmet kérek; a telepķtés elõkészķtése folyik..."
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d csomag"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "A(z) %s csomag telepķtése"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Elfogadom"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Nem fogadom el"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4831,17 +5059,17 @@ msgstr ""
"Ha nincs ilyen lemeze, nyomja meg a \"Mégsem\" gombot, ķgy errõl a CD-rõl\n"
"nem történik telepķtés."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Ettõl függetlenül folytassam?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Hiba történt a csomagok rendezésekor:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Hiba történt a csomagok telepķtésekor:"
@@ -5179,104 +5407,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr "Biztos abban, hogy elutasķtja a licencet?"
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Billentyūzet"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Vįlasszon billentyūzetkiosztįst."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Itt talįlható a billentyūzetek listįja"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Melyik telepķtési módot vįlasztja?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Telepķtés/frissķtés"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Śj telepķtés vagy frissķtés?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Ajįnlott"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Szakértõ"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Frissķtés"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Csak a csomagok frissķtése"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Adja meg az egér tķpusįt."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Egér port"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Vįlassza ki, hogy melyik soros porthoz csatlakozik az egere."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Egérgomb-emulįció"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "A 2. gomb emulįlįsa"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "A 3. gomb emulįlįsa"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kįrtyįk beįllķtįsa..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE beįllķtįsok"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "Nincs elérhetõ partķció"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Csatolįsi pontok keresése a partķciókon"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Vįlassza ki a csatolįsi pontokat"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5293,7 +5521,7 @@ msgstr ""
"\n"
"Törölni szeretné az összes partķciót?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5301,7 +5529,7 @@ msgstr ""
"A DiskDrake nem tudta rendesen beolvasni a partķciós tįblįt.\n"
"Folytatįs az Ön sajįt felelõsségére."
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5310,70 +5538,72 @@ msgstr ""
"folytatható, de a rendszer indķtįsįhoz létre kell hozni egy rendszerindķtó "
"partķciót a DiskDrake-kel."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "A gyökérpartķció nem talįlható, ezért nem lehet elvégezni a frissķtést"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Gyökérpartķció"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Melyik a gyökérpartķció (/) a rendszerben?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"A partķciós tįbla vįltozįsai csak a gép śjraindķtįsa utįn lépnek érvénybe"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Vįlassza ki a formįzandó partķciókat"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Ellenõrizzem a rossz blokkokat?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "A partķciók formįzįsa"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s fįjl létrehozįsa és formįzįsa"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"A(z) \"%s\" fįjlrendszer ellenõrzése hibįkat eredményezett. Szeretné "
+"kijavķtani a hibįkat? (legyen óvatos, mivel ez adatvesztéshez is vezethet)"
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"A lapozóterület mérete nem elég nagy. Növelje meg a telepķtés befejezéséhez."
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
"A rendelkezésre įlló csomagok keresése és az RPM-adatbįzis śjraépķtése..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "A rendelkezésre įlló csomagok keresése..."
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "A frissķtendõ csomagok keresése..."
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
msgid "Looking at packages already installed..."
msgstr "A mįr telepķtett csomagok vizsgįlata..."
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "A frissķtendõ csomagok keresése..."
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5381,7 +5611,7 @@ msgid ""
msgstr ""
"A rendszeren nem maradt elég hely a telepķtéshez vagy frissķtéshez (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5390,35 +5620,35 @@ msgstr ""
"csomagkijelölést vagy a jelenlegi kijelölést szeretné elmenteni.\n"
"A formįtum ugyanaz, mint az automatikus telepķtõfloppyknįl."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Betöltés floppyról"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Betöltés floppyról"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Csomagkijelölés"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Tegye be a csomagkijelölést tartalmazó floppyt a meghajtóba"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Mentés floppyra"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "A kijelölt összméret nagyobb, mint a rendelkezésre įlló hely"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "A telepķtés tķpusa"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5426,15 +5656,15 @@ msgstr ""
"Egyetlen csomagcsoportot sem jelölt ki.\n"
"Vįlassza ki, milyen fajta minimįlis telepķtést szeretne."
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "X-szel együtt"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Alapvetõ dokumentįcióval (javasolt)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Valóban minimįlis telepķtés (urpmi sincs)"
@@ -5455,11 +5685,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "A(z) \"%s\" cķmkéjū CD"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "A telepķtés elõkészķtése"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5468,21 +5698,21 @@ msgstr ""
"A(z) %s csomag telepķtése\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Telepķtés utįni beįllķtįsok"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Tegye be a rendszerindķtó floppyt a(z) \"%s\" meghajtóba"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Tegye be a frissķtõmodulokat tartalmazó floppyt a(z) \"%s\" meghajtóba"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5554,7 +5784,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5572,184 +5802,204 @@ msgstr ""
"\n"
"Szeretné feltelepķteni a frissķtéseket ?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kapcsolódįs a Mandrake Linux webkiszolgįlójįhoz; az elérhetõ "
"tükörkiszolgįlók listįjįnak lekérdezése..."
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Vįlasszon tükörkiszolgįlót, ahonnan letölti a csomagokat"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Kapcsolatfelvétel a tükörkiszolgįlóval; az elérhetõ csomagok listįjįnak "
"letöltése..."
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Melyik idõzónįt vįlasztja?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "A gép órįja GMT-idõt mutat"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatikus idõszinkronizįció (NTP-vel)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP-kiszolgįló"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Tįvoli CUPS-kiszolgįló"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Nincs nyomtató"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Van ISA hangkįrtyįja?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"A hangkįrtya beįllķtįsįhoz futtassa az \"sndconfig\" programot a telepķtés "
"utįn"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"A telepķtõ nem talįlt hangkįrtyįt. Futtassa a \"harddrake\" programot a "
"telepķtés utįn"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Összefoglalįs"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Egér"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Idõzóna"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Nyomtató"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN-kįrtya"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Hangkįrtya"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Tévékįrtya"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr "Windows PDC"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Windowsos tartomįny"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "Helyi fįjlok"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Rendszergazdai (root) jelszó beįllķtįsa"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Nincs jelszó"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ez a jelszó tśl rövid (legalįbb %d karakter hosszśnak kell lennie)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Felhasznįlóazonosķtįs"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "LDAP-alapś azonosķtįs"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP alap-DN"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP-kiszolgįló"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "NIS-alapś azonosķtįs"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS-tartomįny"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS-kiszolgįló"
#: ../../install_steps_interactive.pm_.c:1138
-msgid "Authentication Windows PDC"
-msgstr "Windows PDC azonosķtįs"
-
-#: ../../install_steps_interactive.pm_.c:1139
-msgid "Windows Domain"
-msgstr "Windowsos tartomįny"
-
-#: ../../install_steps_interactive.pm_.c:1140
-msgid "PDC Server Name"
-msgstr "PDC-kiszolgįló neve"
-
-#: ../../install_steps_interactive.pm_.c:1142
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 /"
-"add and reboot the server"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
"Hogy ez mūködjön egy W2K PDC-vel, ahhoz az adminisztrįtornak valószķnūleg "
-"végre kell hajtania a következõ parancsot, majd śjra kell indķtani a "
-"kiszolgįlót: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
-"everyone /add"
+"végre kell hajtania a következõ windowsos parancsot, majd śjra kell indķtani "
+"a kiszolgįlót: 'net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add'.\n"
+"Szükség lesz egy tartomįnyadminisztrįtor nevére és jelszavįra is ahhoz, hogy "
+"a gépet csatlakoztatni lehessen a windowsos tartomįnyhoz.\n"
+"Ha a hįlózat még nincs beįllķtva, akkor a telepķtõ a hįlózatbeįllķtįsi "
+"lépést követõen fogja megkķsérelni a tartomįnyhoz való csatlakozįst.\n"
+"Ha a beįllķtįs nem sikerül, és a tartomįnyhitelesķtés nem mūködik, akkor a "
+"rendszer indķtįsįt követõen futtassa az 'smbpasswd -j TARTOMĮNY -U "
+"FELHASZNĮLÓ%JELSZÓ' parancsot a windowsos tartomįny és a megfelelõ "
+"adminisztrįtori név illetve jelszó hasznįlatįval.\n"
+"A 'wbinfo -t' parancs hasznįlatįval letesztelhetõ, hogy a hozzįférés "
+"(illetve a létrehozott gépazonosķtó) mūködik-e."
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "Authentication Windows Domain"
+msgstr "Hitelesķtési Windows-tartomįny"
+
+#: ../../install_steps_interactive.pm_.c:1142
+msgid "Domain Admin User Name"
+msgstr "Tartomįnyadminisztrįtor felhasznįlói neve"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
+msgstr "Tartomįnyadminisztrįtor jelszava"
+
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5777,19 +6027,19 @@ msgstr ""
"Ha szeretne indķtólemezt készķteni, helyezzen be egy floppyt az\n"
"elsõ meghajtóba és nyomja meg az \"OK\" gombot."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Elsõ floppy-meghajtó"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Mįsodik floppy-meghajtó"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Kihagyįs"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5813,7 +6063,7 @@ msgstr ""
"rendszerhiba utįn. Szeretne most indķtólemezt készķteni a rendszerhez?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5827,30 +6077,30 @@ msgstr ""
"ezért 1,44 megabįjtos floppylemezbõl valószķnūleg nem készķthetõ\n"
"indķtólemez - az XFS nagyméretū meghajtóprogramot igényel.)"
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Nincs elérhetõ floppy-meghajtó"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Vįlassza ki azt a floppy-meghajtót, amelyet az indķtólemez elkészķtéséhez "
"hasznįlni kķvįn"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Tegyen egy floppyt a(z) \"%s\" meghajtóba"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Indķtólemez készķtése..."
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Rendszerbetöltõ elõkészķtése..."
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5862,11 +6112,11 @@ msgstr ""
"A telepķtés folytatható, de az indķtįshoz\n"
"a BootX-et kell majd hasznįlni."
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Szeretné az aboot-ot hasznįlni?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5875,15 +6125,15 @@ msgstr ""
"Próbįljam śjra a telepķtést akkor is, ha ez esetleg tönkreteszi az elsõ\n"
"partķciót?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Rendszerindķtó program telepķtése"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "A rendszerbetöltõ telepķtése nem sikerült. A hiba a következõ:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5900,17 +6150,17 @@ msgstr ""
" Majd gépelje be ezt: shut-down\n"
"A következõ indķtįs utįn meg kell jelennie a promptnak."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Tegyen egy üres floppyt a(z) \"%s\" meghajtóba"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Automatikus telepķtõfloppy készķtése..."
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5920,7 +6170,7 @@ msgstr ""
"\n"
"Biztos, hogy ki akar lépni?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5952,15 +6202,15 @@ msgstr ""
"A rendszer beįllķtįsįval kapcsolatban a Hivatalos Mandrake Linux\n"
"Felhasznįlói Kézikönyvben talįl tovįbbi informįciókat."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Automatikus telepķtõfloppy készķtése"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5975,15 +6225,15 @@ msgstr ""
"\n"
"Lehetõség van a telepķtés śjrajįtszįsįra is.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatikus"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Śjrajįtszįs"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Csomagösszeįllķtįs mentése"
@@ -6010,24 +6260,35 @@ msgstr "nincs \"consolehelper\""
msgid "Choose a file"
msgstr "Vįlasszon egy fįjlt"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Speciįlis"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Alapvetõ"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Elõzõ"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Következõ"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Nem megfelelõ vįlasztįs, próbįlja meg śjra\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Melyiket vįlasztja? (az alapértelmezés: %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6036,37 +6297,37 @@ msgstr ""
"Kitöltendõ bejegyzések:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Melyiket vįlasztja? (0/1, az alapértelmezés: \"%s\") "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "\"%s\" gomb: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Szeretne rįkattintani erre a gombra?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr " üres bejegyzéshez adjon meg \"void\"-ot"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Melyiket vįlasztja? (az alapértelmezés: \"%s\"%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Sok vįlasztįsi lehetõség van (%s).\n"
# Number is used to designate approximately the range of entries
# you wish to edit because all of them would not fit on-screen.
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6076,7 +6337,7 @@ msgstr ""
"vagy csak nyomja le az Enter billentyūt a tovįbblépéshez.\n"
"Melyiket vįlasztja? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6085,327 +6346,379 @@ msgstr ""
"=> Megjegyzés: egy cķmke módosult:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Śjraküldés"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "cseh (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "német"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak-féle"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "spanyol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "finn"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "francia"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "norvég"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "lengyel"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "orosz"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "svéd"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "angol (UK) billentyūzet"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "USA-billentyūzet"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "albįn"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "örmény (régi)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "örmény (ķrógép)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "örmény (fonetikus)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "azerbajdzsįni (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "belga"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Engedélyezés"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "bolgįr (fonetikus)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "bolgįr (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "észt"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "fehérorosz"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "svįjci (német kiosztįs)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "svįjci (francia kiosztįs)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "cseh (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "német (\"dead key\" nélkül)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "dįn"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak-féle (USA)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak-féle (norvég)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak-féle (svéd)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "észt"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "grśz (\"orosz\" kiosztįs)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "grśz (\"latin\" kiosztįs)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "görög"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "magyar"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "horvįt"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "izraeli"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "izraeli (fonetikus)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "irįni"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "izlandi"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "olasz"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "japįn 106-billentyūs"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "koreai billentyūzet"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "latin-amerikai"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "lett"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "litvįn AZERTY (régi)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "litvįn AZERTY (śj)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "litvįn \"szįmsor\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "litvįn \"fonetikus\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "lett"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "macedón"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "szerb (cirill)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "holland"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "lengyel (qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "lengyel (qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "portugįl"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "kanadai (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "romįn (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "romįn (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "orosz (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "szlovén"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "szlovįk (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "szlovįk (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "szerb (cirill)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "thaiföldi billentyūzet"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "tadzsik billentyūzet"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "török (hagyomįnyos \"F\" modell)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "török (modern \"Q\" modell)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "ukrįn"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "USA-billentyūzet (nemzetközi)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "vietnįmi \"szįmsor\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "jugoszlįv (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Jobb Alt gomb"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "A két Shift gomb egyszerre"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Control és Shift gombok egyszerre"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock gomb"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl és Alt gombok egyszerre"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt és Shift gombok egyszerre"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "\"Menu\" gomb"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Bal \"Windows\" gomb"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Jobb \"Windows\" gomb"
@@ -6414,35 +6727,35 @@ msgstr "Jobb \"Windows\" gomb"
msgid "Circular mounts %s\n"
msgstr "Körkörös csatlakoztatįs - %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Elõször törölje az összes logikai kötetet\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
msgid "a number"
msgstr "egy szįm"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "%d darab, vesszõvel elvįlasztott szįm"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr "%d darab, vesszõvel elvįlasztott sztring"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr "vesszõvel elvįlasztott szįmok"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
msgstr "vesszõvel elvįlasztott sztringek"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"A 2.2-es kernelekhez nincsen PCMCIA-tįmogatįs. Hasznįljon 2.4-es kernelt."
@@ -6546,51 +6859,43 @@ msgstr "egyik sem"
msgid "No mouse"
msgstr "nincs egér"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Az egér letesztelése"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Az egér aktivįlįsįhoz "
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "MOZGASSA AZ EGÉRGÖRGÕT!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Befejezés"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Következõ ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Elõzõ"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Elfogadja?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Informįció"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "A fa kibontįsa"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "A fa összecsukįsa"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Vįltįs sima és csoportok szerint rendezett nézet között"
@@ -6613,6 +6918,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel Speed Touch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr "ECI Hi-Focus"
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "DHCP hasznįlata"
@@ -6640,7 +6949,7 @@ msgstr ""
"Nem talįlható Ethernet hįlózati kįrtya a rendszerben.\n"
"Nem tudom beįllķtani ezt a kapcsolattķpust."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Hįlózati csatoló kivįlasztįsa"
@@ -6655,7 +6964,7 @@ msgstr ""
msgid "no network card found"
msgstr "nem talįltam hįlózati kįrtyįt"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Hįlózat beįllķtįsa"
@@ -6670,7 +6979,7 @@ msgstr ""
"Néhįny DHCP-kiszolgįló csak a gépnév megadįsa utįn hasznįlható.\n"
"A teljes nevet kell beķrni, példįul: \"gep.vallalat.hu\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Gépnév"
@@ -6698,7 +7007,7 @@ msgstr "Milyen tķpusś az ISDN-kapcsolat?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6825,43 +7134,43 @@ msgstr "Vįlassza ki, hogy melyik soros portra csatlakozik a modeme."
msgid "Dialup options"
msgstr "Modemes csatlakozįs beįllķtįsai"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Csatlakozįs neve"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefonszįm"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Felhasznįlónév"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Szkript-alapś"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminįl-alapś"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Tartomįnynév"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Elsõdleges DNS-kiszolgįló (nem kötelezõ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Mįsodlagos DNS-kiszolgįló (nem kötelezõ)"
@@ -6973,13 +7282,13 @@ msgstr "Adja meg a beįllķtani kķvįnt profil nevét"
msgid "Use auto detection"
msgstr "Automatikus detektįlįs"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Szakértõi mód"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Eszközök keresése..."
@@ -7095,7 +7404,7 @@ msgstr ""
"Tesztelje le a kapcsolatot a net_monitor vagy az mcc hasznįlatįval. Ha a "
"kapcsolat nem mūködik, esetleg indķtsa el śjra a beįllķtįst."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7106,7 +7415,7 @@ msgstr ""
"Elég elfogadni a mįr meglévõ beįllķtįsokat.\n"
"A lenti mezõk módosķtįsįval felül lehet bķrįlni a beįllķtįsokat."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7116,42 +7425,42 @@ msgstr ""
"Minden mezõbe IP-cķmet ķrjon pontozott decimįlis formįtumban\n"
"(pl.: 192.169.10.11)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "A(z) %s hįlózati eszköz beįllķtįsa"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (meghajtó - %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-cķm"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Hįlózati maszk"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatikus IP-cķm"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Indķtįs rendszerbetöltésnél"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "Az IP-cķm formįtuma 1.2.3.4 legyen"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7162,40 +7471,40 @@ msgstr ""
"A teljes nevet kell beķrni, példįul: \"mybox.mylab.myco.com\".\n"
"Megadhatja az įtjįró (gateway) IP-cķmét is, ha van olyan."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS-kiszolgįló"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Įtjįró (példįul %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Įtjįró-eszköz"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxy-beįllķtįsok"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "A hįlózati kįrtya azonosķtójįnak követése (laptopoknįl hasznos)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "A proxy valami ilyen kell, hogy legyen: http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "A proxy valami ilyen kell, hogy legyen: ftp://..."
@@ -7207,7 +7516,7 @@ msgstr "Internet-beįllķtįsok"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Kipróbįljuk az internetkapcsolatot most?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "A kapcsolat ellenõrzése..."
@@ -7235,43 +7544,43 @@ msgstr "A kapcsolat beįllķtįsa"
msgid "Please fill or check the field below"
msgstr "Töltse ki vagy ellenõrizze az alįbbi mezõket"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Kįrtya IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Kįrtya DMA"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Kįrtya IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Kįrtya IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Kįrtya IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Az Ön sajįt telefonszįma"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "A szolgįltató neve (pl. provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "A szolgįltató telefonszįma"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Elsõdleges DNS-kiszolgįló (nem kötelezõ)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Mįsodlagos DNS-kiszolgįló (nem kötelezõ)"
@@ -7279,28 +7588,28 @@ msgstr "Mįsodlagos DNS-kiszolgįló (nem kötelezõ)"
msgid "Choose your country"
msgstr "Vįlassza ki az orszįgot"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Tįrcsįzįsi mód"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Csatlakozįsi sebesség"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "A csatlakozįs vįrakozįsi ideje (mįsodpercben)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Felhasznįlónév"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Jelszó"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr "Egyesült Kirįlysįg"
@@ -7336,7 +7645,7 @@ msgstr "Hibįs mentésfįjl"
msgid "Error writing to file %s"
msgstr "Hiba a(z) %s fįjl ķrįsa közben"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7347,6 +7656,12 @@ msgstr ""
"Ez azt jelenti, hogy a lemezre való ķrįs tönkreteheti a meghajtó \n"
"adattartalmįt."
+# The "Importance" ratings:
+# 5: "must have"
+# 4: "important"
+# 3: "very nice"
+# 2: "nice"
+# 1: "maybe"
#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "nagyon fontos"
@@ -7383,7 +7698,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7411,7 +7726,7 @@ msgstr "Tįvoli nyomtató"
msgid "Printer on remote CUPS server"
msgstr "Tįvoli CUPS-nyomtató"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Tįvoli lpd-nyomtató"
@@ -7427,7 +7742,7 @@ msgstr "SMB/Windows 95/98/NT-nyomtató"
msgid "Printer on NetWare server"
msgstr "NetWare-nyomtató"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "A nyomtatóeszköz URI-ja"
@@ -7435,110 +7750,110 @@ msgstr "A nyomtatóeszköz URI-ja"
msgid "Pipe job into a command"
msgstr "A feladat kimenetének įtirįnyķtįsa egy parancsba"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Ismeretlen modell"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Helyi nyomtatók"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Tįvoli nyomtatók"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " ezen a pįrhuzamos porton: \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB nyomtató \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", többfunkciós eszköz ezen a pįrhuzamos porton: \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", többfunkciós eszköz USB-n"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", többfunkciós eszköz HP JetDirect-en"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", többfunkciós eszköz"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", nyomtatįs ide: %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "ezen az LPD kiszolgįlón: \"%s\", nyomtató: \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " ezen az LPD kiszolgįlón: \"%s\", nyomtató: \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
-msgstr ", TCP/IP gép \"%s\", port: %s"
+msgstr ", TCP/IP gép: \"%s\", port: %s"
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "ezen a Windows kiszolgįlón: \"%s\", megosztįs: \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " ezen az SMB/Windows kiszolgįlón: \"%s\", megosztįs: \"%s\""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "ezen a Novell kiszolgįlón: \"%s\", nyomtató: \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " ezen a Novell kiszolgįlón: \"%s\", nyomtató: \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", ezzel a paranccsal: %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "\"Nyers\" nyomtató (nincs meghajtóprogram)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(itt: %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(ezen a gépen)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Ezen a CUPS-kiszolgįlón: \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (alapértelmezés)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Vįlassza ki a nyomtató csatlakozįsįnak tķpusįt"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Hogyan van a nyomtató csatlakoztatva?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7548,15 +7863,19 @@ msgstr ""
"A tįvoli CUPS-nyomtatókat nem kell beįllķtani, azokat a program "
"automatikusan felismeri."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Automatikus nyomtatófelderķtés (helyi, TCP/socket és SMB nyomtatók)"
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS-beįllķtįsok"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Adja meg a CUPS-kiszolgįlót"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7576,7 +7895,7 @@ msgstr ""
"lehessen kérdezni a nyomtatóinformįciókat. Mįskülönben hagyja üresen ezen "
"mezõket."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7593,32 +7912,32 @@ msgstr ""
"Ne felejtse ezutįn śjraindķtani a CUPS szolgįltatįst (példįul a \"service "
"cups restart\" paranccsal)."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "Az IP-cķm formįtuma 192.168.1.20 legyen"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "A portnak egész szįmnak kell lennie!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS-kiszolgįló IP-cķme"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Automatikus CUPS-beįllķtįs"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Nyomtató hozzįadįsa"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7640,50 +7959,101 @@ msgstr ""
"Hozzįférést nyśjt az elérhetõ nyomtatómeghajtókhoz és a meghajtóprogramok "
"beįllķtįsaihoz, tovįbbį a nyomtatók kapcsolattķpusįt is képes beįllķtani."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Helyi nyomtató"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Üdvözli a nyomtatóbeįllķtó varįzsló.\n"
+"\n"
+"A varįzsló segķtséget nyśjt a szįmķtógéphez csatlakoztatott, a hįlózaton "
+"keresztül elérhetõ és a tįvoli windowsos gépekre csatlakoztatott nyomtatók "
+"telepķtéséhez.\n"
+"\n"
+"Ha van nyomtató csatlakoztatva ehhez a szįmķtógéphez, kapcsolja be azt, hogy "
+"felderķthetõ legyen a tķpusa. A hįlózati nyomtatókat és az azokhoz "
+"kapcsolódó esetleges windowsos szįmķtógépeket is be kell kapcsolni - a "
+"nyomtatókat a megfelelõ géphez csatlakoztatva.\n"
+"\n"
+"A helyi és a hįlózati nyomtatók felderķtése együttesen több idõt vesz "
+"igénybe, mint csak a helyi nyomtatóké, ezért ha nincs szükség a hįlózati "
+"nyomtatókra, akkor kapcsolja ki a hįlózati és/vagy a windowsos gépre "
+"csatlakozó nyomtatók felderķtését.\n"
+"\n"
+" A folytatįshoz kattintson a \"Következõ\" gombra. Ha viszont most nem "
+"kķvįnja telepķteni a nyomtatókat, akkor a \"Mégsem\" gombra kattintson."
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
"Üdvözli a nyomtatóbeįllķtó varįzsló.\n"
"\n"
-"A varįzsló segķtséget nyśjt a szįmķtógéphez csatlakoztatott nyomtatók "
-"beįllķtįsįhoz.\n"
+"A varįzsló segķtséget nyśjt a szįmķtógéphez csatlakoztatott és a hįlózaton "
+"keresztül elérhetõ nyomtatók telepķtéséhez.\n"
+"\n"
+"Ha van nyomtató csatlakoztatva ehhez a szįmķtógéphez, kapcsolja be azt, hogy "
+"felderķthetõ legyen a tķpusa. A hįlózati nyomtatókat is csatlakoztatni kell "
+"és be kell kapcsolni.\n"
"\n"
-"Csatlakoztassa a megfelelõ nyomtatókat a géphez, és kapcsolja be azokat. A "
-"folytatįshoz kattintson a \"Következõ\" gombra; ha viszont nem kķvįnja most "
-"beįllķtani a nyomtatókat, akkor kattintson a \"Mégsem\" gombra.\n"
+"A helyi és a hįlózati nyomtatók felderķtése együttesen több idõt vesz "
+"igénybe, mint csak a helyi nyomtatóké, ezért ha nincs szükség a hįlózati "
+"nyomtatókra, akkor kapcsolja ki a hįlózati nyomtatók felderķtését.\n"
"\n"
-"Bizonyos szįmķtógépek lefagyhatnak a nyomtató-felderķtési folyamat közben. "
-"Ha felderķtés nélkül kķvįn nyomtatót telepķteni, akkor kapcsolja ki a "
-"\"Nyomtatók automatikus felismerése\" opciót. Ha egy olyan tįvoli nyomtatót "
-"kķvįn beįllķtani, amelyet a PrinterDrake nem listįz automatikusan, akkor "
-"hasznįlja a program \"Szakértõi mód\" üzemmódjįt."
+" A folytatįshoz kattintson a \"Következõ\" gombra. Ha viszont most nem "
+"kķvįnja telepķteni a nyomtatókat, akkor a \"Mégsem\" gombra kattintson."
+
+#: ../../printerdrake.pm_.c:213
+msgid "Auto-detect printers connected to this machine"
+msgstr "A helyi nyomtatók automatikus felderķtése"
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
-msgstr "Nyomtatók automatikus felismerése"
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "A hįlózatra csatlakoztatott nyomtatók automatikus felderķtése"
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "A windowsos gépekre csatlakoztatott nyomtatók automatikus felderķtése"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Helyi nyomtató"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7708,58 +8078,49 @@ msgstr ""
"Mandrake Vezérlõközpont \"Hardver\" részében talįlható \"Nyomtató\" "
"alkalmazįst."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Nyomtatók automatikus felismerése"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Printer auto-detection"
+msgstr "Automatikus nyomtatófelderķtés"
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"A PrinterDrake program képes felismerni a helyileg csatlakoztatott "
-"pįrhuzamos- illetve USB-csatlakozįsś nyomtatókat. Bizonyos gépeken a "
-"nyomtatók automatikus felderķtése lefagyaszthatja a rendszert, ami a "
-"fįjlrendszerekben hibįkat idézhet elõ. Csak akkor hasznįlja ezt a "
-"lehetõséget, ha tisztįban van ezzel!\n"
-"\n"
-"Szeretne automatikus nyomtatófelderķtést?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
-msgstr "Automatikus detektįlįs"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "A nyomtató kézi beįllķtįsa"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", hįlózati nyomtató: \"%s\", port: %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "A portok ellenõrzése"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", nyomtató: \"%s\" ezen az SMB/Windows kiszolgįlón: \"%s\""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Felismert eszköz: %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Nyomtató ezen a pįrhuzamos porton: \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB nyomtató: \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Hįlózati nyomtató: \"%s\", port: %s"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Nyomtató: \"%s\" ezen az SMB/Windows kiszolgįlón: \"%s\""
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7772,37 +8133,19 @@ msgstr ""
"LPT2:, ...), elsõ USB nyomtató: /dev/usb/lp0, mįsodik USB nyomtató: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Egy eszköz- vagy fįjlnevet kell megadni."
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Helyi nyomtató nem talįlható.\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "Nyomtató nem talįlható."
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Hįlózati nyomtatót csak a rendszer telepķtését követõen lehet telepķteni. "
-"Ehhez hasznįlja a Mandrake Vezérlõközpont \"Hardver\" részében a \"Nyomtató"
-"\" funkciót."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Hįlózati nyomtató telepķtéséhez tegye a következõket: kattintson a \"Mégsem"
-"\" gombra, majd kapcsoljon \"Szakértõi mód\" üzemmódba, azutįn kattintson "
-"ismét a \"Nyomtató hozzįadįsa\" gombra."
+#: ../../printerdrake.pm_.c:485
+msgid "Available printers"
+msgstr "Az elérhetõ nyomtatók"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7810,7 +8153,7 @@ msgstr ""
"A rendszer a következõ nyomtatót talįlta. Ha nem ezt szeretné beįllķtani, "
"akkor adjon meg egy eszköznevet illetve fįjlnevet a beviteli sorban."
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7819,7 +8162,7 @@ msgstr ""
"kķvįnja beįllķtani, vagy adjon meg egy eszköznevet illetve fįjlnevet a "
"beviteli sorban."
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7831,7 +8174,7 @@ msgstr ""
"szeretné módosķtani annak beįllķtįsait, akkor kapcsolja be a \"Kézi beįllķtįs"
"\" opciót."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7843,7 +8186,7 @@ msgstr ""
"nyomtató helytelenül volt felismerve, vagy ha Ön szeretné módosķtani annak "
"beįllķtįsait, akkor kapcsolja be a \"Kézi beįllķtįs\" opciót."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7851,11 +8194,11 @@ msgstr ""
"Vįlassza ki, melyik portra van csatlakoztatva a nyomtató, vagy adjon meg egy "
"eszköznevet illetve fįjlnevet a beviteli sorban"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Vįlassza ki, melyik portra van csatlakoztatva a nyomtató."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7864,62 +8207,19 @@ msgstr ""
"LPT2:, ...), elsõ USB nyomtató: /dev/usb/lp0, mįsodik USB nyomtató: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Ki kell vįlasztania illetve meg kell adnia egy nyomtatót vagy eszközt."
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Kézi beįllķtįs"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Az Ön nyomtatója egy HP többfunkciós eszköz (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 lapolvasóval), egy HP PhotoSmart vagy egy HP "
-"LaserJet 2200?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "HPOJ csomag telepķtése..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Az eszköz ellenõrzése és a HPOJ beįllķtįsa..."
-
-#: ../../printerdrake.pm_.c:504
-msgid "Installing SANE packages..."
-msgstr "SANE csomagok telepķtése..."
-
-#: ../../printerdrake.pm_.c:524
-msgid "Installing mtools packages..."
-msgstr "mtools csomagok telepķtése..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Lapolvasįs az Ön HP többfunkciós eszközén"
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Fotómemóriakįrtya-hozzįférés az Ön HP többfunkciós eszközén"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "A nyomtatóport elérhetõvé tétele a CUPS szįmįra..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "A nyomtató-adatbįzis beolvasįsa..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Tįvoli lpd nyomtató beįllķtįsai"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7927,27 +8227,46 @@ msgstr ""
"Tįvoli lpd nyomtató hasznįlatįhoz meg kell adni a nyomtatókiszolgįló nevét "
"és a nyomtató nevét."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "A tįvoli gép neve"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "A tįvoli nyomtató neve"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "A tįvoli gép neve nem lehet üres!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "A tįvoli nyomtató neve nem lehet üres!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "Felismert modell: %s %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Scanning network..."
+msgstr "A hįlózat vizsgįlata..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", nyomtató: \"%s\" ezen a kiszolgįlón: \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Nyomtató: \"%s\" ezen a kiszolgįlón: \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) nyomtatįsi beįllķtįsok"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7959,35 +8278,47 @@ msgstr ""
"gépnév!) és IP-cķmét, a megosztott nyomtató nevét, és egy megfelelõ "
"jogosultsįgokkal rendelkezõ felhasznįló nevét, jelszavįt és munkacsoportjįt."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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 ""
+" Ha a kķvįnt nyomtató fel lett ismerve, vįlassza ki a listįból. Ha "
+"szükséges, adja meg a felhasznįlónevet, a jelszót és/vagy a munkacsoportot."
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "Az SMB-kiszolgįló neve"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "Az SMB-kiszolgįló IP-cķme"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Megosztįsnév"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Munkacsoport"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+msgid "Auto-detected"
+msgstr "Automatikusan felderķtve"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "A kiszolgįló nevét vagy IP-cķmét meg kell adni!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "A Samba megosztįsnév üres!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "BIZTONSĮGI FIGYELMEZTETÉS"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8031,7 +8362,7 @@ msgstr ""
"nyomtatįst \"%s\" kapcsolattķpussal a PrinterDrake programban.\n"
"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8044,7 +8375,7 @@ msgstr ""
"nyomtatįst \"%s\" kapcsolattķpussal a PrinterDrake programban.\n"
"\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8056,11 +8387,11 @@ msgstr ""
"\n"
"Valóban folytatni szeretné a nyomtató ilyen módon történõ beįllķtįsįt?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare nyomtatóbeįllķtįsok"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8072,52 +8403,71 @@ msgstr ""
"gépnévvel!), a nyomtatįsi sor nevét, és egy megfelelõ jogosultsįgokkal "
"rendelkezõ felhasznįlói nevet és jelszót."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Nyomtatókiszolgįló"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "A nyomtatįsi sor neve"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Az NCP-kiszolgįló neve üres!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Az NCP-sor neve üres!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", gép: \"%s\", port: %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "Gép: \"%s\", port: %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket-alapś nyomtatįsi beįllķtįsok"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+"Vįlasszon egy nyomtatót a felderķtett nyomtatók listįjįból, vagy adja meg a "
+"gépnevet vagy IP-cķmet és az opcionįlis portszįmot (alapértelmezés: 9100) a "
+"megfelelõ mezõkben."
+
+#: ../../printerdrake.pm_.c:978
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Ahhoz, hogy egy TCP/socket-alapś nyomtatóra nyomtathasson, meg kell adnia a "
-"nyomtatóhoz tartozó gépnevet és opcionįlisan a nyomtató portszįmįt. HP "
-"JetDirect kiszolgįlókon a port szįma įltalįban 9100; mįs kiszolgįlókon ez "
-"mįs érték lehet. A hardver kézikönyvében valószķnūleg talįl tovįbbi "
-"informįciót."
+"nyomtatóhoz tartozó gépnevet vagy IP-cķmet és opcionįlisan a portszįmot "
+"(alapértelmezés: 9100). HP JetDirect kiszolgįlókon a port szįma įltalįban "
+"9100; mįs kiszolgįlókon ez mįs érték lehet. A hardver kézikönyvében "
+"valószķnūleg talįl tovįbbi informįciót."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "A nyomtató gépneve"
+#: ../../printerdrake.pm_.c:983
+msgid "Printer host name or IP missing!"
+msgstr "A nyomtató gépneve illetve IP-cķme üres."
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr "A nyomtató gépneve üres!"
+#: ../../printerdrake.pm_.c:1005
+msgid "Printer host name or IP"
+msgstr "A nyomtató gépneve vagy IP-cķme"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "A nyomtatóeszköz URI-ja"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8127,11 +8477,11 @@ msgstr ""
"felelnie a CUPS vagy a Foomatic elõķrįsainak. Nem minden URI-tķpust tįmogat "
"minden sorkezelõ."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Érvényes URI-t kell megadni."
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8139,23 +8489,27 @@ msgstr ""
"Minden nyomtatóhoz meg kell adni egy nevet (példįul: \"nyomtató\"). A Leķrįs "
"és Hely mezõket nem kötelezõ kitölteni, csak tįjékoztatįsi célt szolgįlnak."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "A nyomtató neve"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Hely"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "A nyomtató-adatbįzis beolvasįsa..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "A nyomtató-adatbįzis elõkészķtése..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "A nyomtató tķpusa"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8181,24 +8535,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "A tķpus megfelelõ"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Tķpuskivįlasztįs kézzel"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "A nyomtató tķpusįnak kivįlasztįsa"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Milyen tķpusś a nyomtató?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8214,7 +8568,7 @@ msgstr ""
"a \"Nyers nyomtató\" bejegyzésen, akkor\n"
"keresse meg a megfelelõ tķpust a listįban."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8223,11 +8577,11 @@ msgstr ""
"kompatibilis nyomtatót (informįciók a nyomtató kézikönyvében) vagy egy "
"hasonlót."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI windowsos nyomtató beįllķtįsa"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8244,11 +8598,11 @@ msgstr ""
"nyomtatna - mįskülönben a nyomtató nem fog mūködni. A kapcsolattķpus-"
"beįllķtįst a meghajtóprogram figyelmen kķvül hagyja."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark tintasugaras nyomtató beįllķtįsa"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8260,7 +8614,7 @@ msgstr ""
"levõket nem. Csatlakoztassa a nyomtatót egy helyi portra, vagy įllķtsa azt "
"be azon a gépen, amelyhez az csatlakoztatva van."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8283,7 +8637,7 @@ msgstr ""
"nyomtasson nyomtatófej-igazķtįsi oldalakat \"lexmarkmaintain\"-nel, és "
"szükség esetén módosķtsa a fej-igazķtįsi beįllķtįsokat ezzel a programmal."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8300,22 +8654,22 @@ msgstr ""
"nyomtatįsi minõséget nagyon magasra įllķtja, akkor a nyomtatįsi idõ "
"jelentõsen megnõhet."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "A(z) %s értéknek egész szįmnak kell lennie!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "A(z) %s értéknek szįmnak kell lennie!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "A(z) %s érték nem esik a megfelelõ tartomįnyba!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8324,11 +8678,11 @@ msgstr ""
"Be szeretné įllķtani a(z) \"%s\"\n"
"nyomtatót alapértelmezettnek?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Tesztoldalak"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8340,39 +8694,39 @@ msgstr ""
"kevés memóriįval ellįtott lézernyomtatókon el sem fog készülni. Įltalįban "
"elég a normįl tesztoldalt kinyomtatni."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Nem kell tesztoldal"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Nyomtatįs"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Normįl tesztoldal"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Mįs tesztoldal (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Mįs tesztoldal (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Fényképes tesztoldal"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Ne nyomtasson tesztoldalt"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "A tesztoldal(ak) nyomtatįsa folyik..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8387,7 +8741,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8395,15 +8749,15 @@ msgstr ""
"A tesztoldal(aka)t elküldtem a nyomtatóra.\n"
"Eltarthat egy ideig, amķg a nyomtatįs elindul.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Sikerült a nyomtatįs?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "\"Nyers\" nyomtató"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8417,7 +8771,7 @@ msgstr ""
"eszközök lehetõvé teszik a nyomtató kijelölését és a beįllķtįsok egyszerū "
"módosķtįsįt.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8427,8 +8781,8 @@ msgstr ""
"pįrbeszédablakįban is (a nyomtatįsi parancsot megadó mezõben), de ott ne "
"adjon meg fįjlnevet, mert a fįjlt az alkalmazįs fogja biztosķtani.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8441,7 +8795,7 @@ msgstr ""
"bizonyos nyomtatįsi feladatra vonatkozóan. Egyszerūen adja hozzį a kķvįnt "
"paramétereket a parancshoz, példįul: \"%s <fįjl>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8453,7 +8807,7 @@ msgstr ""
"listįja\" gombra.%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8461,7 +8815,7 @@ msgstr ""
"Itt lįthatók az aktuįlis nyomtató nyomtatįsi opciói:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8470,8 +8824,8 @@ msgstr ""
"Egy fįjl parancssorból (terminįlablakból) való nyomtatįsįhoz hasznįlja a "
"következõ parancsot: \"%s <fįjl>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8481,7 +8835,7 @@ msgstr ""
"is (a nyomtatįsi parancsot megadó mezõben), de ott ne adjon meg fįjlnevet, "
"mert a fįjlt az alkalmazįs fogja biztosķtani.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8489,7 +8843,7 @@ msgstr ""
"Ha szeretne egy listįt az aktuįlis nyomtatóhoz hasznįlható opciókról, akkor "
"kattintson a \"Nyomtatįsi beįllķtįsok listįja\" gombra."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8498,7 +8852,7 @@ msgstr ""
"Egy fįjl parancssorból (terminįlablakból) való nyomtatįsįhoz hasznįlja a "
"következõ parancsot: \"%s <fįjl>\" vagy ezt: \"%s <fįjl>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8514,7 +8868,7 @@ msgstr ""
"munkaasztalon, amellyel azonnali jelleggel leįllķtható az összes nyomtatįsi "
"feladat. Ez példįul papķrberagadįs esetén hasznos.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8527,45 +8881,45 @@ msgstr ""
"feladat beįllķtįsainak módosķtįsįt is. Adja hozzį a kķvįnt beįllķtįsokat a "
"parancshoz, példįul: \"%s <fįjl>\".\n"
-#: ../../printerdrake.pm_.c:1773
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2153
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Nyomtatįs/lapolvasįs ezen: \"%s\""
+msgstr "Nyomtatįs/lapolvasįs/fotókįrtyįk ezen: \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Nyomtatįs/lapolvasįs ezen: \"%s\""
-#: ../../printerdrake.pm_.c:1776
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2156
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Nyomtatįs/lapolvasįs ezen: \"%s\""
+msgstr "Nyomtatįs/fotókįrtya-hozzįférés ezen: \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Nyomtatįs a(z) \"%s\" nyomtatóra"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Bezįrįs"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Nyomtatįsi beįllķtįsok listįja"
-#: ../../printerdrake.pm_.c:1802
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2182
+#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8573,19 +8927,19 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Az Ön HP többfunkciós eszközén automatikusan be lett įllķtva a lapolvasįs. "
+"Az Ön többfunkciós eszközén automatikusan be lett įllķtva a lapolvasįs. "
"Lapolvasįst parancssorból a \"scanimage\" programmal végezhet (\"scanimage -"
"d hp:%s\" a lapolvasó megadįsįhoz, ha több is van); grafikus felületen pedig "
"az \"xscanimage\" vagy az \"xsane\" programmal. Ha a GIMP programot "
"hasznįlja, akkor a \"Fįjl\"/\"Külsõ forrįs\" menü megfelelõ menüpontjįval is "
-"végezhet lapolvasįst. Tovįbbi informįciókat a \"man scanimage\" és a \"man "
-"sane-hp\" parancsoknak a parancssorban való kiadįsįval szerezhet.\n"
+"végezhet lapolvasįst. Tovįbbi informįciókat a \"man scanimage\" parancsnak a "
+"parancssorban való kiadįsįval szerezhet.\n"
"\n"
"Ehhez az eszközhöz ne hasznįlja a \"scannerdrake\" programot!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8595,18 +8949,28 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
-
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+"Az Ön nyomtatója automatikusan be lett įllķtva a fotókįrtya-meghajtóknak a "
+"szįmķtógéprõl való eléréséhez. A fotókįrtyįkhoz az \"MtoolsFM\" nevū "
+"grafikus programmal lehet hozzįférni (menübõl: \"Alkalmazįsok\" -> "
+"\"Fįjlkezelõ eszközök\" -> \"MTools fįjlkezelõ\"). Parancssorban ugyanez az "
+"\"mtools\" programokkal lehetséges (tovįbbi informįciókat a \"man mtools\" "
+"parancsnak a parancssorban való kiadįsįval szerezhet). A kįrtya "
+"fįjlrendszere a \"p:\" meghajtó-betūjel alatt talįlható; ha több fotókįrtya-"
+"meghajtós nyomtató van, akkor az ez utįn következõ betūjelek lesznek a "
+"tovįbbi meghajtókhoz felhasznįlva. Az \"MtoolsFM\" programban a fįjllistįk "
+"jobb felsõ sarkįban levõ mezõ hasznįlatįval lehet vįltani a meghajtók közt."
+
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "A nyomtatóadatok beolvasįsa..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "A nyomtatóbeįllķtįsok įtvitele"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8621,7 +8985,7 @@ msgstr ""
"de a nyomtatįsi feladatok nem kerülnek įt.\n"
"A következõ okok miatt nem minden nyomtatįsi sor vihetõ įt:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8629,7 +8993,7 @@ msgstr ""
"A CUPS nem tįmogatja a Novell-alapś és a kötetlen parancsformįtumś "
"nyomtatókat.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8637,11 +9001,11 @@ msgstr ""
"A PDQ csak a helyi nyomtatókat, a tįvoli LPD-nyomtatókat és a socket/TCP-"
"alapś nyomtatókat tįmogatja.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "Az LPD és az LPRng nem tįmogatja az IPP-nyomtatókat.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8649,7 +9013,7 @@ msgstr ""
"Nem vihetõk įt azon nyomtatįsi sorok, amelyek nem ezzel a programmal és nem "
"a \"foomatic-configure\"-rel készültek."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8659,7 +9023,7 @@ msgstr ""
"Tovįbbį a gyįrtó įltal adott PPD fįjlokkal beįllķtott nyomtatók és a "
"közvetlen CUPS-meghajtóval ellįtott nyomtatók beįllķtįsai nem vihetõk įt."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8669,15 +9033,15 @@ msgstr ""
"Jelölje ki az įtviendõ nyomtatókat, majd kattintson az \n"
"\"Įtvitel\" gombra."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Az įtvitel kihagyįsa"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Įtvitel"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8688,12 +9052,12 @@ msgstr ""
"Kattintson az \"Įtvitel\" gombra annak felülķrįsįhoz.\n"
"Esetleg adjon meg egy mįsik nevet vagy hagyja ki a nyomtatót."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"A nyomtató nevében csak angol betū, szįmjegy és az alįhśzįs szerepelhet."
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8702,16 +9066,16 @@ msgstr ""
"\"%s\" nevū nyomtató mįr létezik,\n"
"felül szeretné ķrni annak beįllķtįsait?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Śj nyomtatónév"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s įtvitele..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8720,29 +9084,29 @@ msgstr ""
"A korįbbi alapértelmezett nyomtató (\"%s\") beįllķtįsai įtvitelre kerültek. "
"Az śj %s nyomtatįsi rendszerben is ez legyen az alapértelmezett nyomtató?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "A nyomtatóadatok frissķtése..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Tįvoli nyomtató beįllķtįsa"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "A hįlózat elindķtįsa..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Hįlózat beįllķtįsa most"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Hįlózati funkciók nincsenek beįllķtva"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8754,11 +9118,11 @@ msgstr ""
"hįlózat beįllķtįsa nélkül, akkor nem lesz lehetõsége a most beįllķtandó "
"nyomtató hasznįlatįra. Mit szeretne tenni?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Folytatįs a hįlózat beįllķtįsa nélkül"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8773,7 +9137,7 @@ msgstr ""
"\" részében, azutįn įllķtsa be a nyomtatót a Mandrake Vezérlõközpont "
"\"Hardver\"/\"Nyomtató\" részében."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8783,24 +9147,24 @@ msgstr ""
"Ellenõrizze a beįllķtįsokat és a hardvert, majd próbįlkozzon śjra a tįvoli "
"nyomtató beįllķtįsįval."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "A nyomtatįsi rendszer śjraindķtįsa..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "magas"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoiįs"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Nyomtatórendszer telepķtése a következõ biztonsįgi szinten: %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8825,11 +9189,11 @@ msgstr ""
"\n"
"Biztos abban, hogy be szeretne įllķtani nyomtatįst ezen a gépen?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "A nyomtatįsi rendszer elindķtįsa a rendszer indulįsakor"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8851,63 +9215,63 @@ msgstr ""
"\n"
"Szeretné a nyomtatįsi rendszer automatikus indķtįsįt ismét bekapcsolni?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "A telepķtett szoftverek ellenõrzése..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Az LPRng eltįvolķtįsa..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Az LPD eltįvolķtįsa..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Vįlassza ki a nyomtatįsi rendszert"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Melyik nyomtatįsi rendszert (sorkezelõt) szeretné hasznįlni?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "A(z) \"%s\" nyomtató beįllķtįsa..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "A Foomatic telepķtése..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Nyomtatóbeįllķtįsok"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "A PrinterDrake elõkészķtése..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Alkalmazįsok beįllķtįsa..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Szeretné beįllķtani a nyomtatókezelést?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Nyomtatįsi rendszer: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8920,7 +9284,7 @@ msgstr ""
"levõ nyomtatót elérhetõvé szeretne tenni a StarOffice/OpenOffice.org program "
"szįmįra, akkor kattintson duplįn a megfelelõ nyomtatóra."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8930,34 +9294,30 @@ msgstr ""
"módosķtįsįhoz, egy nyomtató alapértelmezetté tételéhez vagy az adatainak a "
"lekérdezéséhez kattintson duplįn a megfelelõ nyomtatóra."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Nyomtatók listįjįnak frissķtése (az összes elérhetõ tįvoli CUPS-nyomtató "
"megjelenķtése érdekében)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Nyomtatįsi rendszer módosķtįsa"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Normįl mód"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kilépés"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Szeretne beįllķtani egy mįsik nyomtatót?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "A nyomtatóbeįllķtįs módosķtįsa"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8966,69 +9326,69 @@ msgstr ""
"Nyomtató: %s\n"
"Mit szeretne megvįltoztatni ennél a nyomtatónįl?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Mehet!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "A nyomtató kapcsolódįsi tķpusa"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Nyomtatónév, leķrįs, hely"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "A nyomtató gyįrtója, tķpusa, meghajtóprogramja"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "A nyomtató gyįrtója, tķpusa"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Legyen ez a nyomtató az alapértelmezett"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "A nyomtató felvétele a StarOffice-ba/OpenOffice.org-ba"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "A nyomtató eltįvolķtįsa a StarOffice-ból/OpenOffice.org-ból"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Tesztoldalak nyomtatįsa"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Hogyan kell hasznįlni ezt a nyomtatót"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Nyomtató eltįvolķtįsa"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "A régi \"%s\" nyomtató eltįvolķtįsa..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Az alapértelmezett nyomtató"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "A(z) \"%s\" nyomtató lesz ezutįn az alapértelmezett nyomtató."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "A nyomtató felvétele a StarOffice-ba/OpenOffice.org-ba"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
@@ -9036,18 +9396,18 @@ msgstr ""
"A(z) \"%s\" nyomtató sikeresen fel lett véve a StarOffice-ba/OpenOffice.org-"
"ba."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
"A(z) \"%s\" nyomtatót nem sikerült felvenni a StarOffice-ba/OpenOffice.org-"
"ba."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "A nyomtató eltįvolķtįsa a StarOffice-ból/OpenOffice.org-ból"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
@@ -9055,19 +9415,19 @@ msgstr ""
"A(z) \"%s\" nyomtató sikeresen el lett tįvolķtva a StarOffice-ból/OpenOffice."
"org-ból."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
"A(z) \"%s\" nyomtatót nem sikerült eltįvolķtani a StarOffice-ból/OpenOffice."
"org-ból."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Biztosan el szeretné tįvolķtani a(z) \"%s\" nyomtatót?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "A(z) \"%s\" nyomtató eltįvolķtįsa..."
@@ -9122,8 +9482,8 @@ msgstr ""
"Hagyja üresen, ha nem kķvįn FTP-proxyt hasznįlni."
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Az URL-nek ķgy kell kezdõdnie: \"ftp:\""
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Az URL-nek ftp: vagy http: kezdetūnek kell lenni"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9172,44 +9532,6 @@ msgstr "Az mkraid végrehajtįsa nem sikerült (talįn hiįnyzik a raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nincs elég partķció a RAID %d szinthez\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Ezt a szintet csak körültekintéssel hasznįlja.\n"
-"Egyszerūbbé teszi a rendszer hasznįlatįt, de ķgy az sebezhetõbb is lesz:\n"
-"ne vįlassza ezt a szintet, ha a gép hįlózatba van kötve, vagy az "
-"internethez\n"
-"csatlakozik. A hozzįférés nincs jelszóval védve."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Ezzel a biztonsįgi szinttel mįr hasznįlhatja a gépét kiszolgįlóként.\n"
-"Ez a biztonsįgi szint elég magas ahhoz, hogy a rendszer sok, hįlózaton\n"
-"keresztül csatlakozó klienst szolgįljon ki. Ha a gép az interneten csak "
-"kliensként van jelen, akkor érdemesebb egy alacsonyabb szintet vįlasztani."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Speciįlis opciók"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Beįllķtįsok"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Az ALSA (Advanced Linux Sound Architecture) hangrendszer elindķtįsa"
@@ -9377,8 +9699,8 @@ msgid ""
"/etc/exports file."
msgstr ""
"Az NFS egy népszerū, TCP/IP hįlózaton hasznįlatos fįjlmegosztįsi protokoll.\n"
-"Ez a szolgįltatįs egy NFS-kiszolgįló, konfigurįlįsa a /etc/exports\n"
-"fįjlon įt történik."
+"Ez a szolgįltatįs egy NFS-kiszolgįló; beįllķtįsa a /etc/exports\n"
+"fįjllal történik."
#: ../../services.pm_.c:55
msgid ""
@@ -9455,10 +9777,10 @@ msgid ""
"routing protocols are needed for complex networks."
msgstr ""
"A routed szolgįltatįs lehetõvé teszi, hogy a RIP protokoll segķtségével\n"
-"automatikusan frissüljön az IP protokoll įltal hasznįlt śtvįlasztó tįbla\n"
+"automatikusan frissüljön az IP protokoll įltal hasznįlt śtvįlasztótįbla\n"
"(IP routing table).\n"
"A RIP elterjedt a kis hįlózatokon; a nagyobb, bonyolultabb hįlózatok mįs\n"
-"śtvįlasztó protokollokat igényelnek."
+"śtvįlasztó-protokollokat igényelnek."
#: ../../services.pm_.c:74
msgid ""
@@ -9523,7 +9845,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fįjlmegosztįs"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Rendszer"
@@ -9651,7 +9973,7 @@ msgstr ""
"GCC fordķtó és a legjobb nyķlt forrįskódś fejlesztõkörnyezetek erejét."
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake Vezérlõközpont"
@@ -9770,23 +10092,23 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Csomagok telepķtése..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
"Jelentkezzen ki, majd nyomja meg a Ctrl+Alt+BackSpace billentyūkombinįciót"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
"A módosķtįsok csak a(z) %s programba való következõ bejelentkezéskor lépnek "
"érvénybe"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9794,159 +10116,158 @@ msgstr ""
"Nem tudom beolvasni a partķciós tįblįt, tśl rossz įllapotban van.\n"
"Megpróbįlom törölni a rossz partķciókat"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "A Mandrake Terminal Server beįllķtįsa"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
msgstr "A kiszolgįló bekapcsolįsa"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
msgstr "A kiszolgįló kikapcsolįsa"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
msgstr "A kiszolgįló elindķtįsa"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
msgstr "A kiszolgįló leįllķtįsa"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr "Etherboot floppy/ISO"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr "Hįlózati indķtįsi fįjlok"
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
msgstr "Felhasznįlók felvétele/törlése"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr "Kliensek felvétele/törlése"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Segķtség"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Rendszerindķtó floppy"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr "Rendszerindķtó ISO-fįjl"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr "Teljes kernel elkészķtése -->"
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr "Ez több percig is eltarthat."
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr "Nincs kijelölve kernel."
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
-msgstr "Egyetlen NIC készķtése -->"
+msgstr "Egyetlen NIC-fįjl készķtése -->"
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Nincs kijelölve NIC."
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr "Az összes kernel elkészķtése -->"
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
msgstr "<-- Törlés"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
msgstr "Az összes NBI törlése"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
msgstr "Felhasznįló felvétele -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr "<-- Felhasznįló törlése"
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr "Kliens felvétele -->"
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr "<-- Kliens törlése"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
msgstr "dhcpd beįllķtįsa..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr "Beįllķtįs mentése"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
msgstr "Tegye be a floppyt:"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr "A floppy nem elérhetõ."
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr "A floppyt most mįr ki lehet venni"
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
msgstr "Nincs elérhetõ floppy-meghajtó."
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Az Etherboot ISO-fįjl: %s"
-#: ../../standalone/drakTermServ_.c:964
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Valamilyen probléma merült fel."
+msgstr "Valamilyen probléma merült fel. Az mkisofs telepķtve van?"
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Elõször létre kell hozni ezt: /etc/dhcpd.conf"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Hiba!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "Nem talįlható a(z) \"%s\" képfįjl."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Az automatikus telepķtés beįllķtįsai"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9973,11 +10294,11 @@ msgstr ""
"\n"
"Kķvįnja folytatni?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Az automatikus lépések beįllķtįsai"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
@@ -9985,11 +10306,11 @@ msgstr ""
"Adja meg mindegyik lépésnél, hogy śjrajįtszįssal vagy kézi vezérléssel "
"történjen"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr "Automatikus telepķtõfloppy készķtése"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -10001,12 +10322,12 @@ msgstr ""
"\n"
"Az automatikus telepķtés paraméterei a bal oldalon érhetõk el"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Gratulįlunk!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -10014,19 +10335,32 @@ msgstr ""
"A floppy létrehozįsa sikeresen befejezõdött.\n"
"A telepķtés śjralejįtszįsa elvégezhetõ."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Automatikus telepķtés"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Elem hozzįadįsa"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Az utolsó elem eltįvolķtįsa"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -10036,7 +10370,7 @@ msgstr ""
" DrakBackup jelentés \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -10048,7 +10382,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -10060,49 +10394,124 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
-msgstr "elõrehaladįs"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+msgid "Total progess"
+msgstr "Teljes elõrehaladįs"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"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 létezik, törölhetõ?\n"
+"\n"
+"Figyelmeztetés: Ha mįr elvégezte ezt korįbban, akkor elképzelhetõ,\n"
+"hogy a kiszolgįlón el kell tįvolķtani a bejegyzést az engedélyezett\n"
+"kulcsok (authorized_keys) közül."
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr "A kulcsok elõįllķtįsa hosszabb ideig is eltarthat."
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr "HIBA: Nem hajtható végre: %s."
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Az įtvitel sikeres volt.\n"
+"A következõ paranccsal ellenõrizheti, hogy be tud-e jelentkezni a\n"
+"kiszolgįlóra anélkül, hogy jelszót kérne a gép:\n"
+"\n"
+"ssh -i %s %s\\@%s"
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr "Az adathordozó törlése hosszabb ideig is eltarthat."
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Rendszerfįjlok mentése..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "Fįjlok merevlemezes mentése..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Felhasznįlói fįjlok mentése..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Merevlemezes mentés folyamatban..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Egyéb fįjlok mentése..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Mentés szalagra"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"DrakBackup-tevékenységek ezzel: %s:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:880
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1289
+#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-"fįjlok küldése FTP-n: %s\n"
+"fįjllista elküldve FTP-n: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10112,36 +10521,46 @@ msgstr ""
" FTP-kapcsolati probléma: A mentésfįjlok FTP-n keresztül történõ küldése "
"sikertelen.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"DrakBackup-tevékenységek CD-vel:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"DrakBackup-tevékenységek szalaggal:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr " Hiba levélküldés közben. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Fįjlkijelölés"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Vįlassza ki a fįjlokat illetve könyvtįrakat, majd kattintson a \"Hozzįadįs\" "
"gombra"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10149,26 +10568,26 @@ msgstr ""
"\n"
"Jelölje be azokat az opciókat, amelyekre szüksége van.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ezekkel a funkciókkal a /etc könyvtįr összes fįjlja elmenthetõ illetve "
"visszatölthetõ.\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Rendszerfįjlok mentése ( /etc könyvtįr )"
+#: ../../standalone/drakbackup_.c:1527
+msgid "Backup your System files. (/etc directory)"
+msgstr "Rendszerfįjlok mentése (/etc könyvtįr)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementįlis mentés (a korįbbi mentések nem lesznek felülķrva)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "A kritikus fįjlok kihagyįsa (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10176,85 +10595,131 @@ msgstr ""
"Ezzel az opcióval a /etc könyvtįr bįrmely įllapota\n"
"visszatölthetõ lesz."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "Jelölje ki az összes felhasznįlót, amelynek adatait menteni szeretné."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "A böngészõ-gyorstįr kihagyįsa"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementįlis mentések (a korįbbi mentések nem lesznek felülķrva)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Kijelöltek eltįvolķtįsa"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Felhasznįlók"
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1700
msgid "Use network connection to backup"
-msgstr "Mentés FTP-kapcsolaton keresztül"
+msgstr "Mentés hįlózati kapcsolaton keresztül"
+
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr "Expect hasznįlata SSH-hoz"
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+"Mentési kulcsok\n"
+"létrehozįsa/įtvitele SSH-hoz"
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Įtvitel \n"
+"Most"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr "A kulcsok mįr a helyükre kerültek"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Adja meg a gépnevet vagy az IP-cķmet."
-#: ../../standalone/drakbackup_.c:1269
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Adja meg a könyvtįrt, amelybe a\n"
+"Adja meg a könyvtįrt (vagy modult), amelybe a\n"
" mentésfįjlok kerüljenek az adott gépen."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Adja meg a felhasznįlói nevét"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Adja meg a jelszavįt"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Emlékezzen a jelszóra"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr "Meg kell adni egy gépnevet, egy felhasznįlónevet és egy jelszót."
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Mentés CD-re/DVD-re"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
-msgstr "Adja meg, mennyi hely van a CD-n"
+#: ../../standalone/drakbackup_.c:1844
+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 ""
+"Adja meg a CD/DVD eszközt.\n"
+"(Az Enter billentyū lenyomįsįra a többi mezõ įtveszi a beįllķtįsokat.\n"
+"Erre a mezõre csak az ūrlap kitöltése miatt van szükség.)"
+
+#: ../../standalone/drakbackup_.c:1849
+msgid "Please choose your CD/DVD media size"
+msgstr "Adja meg a CD/DVD adathordozó méretét"
+
+#: ../../standalone/drakbackup_.c:1855
+msgid "Please check for multisession CD"
+msgstr "Multisession CD esetén jelölje be az opciót"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Ha CD-RW lemezt hasznįl, jelölje be az opciót"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Ha elõtte le kķvįnja törölni a CD-RW lemezt, jelölje be az opciót"
-
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
+#: ../../standalone/drakbackup_.c:1867
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-"Ha telepķtõs indķtólemezt (CD) szeretne,\n"
-" jelölje be az opciót."
+"Ha le kķvįnja törölni az śjraķrható adathordozót (1. session), jelölje be az "
+"opciót"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
+msgstr " Törlés most "
+
+#: ../../standalone/drakbackup_.c:1874
+msgid "Please check if you are using a DVDR device"
+msgstr "Ha DVDR eszközt hasznįl, jelölje be az opciót"
+
+#: ../../standalone/drakbackup_.c:1880
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Ha DVDRAM eszközt hasznįl, jelölje be az opciót"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10262,21 +10727,33 @@ msgstr ""
"Adja meg a CD-ķró eszközazonosķtójįt,\n"
" példįul: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+msgid "No CD device defined!"
+msgstr "CD-eszköz nincs definiįlva."
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Mentés szalagra"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Adja meg a mentéshez hasznįlandó eszköznevet"
-#: ../../standalone/drakbackup_.c:1446
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1983
+msgid "Please check if you want to use the non-rewinding device."
+msgstr ""
+"Ha a visszatekerést mellõzõ eszközt szeretné hasznįlni, jelölje be az opciót."
+
+#: ../../standalone/drakbackup_.c:1989
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Ha elõtte le kķvįnja törölni a CD-RW lemezt, jelölje be az opciót"
+msgstr "Ha mentés elõtt le kķvįnja törölni a szalagot, jelölje be az opciót."
+
+#: ../../standalone/drakbackup_.c:1995
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Ha mentés utįn ki szeretné dobatni a szalagot, jelölje be az opciót."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10284,57 +10761,55 @@ msgstr ""
"Adja meg a DrakBackup program szįmįra\n"
" engedélyezett maximįlis méretet"
-#: ../../standalone/drakbackup_.c:1497
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2066
msgid "Please enter the directory to save to:"
msgstr "Adja meg a könyvtįrt, ahova menteni kell:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Kvóta hasznįlata a mentésfįjlokhoz."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Hįlózat"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CD-ROM / DVD-ROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Merevlemez / NFS"
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2161
msgid "Tape"
-msgstr "Tķpus"
+msgstr "Szalag"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "órįnként"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "naponta"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "hetente"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "havonta"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Szolgįltatįs hasznįlata"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10342,76 +10817,91 @@ msgstr ""
"Adja meg a mentések közti \n"
"idõintervallumot"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
msgstr ""
"Adja meg a mentési\n"
-"médiįt."
+"médiumot."
-#: ../../standalone/drakbackup_.c:1648
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2214
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 ""
-"Gyõzõdjön meg arról, hogy a cron szolgįltatįs a szolgįltatįsok közt van."
+"Gyõzõdjön meg arról, hogy a cron szolgįltatįs a szolgįltatįsok közt van. \n"
+"\n"
+"Megjegyzés: jelenleg az összes \"hįlózati\" médium a merevlemezt is "
+"hasznįlja."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Levél küldése minden mentés utįn ide:"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+"A merevlemezen levõ \"tar\" fįjlok törlése mįs médiumra való mentés utįn."
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Mit"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Hova"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Mikor"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Tovįbbi opciók"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "A DrakBackup beįllķtįsa"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Vįlassza ki, hogy hova szeretne menteni"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "merevlemezre"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "hįlózaton keresztül"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr "CD-ROM-on"
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr "szalagos eszközön"
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Vįlassza ki, hogy mit szeretne menteni"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "A rendszer mentése"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "A felhasznįlók adatainak mentése"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Felhasznįló kézi kivįlasztįsa"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10419,7 +10909,7 @@ msgstr ""
"\n"
"Mentési forrįsok: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10427,7 +10917,7 @@ msgstr ""
"\n"
"- Rendszerfįjlok:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10435,7 +10925,7 @@ msgstr ""
"\n"
"- Felhasznįlói fįjlok:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10443,7 +10933,7 @@ msgstr ""
"\n"
"- Egyéb fįjlok:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10452,45 +10942,59 @@ msgstr ""
"\n"
"- Mentés merevlemezre a következõ helyre: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+"\n"
+"- A merevlemezen levõ \"tar\" fįjlok törlése mentés utįn.\n"
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- Ķrįs CD-re"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:1978
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2526
+#, c-format
msgid " on device : %s"
-msgstr "Az egeret kezelõ eszköz: %s\n"
+msgstr " ezen az eszközön: %s"
+
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr " (multisession)"
-#: ../../standalone/drakbackup_.c:1979
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2528
+#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
"\n"
-"- Mentés FTP-n keresztül a következõ gépre: %s\n"
+"- Mentés szalagra ezen az eszközön: %s"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tTörlés=%s"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2532
+#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Mentés FTP-n keresztül a következõ gépre: %s\n"
+"- Mentés ezzel: \"%s\" a következõ gépre: %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10499,7 +11003,7 @@ msgstr ""
"\t\t felhasznįlónév: %s\n"
"\t\t śtvonal: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10507,19 +11011,19 @@ msgstr ""
"\n"
"- Beįllķtįsok:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tA rendszerfįjlok kihagyįsa\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\ttar és bzip2 hasznįlata a mentésekhez\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\ttar és gzip hasznįlata a mentésekhez\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10528,41 +11032,39 @@ msgstr ""
"\n"
"- Szolgįltatįsok (%s):\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Merevlemez\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CD\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Szalag \n"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
-msgstr "\t-Hįlózat FTP-n keresztül\n"
+msgstr "\t-Hįlózat FTP-vel\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
-msgstr "\t-Hįlózat SSH-n keresztül\n"
+msgstr "\t-Hįlózat SSH-val\n"
-#: ../../standalone/drakbackup_.c:2000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
-msgstr "\t-Hįlózat FTP-n keresztül\n"
+msgstr "\t-Hįlózat rsync hasznįlatįval\n"
-#: ../../standalone/drakbackup_.c:2001
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
-msgstr "\t-Hįlózat FTP-n keresztül\n"
+msgstr "\t-Hįlózat webdav hasznįlatįval\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nincs beįllķtįs. Hasznįlja a varįzslót vagy a Speciįlis opciót.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10570,7 +11072,7 @@ msgstr ""
"A visszatöltendõ adatok listįja:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10578,133 +11080,128 @@ msgstr ""
"A sérült adatok listįja:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "A következõ alkalommal szüntesse meg a kijelölést vagy törölje."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "A mentésfįjlok sérültek"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr " Az összes kijelölt adat "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " vissza lett töltve ide: %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " Beįllķtįs visszatöltése "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Az egyéb fįjlok is visszatölthetõk."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr "A visszatöltendõ felhasznįlók (csak a legutóbbi dįtumok lényegesek)"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Az ez elõtti rendszerfįjlok mentése:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "adja meg a visszatöltési dįtumot"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Mentés merevlemezre"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Adja meg a könyvtįrt, ahova menteni kell:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP-kapcsolat"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Biztonsįgos kapcsolat"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Visszatöltés merevlemezrõl"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Adja meg a könyvtįrt, ahol a mentések vannak"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
-msgstr "Vįlasszon mįs médiįt a visszatöltéshez"
+msgstr "Vįlasszon mįs médiumot a visszatöltéshez"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
-msgstr "Egyéb média"
+msgstr "Egyéb médium"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Rendszer visszatöltése"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Felhasznįlók visszatöltése"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Egyéb adatok visszatöltése"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+msgid "select path to restore (instead of /)"
msgstr "vįlassza ki a visszatöltendõ śtvonalat (a / helyett)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Śj mentés készķtése visszatöltés elõtt (csak inkrementįlis mentéshez)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Felhasznįlói könyvtįrak törlése visszatöltés elõtt"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Az összes mentés visszatöltése"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Egyéni visszatöltés"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Elõzõ"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Mentés"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Mentésfįjlok elkészķtése"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Visszatöltés"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Következõ"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10712,9 +11209,9 @@ msgstr ""
"Készķtsen mentést, mielõtt visszatöltést végezne\n"
" (vagy pedig ellenõrizze, jól adta-e meg az śtvonalat)."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10722,15 +11219,15 @@ msgstr ""
" A jelentés nem lett elküldve.\n"
" Ellenõrizze a sendmail beįllķtįsįt."
-#: ../../standalone/drakbackup_.c:2933
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3598
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "A telepķtõ a következõ csomagokat fogja telepķteni"
+msgstr ""
+"A következõ csomagokat szükséges telepķteni:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:2956
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10738,19 +11235,19 @@ msgstr ""
"Hiba a fįjl FTP-vel való įtvitele közben.\n"
" Ellenõrizze az FTP-vel kapcsolatos beįllķtįsokat."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Vįlassza ki a visszatöltendõ adatokat..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
-msgstr "Vįlasszon mentési médiįt..."
+msgstr "Vįlasszon mentési médiumot..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Vįlassza ki a mentendõ adatokat..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10758,75 +11255,59 @@ msgstr ""
"Beįllķtįsi fįjl nem talįlható. \n"
"Hasznįlja a varįzslót vagy a Speciįlis opciót."
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Fejlesztés alatt..."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Rendszerfįjlok mentése"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Felhasznįlói fįjlok mentése"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Egyéb fįjlok mentése"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Elõrehaladįs"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "fįjlok küldése FTP-n"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Fįjlok küldése..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "A CD-re ķrandó adatok listįja"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Adja meg a CD-ķró sebességét"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Adja meg a CD-ķró eszközazonosķtójįt (példįul: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Ha telepķtõs indķtólemezt (CD) szeretne, jelölje be az opciót."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Mentés most a beįllķtįsok alapjįn"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Mentési beįllķtįsok megtekintése."
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Beįllķtįs a varįzslóval"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Speciįlis beįllķtįsok"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Mentés most"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10837,7 +11318,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10884,7 +11365,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10899,7 +11380,7 @@ msgstr ""
" /etc/postfix/main.cf fįjlban.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10923,7 +11404,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10977,21 +11458,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -11029,18 +11510,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" frissķtések: 2002, MandrakeSoft - Stew Benedict <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -11070,7 +11553,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
" MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -11147,7 +11630,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -11165,7 +11648,7 @@ msgstr ""
"merevlemezre, mielõtt a kiszolgįlóra lenne küldve.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11186,7 +11669,7 @@ msgstr ""
"ķgy elvesznek az ott levõ adatok.\n"
"A mentésfįjlokat kézzel ne módosķtsa.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -11261,85 +11744,118 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "A(z) %s telepķtése nem sikerült a következõ hiba miatt:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+"drakbug %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Ez a program szabad szoftver; a GNU GPL alapjįn terjeszthetõ.\n"
+"\n"
+"Hasznįlat: drakbug [OPCIÓK] [PROGRAMNÉV]\n"
+"\n"
+"OPCIÓK:\n"
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr " --help - jelen segķtség megjelenķtése\n"
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr " --report - a programnak egy Mandrake-eszköznek kell lenni\n"
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr " --incident - a programnak egy Mandrake-eszköznek kell lenni\n"
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake hibabejelentõ program"
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr "Mandrake Varįzsló"
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr "Szinkronizįló program"
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr "Önįlló eszközök"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
msgstr "MandrakeOnline"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
msgstr "MenuDrake"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
msgstr "Msec"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
msgstr "Tįvirįnyķtįs"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr "Szoftvercsomag-kezelõ"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr "Windows migrįciós program"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
msgstr "UserDrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
msgstr "Beįllķtįsi varįzslók"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
msgstr "Alkalmazįs:"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr "Csomag: "
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr "Kernel:"
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
msgstr "Kiadįs: "
-#: ../../standalone/drakbug_.c:87
-#, fuzzy
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11359,140 +11875,139 @@ msgstr ""
"küldve azon kiszolgįlónak.\n"
"\n"
-#: ../../standalone/drakbug_.c:101
-msgid "Not installed"
-msgstr "Nincs telepķtve"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
msgid "Report"
msgstr "Bejelentés"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "Nincs telepķtve"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr "csatlakozįs a Bugzilla varįzslóhoz..."
-#: ../../standalone/drakbug_.c:129
-#, fuzzy
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
msgstr "Nincs elérhetõ böngészõ. Telepķtsen egyet."
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Hįlózatbeįllķtįs (%d csatoló)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Profil törlése..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "A törölni kķvįnt profil:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Śj profil..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"A létrehozandó profil neve (az śj profil az aktuįlis pontos mįsolata lesz):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Gépnév: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Internet-hozzįférés"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tķpus:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Įtjįró (gateway):"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Csatoló:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Įllapot:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Kis türelmet"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Az internet-hozzįférés beįllķtįsa..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "A helyi hįlózat beįllķtįsa"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Meghajtó"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Csatoló"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokoll"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Įllapot"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "A helyi hįlózat beįllķtįsa..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "A varįzsló indķtįsįhoz kattintson ide ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Varįzsló..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Alkalmazįs"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Egy kis türelmet kérek, végrehajtom a kért módosķtįsokat"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Csatlakozva"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nincs csatlakozva"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Csatlakozįs..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "A kapcsolat bontįsa..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11500,7 +12015,7 @@ msgstr ""
"Figyelmeztetés: Egy mįsik internetkapcsolat is létezik, esetlegesen a "
"hįlózatot hasznįlva."
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11508,36 +12023,36 @@ msgstr ""
"Egyetlen csatoló sincs beįllķtva.\n"
"A beįllķtįs elvégzéséhez kattintson a \"Beįllķtįs\" gombra."
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "A helyi hįlózat beįllķtįsa"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "%s csatoló: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Rendszerindķtįsi protokoll"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Automatikus indķtįs"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP-kliens"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "aktivįlįs most"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "deaktivįlįs most"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11545,7 +12060,7 @@ msgstr ""
"Ez a csatoló még nem lett beįllķtva.\n"
"A beįllķtóvarįzslót a fõablakban indķthatja el."
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11553,121 +12068,121 @@ msgstr ""
"Nincs beįllķtva egyetlen internetkapcsolat sem.\n"
"Kapcsolat létrehozįsįhoz kattintson a \"Beįllķtįs\" gombra."
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Internetkapcsolat beįllķtįsa"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Internetkapcsolat beįllķtįsa"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "A csatlakozįs tķpusa: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Paraméterek"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Įtjįró (gateway)"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet-kįrtya"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP-kliens"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "hasznįlat: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-iso8859-2,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulnév"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Méret"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "rendszerindķtó lemez készķtése"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "alapértelmezés"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy hiba: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "a kernel verziója"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Įltalįnos"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Csak szakértõknek"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "Az mkinitrd opcionįlis argumentumai"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Modul hozzįadįsa"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "felülķrįs"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ha szükséges"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "a SCSI modulok kihagyįsa"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "a RAID modulok kihagyįsa"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Modul eltįvolķtįsa"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Kimenet"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "A lemez elkészķtése"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Biztosķtsa, hogy a(z) %s eszközben legyen adathordozó"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11676,12 +12191,12 @@ msgstr ""
"A(z) %s eszközben nincs adathordozó, vagy ķrįsvédett.\n"
"Helyezzen be egyet, illetve szüntesse meg az ķrįsvédelmet."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Nem sikerült létrehozni śj példįnyt: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11692,99 +12207,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Telepķtett betūtķpusok keresése"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Telepķtett betūtķpusok kijelölésének törlése"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "az összes betūtķpus vizsgįlata"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "betūtķpus nem talįlható"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "kész"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "a csatlakoztatott partķciókon betūtķpus nem talįlható"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Jó betūtķpusok ismételt kivįlasztįsa"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "betūtķpus nem talįlható\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Betūtķpusok keresése a telepķtettek közt"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Betūtķpus-mįsolįs"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "TrueType betūtķpusok telepķtése"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "kérem, vįrjon: ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "TrueType-telepķtés kész"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Betūtķpus-konvertįlįs"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "type1inst készķtése"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript-hivatkozįs"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf betūtķpusok konvertįlįsa"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm betūtķpusok konvertįlįsa"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Įtmeneti fįjlok elhagyįsa"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "XFS śjraindķtįsa"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Betūtķpus-fįjlok elhagyįsa"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "XFS śjraindķtįsa"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11798,109 +12313,113 @@ msgstr ""
"-A betūtķpusokat a szokott módon telepķtheti. Bizonyos hibįs betūtķpusok "
"lefagyaszthatjįk az X kiszolgįlót."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Betūtķpusok importįlįsa"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Windowsos betūtķpusok"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Betūtķpusok eltįvolķtįsa"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Speciįlis opciók"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Betūtķpus-lista"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Vįlassza ki, mely alkalmazįsok fogjįk hasznįlni a betūtķpusokat:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "AbiWord"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Įltalįnos nyomtatók"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
"Vįlassza ki a betūtķpus-fįjlt vagy -könyvtįrt, majd kattintson a \"Hozzįadįs"
"\" gombra"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Telepķtési lista"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "kattintson ide, ha biztos benne"
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "ide, ha nem"
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Kijelölések megszüntetése"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Mindent kijelöl"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Lista eltįvolķtįsa"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Tesztelés"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Betūtķpusok mįsolįsa a rendszerbe"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Betūtķpusok telepķtése és konvertįlįsa"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Telepķtés utįn"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "A rendszerben talįlható betūtķpusok eltįvolķtįsa"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Eltįvolķtįs utįn"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Internetkapcsolat megosztįsa"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Csak a 2.4-es kerneleket tįmogatjuk."
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Az internetkapcsolat megosztįsa engedélyezve van"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11912,31 +12431,31 @@ msgstr ""
"\n"
"Mit szeretne tenni?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "Letiltįs"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Mégsem"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "Beįllķtįs śjból"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "A kiszolgįlók letiltįsa..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Az internetkapcsolat-megosztįs letiltįsa megtörtént."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Az internetkapcsolat megosztįsa nincs engedélyezve"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11948,19 +12467,19 @@ msgstr ""
"\n"
"Mit szeretne tenni?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "Engedélyezés"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "A kiszolgįlók engedélyezése..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Az internetkapcsolat megosztįsa most mįr engedélyezett."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11976,21 +12495,21 @@ msgstr ""
"Megjegyzés: a helyi hįlózat (LAN) hasznįlatįhoz legalįbb egy hįlózati\n"
"csatolókįrtya szükséges."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "%s csatoló (a(z) %s modul felhasznįlįsįval)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "%s csatoló"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nem talįlható hįlózati csatolókįrtya a szįmķtógépben."
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11998,11 +12517,11 @@ msgstr ""
"Nem talįlható Ethernet hįlózati adapter a rendszerben. Futtassa a "
"hardverkonfigurįciós eszközt."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Hįlózati csatolófelület"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -12017,17 +12536,17 @@ msgstr ""
"\n"
"A helyi hįlózat paramétereit ehhez a csatolóhoz fogom beįllķtani."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Vįlassza ki, hogy milyen kįrtyįval csatlakozik a helyi hįlózathoz."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Hįlózati csatoló mįr be lett įllķtva"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -12042,15 +12561,15 @@ msgstr ""
"\n"
"Elvégezheti Ön is kézzel, de csak ha biztos abban, hogy mit tesz."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Automatikus śjrakonfigurįlįs"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Jelenlegi csatolóbeįllķtįs megjelenķtése"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -12067,7 +12586,7 @@ msgstr ""
"IP-tulajdonsįgok: %s\n"
"Meghajtó: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -12087,32 +12606,32 @@ msgstr ""
"Śjra is konfigurįlható a csatoló illetve beįllķtható egy DHCP kiszolgįló.\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C osztįlyś helyi hįlózat"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "DHCP kiszolgįló IP-cķme"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Csatoló és DHCP kiszolgįló śjrakonfigurįlįsa"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "A helyi hįlózati cķm nem \".0\"-ra végzõdik, kilépek."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Hįlózati cķmhibįt észleltem az aktuįlis konfigurįcióban: %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "A tūzfal beįllķtįsait sikerült felismerni."
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -12120,20 +12639,20 @@ msgstr ""
"Figyelem! Egy mįr létezõ tūzfalbeįllķtįst talįltam. Néhįny apróbb "
"módosķtįsra szükség lehet a telepķtés elvégzése utįn."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Beįllķtįs..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Beįllķtószkriptek, szoftvertelepķtés, szerverek indķtįsa..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "A(z) %s csomag telepķtésénél hiba történt"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -12143,23 +12662,23 @@ msgstr ""
"Az internetkapcsolat most mįr bįrmelyik, a helyi hįlózaton talįlható géppel "
"megosztható az automatikus hįlózati cķmkiosztįs (DHCP) segķtségével."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "A megosztįs mįr megtörtént, de a kapcsolat hasznįlata le van tiltva."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "A megosztįs mįr megtörtént, a kapcsolat hasznįlható."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Az internetkapcsolat megosztįsa még nem történt meg."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Az internetkapcsolat megosztįsįnak beįllķtįsa"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -12174,20 +12693,13 @@ msgstr ""
"\n"
"Kattintson a Beįllķtįs gombra a beįllķtįsvarįzsló elindķtįsįhoz."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Vezérlõközpont"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Vįlassza ki a hasznįlni kķvįnt eszközt"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -12198,78 +12710,82 @@ msgstr ""
"Az XawTV program nincsen telepķtve.\n"
"\n"
"\n"
-"Ha Önnek van tévékįrtyįja, de a DrakX nem talįlta meg azt (azaz a bttv\n"
-"modul nem szerepel a \"/etc/modules\" fįjlban) és nem telepķtette az\n"
-"xawtv programot, abban az esetben kérjük, küldje el az \"lspcidrake -v -f\"\n"
-"parancs eredményét (kimenetét) a következõ cķmre:\n"
-"\"install\\@mandrakesoft.com\" a következõ tįrggyal: \"undetected TV card"
-"\".\n"
+"Ha Önnek van tévékįrtyįja, de a DrakX nem talįlta meg azt (azaz sem a\n"
+"bttv modul, sem pedig az saa7134 modul nem szerepel a \"/etc/modules\"\n"
+"fįjlban) és nem telepķtette az xawtv programot, abban az esetben kérjük,\n"
+"küldje el az \"lspcidrake -v -f\" parancs eredményét (kimenetét) a\n"
+"következõ cķmre: \"install\\@mandrakesoft.com\" a következõ tįrggyal:\n"
+"\"undetected TV card\".\n"
"\n"
"\n"
"A program telepķtése elvégezhetõ rendszergazdaként \"urpmi xawtv\"\n"
"parancsot kiadva a konzolon."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kįbel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "USA (sugįrzįs)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (kįbel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (kįbel-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Kķna (sugįrzįs)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Japįn (sugįrzįs)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Japįn (kįbel)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Kelet-Európa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "Franciaorszįg [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Ķrorszįg"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Nyugat-Európa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Ausztrįlia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Śj-Zéland"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Dél-Afrika"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentķna"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr "Ausztrįl Optus kįbeltelevķzió"
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -12277,35 +12793,35 @@ msgstr ""
"Adja meg\n"
"a tévénormįt és az orszįgot"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Tévénorma:"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Terület:"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Tévécsatornįk keresése..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Tévécsatornįk keresése"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "Hiba történt a tévécsatornįk keresésekor"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "Az XawTV program nincsen telepķtve."
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Sok sikert!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Az XawTV program most mįr futtatható (az X grafikus felületen).\n"
@@ -12338,11 +12854,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "hasznįlat: keyboarddrake [--expert] [billentyūzet]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Vįlasszon billentyūzetkiosztįst."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Parancsértelmezõben a BackSpace billentyū \"Delete\"-et jelentsen?"
@@ -12367,7 +12883,7 @@ msgstr "Nem sikerült elindķtani a frissķtést!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "A módosķtįs megtörtént, de az érvénybe lépéséhez ki kell jelentkezni"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12439,6 +12955,9 @@ msgstr "Üzenetek"
msgid "Syslog"
msgstr "Rendszernapló"
+# *drak* tools aren't hiding their work from users anymore.
+# Thanks to the 'explanations' concept, each utility shows
+# what it did by writing to /var/log/explanations
#: ../../standalone/logdrake_.c:176
msgid "Mandrake Tools Explanations"
msgstr "Mandrake eszközök - magyarįzat"
@@ -12475,134 +12994,127 @@ msgstr "Naptįr"
msgid "Content of the file"
msgstr "A fįjl tartalma"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr "Email/SMS-figyelmeztetés"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "Email-figyelmeztetés"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "a fįjl elemzése folyamatban: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
-msgstr "Email/SMS-figyelmeztetés beįllķtįsai"
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "Email-figyelmeztetés beįllķtįsai"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Üdvözöljük az email/SMS beįllķtóprogramban.\n"
+"Üdvözöljük az email-beįllķtóprogramban.\n"
"\n"
"A programmal beįllķtható a figyelmeztetések küldése.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web kiszolgįló"
-#: ../../standalone/logdrake_.c:418
-#, fuzzy
+#: ../../standalone/logdrake_.c:417
msgid "Domain Name Resolver"
-msgstr "Tartomįnynév"
+msgstr "Tartomįnynév-feloldó"
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
-msgstr "A kiszolgįló leįllķtįsa"
+msgstr "FTP-kiszolgįló"
-#: ../../standalone/logdrake_.c:420
-#, fuzzy
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
-msgstr "Postfix e-mail-kiszolgįló, Inn hķrkiszolgįló"
+msgstr "Postfix email-kiszolgįló"
-#: ../../standalone/logdrake_.c:421
-#, fuzzy
+#: ../../standalone/logdrake_.c:420
msgid "Samba Server"
-msgstr "A kiszolgįló elindķtįsa"
+msgstr "Samba-kiszolgįló"
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
+#: ../../standalone/logdrake_.c:421
msgid "SSH Server"
-msgstr "NIS-kiszolgįló"
+msgstr "SSH-kiszolgįló"
-#: ../../standalone/logdrake_.c:423
-#, fuzzy
+#: ../../standalone/logdrake_.c:422
msgid "Webmin Service"
-msgstr "Szolgįltatįsok"
+msgstr "Webmin szolgįltatįs"
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
+#: ../../standalone/logdrake_.c:423
msgid "Xinetd Service"
-msgstr "Nyomtatókiszolgįló"
+msgstr "Xinetd szolgįltatįs"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "szolgįltatįsbeįllķtįs"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"A rendszer figyelmeztetést küld, ha a kijelölt szolgįltatįsok valamelyike "
"nem fut"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "terhelésbeįllķtįs"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "A rendszer figyelmeztetést küld, ha a terhelés ezen értéknél magasabb"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "figyelmeztetés beįllķtįsa"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "A figyelmeztetés módjįnak beįllķtįsa"
+#: ../../standalone/logdrake_.c:458
+msgid "Please enter your email address below "
+msgstr "Adja meg az email-cķmét "
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Mentés mįsként..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Adja meg az egér tķpusįt."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "nem talįltam serial_usb-t\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emulįljam a harmadik gombot?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "A nyomtatóadatok beolvasįsa..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Eszközök keresése..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "A portok ellenõrzése"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "\"%s\" talįlható itt: \"%s\", kķvįnja beįllķtani ?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Vįlasszon egy lapolvasót"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Ez a lapolvasó nincs tįmogatva: %s"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12611,11 +13123,11 @@ msgstr ""
"A ScannerDrake nem talįlta meg az Ön \"%s\" lapolvasójįt.\n"
"Vįlassza ki, melyik eszközhöz csatlakozik a lapolvasó."
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "vįlassza ki az eszközt"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12626,7 +13138,7 @@ msgstr ""
"A PrinterDrake-et a Mandrake Vezérlõközpont \"Hardver\" részében indķthatja "
"el."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12652,15 +13164,15 @@ msgstr ""
"Bizonyos, a(z) \"%s\" hardverosztįlyba tartozó eszközök hozzįadįsra "
"kerültek:\n"
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "A tūzfal beįllķtįsai"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "A tūzfal beįllķtįsai"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12672,7 +13184,7 @@ msgstr ""
"Mįr elvégezte a tūzfal beįllķtįsįt. Kattintson a Beįllķtįs\n"
"gombra a tūzfal módosķtįsįhoz vagy megszüntetéséhez."
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12924,48 +13436,48 @@ msgstr "%s megnyitįsa nem sikerült: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "%s ķrįsra való megnyitįsa nem sikerült: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Nincs szükségem DHCP-re"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Szükségem van DHCP-re"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Nincs szükségem NTP-re"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Szükségem van NTP-re"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Ne legyen mentés"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Mentés és kilépés"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Tūzfalbeįllķtįsi varįzsló"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Nem (blokkolįs a tūzfal įltal)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Igen (įtengedés a tūzfalon)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Kis türelmet kérek; a telepķtett csomagok ellenõrzése folyik"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12974,6 +13486,10 @@ msgstr ""
"Nem sikerült telepķteni a szükséges csomagokat: %s és Bastille.\n"
" Próbįlja meg kézzel telepķteni ezeket."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -13023,6 +13539,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Hangkezelõ eszközök: MP3- és MIDI-lejįtszók, hangkeverõk, ..."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Linux Standard Base. Külsõ tįrsasįgok alkalmazįsainak tįmogatįsa."
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Könyvek és HOGYAN-ok a Linuxról és a szabad szoftverekrõl"
@@ -13111,10 +13631,6 @@ msgid "Office Workstation"
msgstr "Irodai munkaįllomįs"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Kiszolgįló"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "GNOME, IceWM, WindowMaker, Enlightenment, Fvwm, ..."
@@ -13178,6 +13694,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Kliensprogramok különféle protokollokhoz (példįul: ssh)"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr "LSB"
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Internet-įtjįró"
@@ -13209,6 +13729,208 @@ msgstr "Multimédia - CD-ķrįs"
msgid "Scientific Workstation"
msgstr "Tudomįnyos munkaįllomįs"
+#~ msgid "\n"
+#~ msgstr "\n"
+
+#~ 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 ""
+#~ "Ezt a szintet csak körültekintéssel hasznįlja.\n"
+#~ " Egyszerūbbé teszi a rendszer hasznįlatįt, de ķgy az "
+#~ "sebezhetõbb is lesz:\n"
+#~ " ne vįlassza ezt a szintet, ha a gép hįlózatba van kötve, "
+#~ "vagy az internethez\n"
+#~ " csatlakozik. A hozzįférés nincs jelszóval védve."
+
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Ezzel a biztonsįgi szinttel mįr hasznįlhatja a gépét kiszolgįlóként.\n"
+#~ " Ez a biztonsįgi szint elég magas ahhoz, hogy a rendszer "
+#~ "sok, hįlózaton\n"
+#~ " keresztül csatlakozó klienst szolgįljon ki. Ha a gép az "
+#~ "interneten csak\n"
+#~ " kliensként van jelen, akkor érdemesebb egy alacsonyabb "
+#~ "szintet vįlasztani."
+
+#~ msgid "Basic Options"
+#~ msgstr "Alapvetõ beįllķtįsok"
+
+#~ msgid "Security Checks"
+#~ msgstr "Biztonsįgi ellenõrzések"
+
+#~ msgid "WARNING: $warning"
+#~ msgstr "FIGYELMEZTETÉS: $warning"
+
+#~ msgid "$descr"
+#~ msgstr "$descr"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "A CD-re ķrandó adatok listįja"
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Adja meg, mennyi hely van a CD-n"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Adja meg a CD-ķró sebességét"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Ha elõtte le kķvįnja törölni a CD-RW lemezt, jelölje be az opciót"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Adja meg a CD-ķró eszközazonosķtójįt (példįul: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Ha telepķtõs indķtólemezt (CD) szeretne, jelölje be az opciót."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Az URL-nek ķgy kell kezdõdnie: \"ftp:\""
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Ha telepķtõs indķtólemezt (CD) szeretne,\n"
+#~ " jelölje be az opciót."
+
+#~ msgid "Windows PDC"
+#~ msgstr "Windows PDC"
+
+#~ msgid "PDC Server Name"
+#~ msgstr "PDC-kiszolgįló neve"
+
+#~ 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 /"
+#~ "add and reboot the server"
+#~ msgstr ""
+#~ "Hogy ez mūködjön egy W2K PDC-vel, ahhoz az adminisztrįtornak valószķnūleg "
+#~ "végre kell hajtania a következõ parancsot, majd śjra kell indķtani a "
+#~ "kiszolgįlót: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+#~ "everyone /add"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Üdvözli a nyomtatóbeįllķtó varįzsló.\n"
+#~ "\n"
+#~ "A varįzsló segķtséget nyśjt a szįmķtógéphez csatlakoztatott nyomtatók "
+#~ "beįllķtįsįhoz.\n"
+#~ "\n"
+#~ "Csatlakoztassa a megfelelõ nyomtatókat a géphez, és kapcsolja be azokat. "
+#~ "A folytatįshoz kattintson a \"Következõ\" gombra; ha viszont nem kķvįnja "
+#~ "most beįllķtani a nyomtatókat, akkor kattintson a \"Mégsem\" gombra.\n"
+#~ "\n"
+#~ "Bizonyos szįmķtógépek lefagyhatnak a nyomtató-felderķtési folyamat "
+#~ "közben. Ha felderķtés nélkül kķvįn nyomtatót telepķteni, akkor kapcsolja "
+#~ "ki a \"Nyomtatók automatikus felismerése\" opciót. Ha egy olyan tįvoli "
+#~ "nyomtatót kķvįn beįllķtani, amelyet a PrinterDrake nem listįz "
+#~ "automatikusan, akkor hasznįlja a program \"Szakértõi mód\" üzemmódjįt."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Nyomtatók automatikus felismerése"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "A PrinterDrake program képes felismerni a helyileg csatlakoztatott "
+#~ "pįrhuzamos- illetve USB-csatlakozįsś nyomtatókat. Bizonyos gépeken a "
+#~ "nyomtatók automatikus felderķtése lefagyaszthatja a rendszert, ami a "
+#~ "fįjlrendszerekben hibįkat idézhet elõ. Csak akkor hasznįlja ezt a "
+#~ "lehetõséget, ha tisztįban van ezzel!\n"
+#~ "\n"
+#~ "Szeretne automatikus nyomtatófelderķtést?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "A nyomtató kézi beįllķtįsa"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Hįlózati nyomtatót csak a rendszer telepķtését követõen lehet telepķteni. "
+#~ "Ehhez hasznįlja a Mandrake Vezérlõközpont \"Hardver\" részében a "
+#~ "\"Nyomtató\" funkciót."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Hįlózati nyomtató telepķtéséhez tegye a következõket: kattintson a "
+#~ "\"Mégsem\" gombra, majd kapcsoljon \"Szakértõi mód\" üzemmódba, azutįn "
+#~ "kattintson ismét a \"Nyomtató hozzįadįsa\" gombra."
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Az Ön nyomtatója egy HP többfunkciós eszköz (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 lapolvasóval), egy HP PhotoSmart vagy egy HP "
+#~ "LaserJet 2200?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "HPOJ csomag telepķtése..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Az eszköz ellenõrzése és a HPOJ beįllķtįsa..."
+
+#~ msgid "Installing SANE packages..."
+#~ msgstr "SANE csomagok telepķtése..."
+
+#~ msgid "Installing mtools packages..."
+#~ msgstr "mtools csomagok telepķtése..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Lapolvasįs az Ön HP többfunkciós eszközén"
+
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Fotómemóriakįrtya-hozzįférés az Ön HP többfunkciós eszközén"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "A nyomtatóport elérhetõvé tétele a CUPS szįmįra..."
+
+#~ msgid "Control Center"
+#~ msgstr "Vezérlõközpont"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Vįlassza ki a hasznįlni kķvįnt eszközt"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "A figyelmeztetés módjįnak beįllķtįsa"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "nem talįltam serial_usb-t\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "Az fsck kilépett \"%d\" hibakóddal vagy \"%d\" szignįllal"
@@ -14182,9 +14904,6 @@ msgstr "Tudomįnyos munkaįllomįs"
#~ msgid "Setting security level"
#~ msgstr "Biztonsįgi szint beįllķtįsa"
-#~ msgid "Graphics card"
-#~ msgstr "Grafikus kįrtya"
-
#~ msgid "Select a graphics card"
#~ msgstr "Vįlasszon egy grafikus kįrtyįt"
@@ -14305,6 +15024,3 @@ msgstr "Tudomįnyos munkaįllomįs"
#~ msgid "Setting security options"
#~ msgstr "Biztonsįgi opciók beįllķtįsa"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Vįlassza ki a kķvįnt biztonsįgi szintet."
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 6b7c865ed..dd230bae2 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2002-07-23 21:55+09:00\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-08-17 22:55+09:00\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
@@ -62,11 +62,11 @@ msgstr "Pilih server X"
msgid "X server"
msgstr "Server X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Konfigurasi head majemuk"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -74,44 +74,44 @@ msgstr ""
"Sistem Anda mendukung konfigurasi head majemuk.\n"
"Apa yg ingin Anda lakukan?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Pilih memori kartu grafis Anda"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Konfigurasi XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Konfigurasi XFree mana yang Anda inginkan?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Konfigurasikan semua head secara terpisah"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurasikan hanya kartu \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,11 +151,56 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Customized"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "Kartu Grafik"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Resolusi"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Tes"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Keluar"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -168,31 +213,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Pilih monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Customized"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
-msgstr ""
+msgstr "Plug'n Play"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generik"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
msgstr "Pembuat"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -214,11 +255,11 @@ msgstr ""
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"
@@ -242,57 +283,42 @@ msgstr "16 juta warna (24 bit)"
msgid "4 billion colors (32 bits)"
msgstr "4 milyar warna (32 bit)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Resolusi"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Resolusi"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Pilih resolusi dan kedalaman warna"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Batal"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Anda ingin tes konfigurasi ini?"
@@ -301,71 +327,71 @@ msgstr "Anda ingin tes konfigurasi ini?"
msgid "Test of the configuration"
msgstr "Tes konfigurasi"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout Keyboard: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Jenis Mouse: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device Mouse: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartu grafis: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memori grafis: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Pilihan kedalaman warna: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusi: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "Antarmuka grafis saat startup"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -374,166 +400,190 @@ msgstr ""
"Komputer Anda bisa diset agar menjalankan X saat booting.\n"
"Anda mau fasilitas ini?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+"Kartu grafik Anda tak punya konektor TV-OUT.\n"
+"Ia dapat dikonfigurasikan agar bekerja menggunakan frame-buffer.\n"
+"\n"
+"Untuk ini Anda harus menyambung kartu grafik ke TV sebelum memboot "
+"komputer.\n"
+"Lalu pilih entri \"TVout\" di bootloader\n"
+"\n"
+"Anda punya fitur ini?"
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "Norm apa yg digunakan TV Anda?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Sektor pertama di partisi boot"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama di drive (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Instalasi SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Bootloader akan diinstal di mana?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Instalasi LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO dengan menu grafis"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot dari DOS/windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Instalasi Bootloader"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Device boot"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (tak bisa dipakai pada BIOS kuno)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Mode video"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Katasandi (lagi)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Batasi parameter command line"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "batasi"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp saat boot"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ukuran RAM yg tepat (ditemukan %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Buat multi profil"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Berikan jumlah RAM dalam satuan MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Pesan Init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Delay Open Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Timeout Kernel Boot"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Aktifkan boot dari CD?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Aktifkan boot dari OF?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -547,7 +597,7 @@ msgstr ""
"\n"
"Di drive mana Anda boot?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -555,147 +605,148 @@ msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Modifikasi"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "OS Lain (Mindows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Tak aman"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Hapus entri"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Label tidak boleh kosong"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Anda harus tentukan image kernel"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Anda harus tentukan partisi swap"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ditemukan interface %s %s"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Anda punya lagi?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Menginstal driver untuk kartu %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -704,7 +755,7 @@ msgstr ""
"Anda dapat memberikan opsi terhadap modul %s.\n"
"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -715,17 +766,17 @@ msgstr ""
"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
"Misalnya, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Pilihan Modul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Driver %s mana yang harus saya coba?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -741,15 +792,15 @@ msgstr ""
"biarkan saja drivernya melakukan deteksi sendiri parameternya? Deteksi\n"
"otomatis bisa membuat komputer hang), tapi tak merusak."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Probe otomatis"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Tentukan opsi"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -758,53 +809,53 @@ msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "akses ke program X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
msgid "The user name is too long"
msgstr "Nama user terlalu panjang"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -813,32 +864,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -846,54 +897,54 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, 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:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -907,11 +958,11 @@ msgstr ""
"\n"
"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -919,31 +970,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -954,13 +1005,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
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:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -968,7 +1019,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -976,7 +1027,7 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -989,7 +1040,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:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -997,30 +1048,47 @@ msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "Opsi Dasar DrakSec"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "Pilih tingkat keamanan yg Anda inginkan"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr "Admin Keamanan (login / email)"
+#: ../../any.pm_.c:1189
+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 ""
+"Di sini Anda dapat memilih kunci atau kombinasinya untuk \n"
+"berganti layout papanketik (mis: latin dan non latin)"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1045,151 +1113,280 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "belum ada help.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Konfigurasi Tipe Boot"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/File/_Keluar"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Kategori Monitor Gaya Baru"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Monitor GayaBaru"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Monitor Biasa"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor Biasa Gtk+"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Jalankan aurora saat boot"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "mode Lilo/Grub"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "mode Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Instal tema"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "Display tema di konsol"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "Gagal membuat preview Bootsplash"
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Ada Kesalahan"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "Backup %s ke %s.old"
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "gagal mem-backup pesan lilo"
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "Salin %s ke %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "tak dapat mengubah pesan lilo"
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "Pesan lilo tak ditemukan"
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr "Tak dapat menulis /etc/sysconfig/bootsplash."
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "Tulis %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+"Tak dapat menulis /etc/sysconfig/bootsplash\n"
+"File tak ditemukan."
+
+#: ../../bootlook.pm_.c:233
+#, 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:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr "Buat initrd 'mkinird -f /boot/initrd-%s.img %s'."
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+"Gagal meluncurkan LiLo!\n"
+"Luncurkan \"lilo\" sbg root di baris perintah utk menyelesaikan instalasi "
+"tema LiLo."
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "Luncur ulang 'lilo'"
+
+#: ../../bootlook.pm_.c:248
+msgid "Notice"
+msgstr "Catatan"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr "Instalasi tema LiLo dan Bootsplash sukses"
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "Instalasi tema gagal!"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Konfigurasikan"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "Pilihan Splash"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Tema"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+"\n"
+"Pilih tema untuk\n"
+"lilo dan bootsplash,\n"
+"Anda dapat memilih\n"
+"secara terpisah"
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "Layar lilo"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "Bootsplash"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Mode sistem"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Tidak, saya tak mau autologin"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "gagal baca file /etc/inittab: %s"
@@ -1233,61 +1430,108 @@ msgstr "Gagal membuat screenshot sebelum buat partisi"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshot akan tersedia setelah instal di %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Perancis"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgia"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Republik Ceko"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Jerman"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Yunani"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norwegia"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Swedia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Belanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Itali"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Amerika Serikat"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "Model Tak Dikenal"
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Baru"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+msgid "Please enter the WebDAV server URL"
+msgstr "Masukkan URL server WebDAV"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr "URL harus dimulai dg http:// atau https://"
+
+#: ../../diskdrake/dav.pm_.c:92
+msgid "Server: "
+msgstr "Server: "
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Posisi mount: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Pilihan: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Lebih dulu buatlah backup data Anda"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Baca dengan seksama!"
@@ -1299,15 +1543,6 @@ msgid ""
msgstr ""
"Jika Anda ingin pakai aboot, sisakan ruang (cukup 2048 sektor) di awal disk"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Ada Kesalahan"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Wizard"
@@ -1333,7 +1568,7 @@ msgid "Please click on a partition"
msgstr "Silakan pilih partisi"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detil"
@@ -1361,13 +1596,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Kosong"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Lainnya"
@@ -1375,12 +1610,12 @@ msgstr "Lainnya"
msgid "Filesystem types:"
msgstr "Tipe filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Buat"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
@@ -1390,7 +1625,7 @@ msgstr "Tipe"
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Hapus"
@@ -1398,110 +1633,110 @@ msgstr "Hapus"
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Pilih partisi"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Pilih partisi lain"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Keluar"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Ubah ke modus ahli"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Ubah ke modus normal"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Kembali"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ingin simpan modifikasi /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Alokasi otomatis"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Hapus semua"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Tambahan"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Info hard drive"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Partisi tak dapat ditambah"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi, hapus satu agar dapat membuat partisi extended"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Simpan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Kembalikan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Selamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Muat ulang tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Mount otomatis media lepas"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Pilih file"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1509,11 +1744,11 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Awas"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1521,129 +1756,115 @@ msgstr ""
"Masukkan disket ke drive\n"
"semua data di disket ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Info detil"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Posisi mount"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Pilihan"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Ubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Format"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Tambahkan ke LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Unmount"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Hapus dari RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Hapus dari LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Ganti RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "digunakan untuk loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Membuat partisi baru"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Sektor awal: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tipe filesystem: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Posisi mount: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Kesukaan: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"Anda tak dapat membuat partisi baru\n"
+"(karena jumlah maksimal partisi primer telah tercapai).\n"
+"Hapuslah satu partisi primer dan buatlah partisi extended."
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Hapus file loopback?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Mengubah tipe partisi"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Filesystem apa yang Anda inginkan?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Pindah dari ext2 ke ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Device loopback %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Mount device %s akan dimount ke mana?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1651,130 +1872,135 @@ msgstr ""
"Tak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
"loopback. Hapus dulu loopbacknya."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, c-format
+msgid "Where do you want to mount %s?"
+msgstr "%s akan dimount ke mana?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Sedang menghitung bound filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Sedang mengubah ukuran"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Ukuran partisi ini tidak dapat diubah"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Semua data pada partisi ini sebaiknya dibackup dulu"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Pilih ukuran baru"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Ukuran baru dalam MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Pindah"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Memindahkan partisi..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "baru"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Pilih LVM yang ada untuk ditambahkan ke"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "nama LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Partisi ini tak bisa dipakai sebagai loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Nama file loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Berikan nama file"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Opsi mount"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Macam-macam"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "device"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "level"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "ukuran chunk"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Hati-hati: operasi ini berbahaya"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Tipe partisi apa yang hendak digunakan?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Perlu paket %s. Anda ingin instal?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1785,7 +2011,7 @@ msgstr ""
"Kalau Anda pakai LILO dan tak jalan, atau Anda tak mau LILO dan tak mau /"
"boot juga"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1796,7 +2022,7 @@ msgstr ""
"dan Anda tidak memiliki partisi /boot. Apabila Anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1806,44 +2032,44 @@ msgstr ""
"Sekarang bootloader tak ada yang bisa handel tanpa partisi /boot.\n"
"Jadi hati-hati dalam menambahkan partisi /boot"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Sedang memformat"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Sembunyikan file"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1852,83 +2078,83 @@ msgstr ""
"Direktori %s telah berisi data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Pindah file ke partisi baru"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Salin %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Hapus %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisi %s sekarang jadi %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Device: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipe: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nama: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Ukuran: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d sampai %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Telah diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Belum diformat\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Telah di-mount\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1937,7 +2163,7 @@ msgstr ""
"File loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1945,27 +2171,27 @@ msgstr ""
"Partisi di-boot secara default\n"
" (untuk MS-DOS boot, bukan untuk lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1977,7 +2203,7 @@ msgstr ""
"partisi Driver, sebaiknya\n"
"biarkan begitu saja.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1989,62 +2215,57 @@ msgstr ""
"yang khusus digunakan \n"
"oleh sistem dual boot.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Ukuran: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disk LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, c-format
msgid "on channel %d id %d\n"
msgstr "pada kanal %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Pilihan: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Kunci sandi sistem file"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Pilih kunci sandi sistem file Anda"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Katasandi ini terlalu mudah (harus paling tidak %d karakter)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Kunci sandi tak cocok"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Kunci sandi"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Kunci sandi (lagi)"
@@ -2090,23 +2311,23 @@ msgstr "Domain"
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2123,33 +2344,33 @@ msgstr "dengan /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "JFS tak dapat dipakai utk partisi berukuran di bawah 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS tak dapat dipakai utk partisi berukuran di bawah 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan titik mount %s sudah ada\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Anda tak dapat menggunakan LVM Logical Volume untuk titik mount %s."
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Direktori ini harus ada di filesystem root"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
@@ -2157,25 +2378,25 @@ msgstr ""
"Anda perlu filesystem yg benar (ext2, reiserfs, xfs, atau jfs) utk titik "
"mount ini\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Anda tak dapat menggunakan sistem file bersandi utk mount point %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Tak cukup ruangan untuk alokasi otomatis"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Tiada yang dikerjakan"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2183,249 +2404,254 @@ msgstr ""
"Error - tidak ada device yang valid untuk membuat filesystem baru. Periksa "
"kembali hardware untuk mencari penyebabnya"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Anda tak punya partisi!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-msgid "Auto-detect"
-msgstr "Deteksi otomatis"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr "Takdikenal|Generik"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr "Takdikenal|CPH05X (bt878) [banyak pembuat]"
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Takdikenal|CPH06X (bt878) [banyak vendors]"
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-"Pada kartu TV modern umumnya, modul bttv kernel GNU/Linux otomatis "
-"mendeteksi parameter yg benar.\n"
-"Jika kartu Anda tak terdeteksi, pilihlah tuner dan tipe kartu di sini. Pilih "
-"parameter kartu tv Anda jika perlu"
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr "Model kartu :"
-
-#: ../../harddrake/bttv.pm_.c:197
-msgid "PLL setting :"
-msgstr "setting PLL :"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr "Jumlah buffer penangkap :"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr "Jumlah buffer penangkap utk penangkapan mmap"
-
-#: ../../harddrake/bttv.pm_.c:199
-msgid "Tuner type :"
-msgstr "Tipe tuner :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr "Support radio :"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr "aktifkan support radio"
-
-#: ../../harddrake/ui.pm_.c:12
-msgid "/_Quit"
-msgstr "/_Keluar"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Tolong"
-
-#: ../../harddrake/ui.pm_.c:14
-msgid "/_Help..."
-msgstr "/_Tolong..."
-
#: ../../harddrake/ui.pm_.c:15
-msgid "/_About..."
-msgstr "/_About..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
-msgstr "Modul"
+msgstr "Model"
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
-msgstr "Model kartu :"
+msgstr "model harddisk"
-#: ../../harddrake/ui.pm_.c:23
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
-msgstr "Batal"
+msgstr "Kanal"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "Kanal EIDE/SCSI"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr "Bus"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "ini adalah bus fisik tempat alat tersambung (mis: PCI, USB, ...)"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "Modul"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "modul kernel GNU/Linux yang menangani alat tersebut"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr "Kelas media"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
-msgstr ""
+msgstr "kelas alat hardware"
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Keterangan"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
-msgstr ""
+msgstr "keterangan alat"
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
msgstr "Identifikasi bus"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
+"- Alat PCI dan USB : daftar identitas PCI/USB penjual, alat, sub-penjual dan "
+"sub-alat"
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr "Lokasi di bus"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
+"- alat pci : slot PCI, alat dan fungsi kartu ini\n"
+"- alat eide: alat adalah majikan atau budak\n"
+"- alat scsi: bus scsi dan id alat scsi"
-#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:31
msgid "Old device file"
-msgstr "Pilih file"
+msgstr "File device lama"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "nama alat statis lama yg dipakai di paket dev"
-#: ../../harddrake/ui.pm_.c:40
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:33
msgid "New devfs device"
-msgstr "Device gateway"
+msgstr "Device devfs baru"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "nama alat dinamis baru yg dihasilkan oleh devfs kernel incore"
-#: ../../harddrake/ui.pm_.c:42
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
-msgstr "2 tombol"
+msgstr "Jumlah tombol"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
+msgstr "nama pembuat device"
+
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/_Keluar"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Tolong"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/_Tolong..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "Pertolongan Harddrake"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
+"Penjelasan isian:\n"
+"\n"
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/_About..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "Tentang Harddrake"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
+"Versi:"
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Pengarang:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
msgstr "Harddrake2 versi "
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
msgstr "Hardware terdeteksi"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "Konfigurasi modul"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
msgstr "Info"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr "Jalankan alat konfigurasi"
-#: ../../harddrake/ui.pm_.c:158
-msgid "Configure module"
-msgstr "Konfigurasi modul"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
msgstr "Pendeteksian sedang berjalan"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Tunggulah"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr "primer"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
msgstr "sekunder"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr "Konfigurasi tiap parameter modul dapat dilakukan di sini."
+
+#: ../../harddrake/ui.pm_.c:192
#, c-format
msgid "Running \"%s\" ..."
msgstr "Jalankan \"%s\"..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
-msgstr "Tentang Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "Deteksi otomatis"
-#: ../../harddrake/ui.pm_.c:280
-msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
-msgstr ""
-"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
-"Versi:"
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "Takdikenal|Generik"
-#: ../../harddrake/ui.pm_.c:281
-msgid "Author:"
-msgstr "Pengarang:"
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH05X (bt878) [banyak pembuat]"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr "Pertolongan Harddrake"
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Takdikenal|CPH06X (bt878) [banyak vendors]"
-#: ../../harddrake/ui.pm_.c:287
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"Description of the fields:\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
+"Pada kartu TV modern umumnya, modul bttv kernel GNU/Linux otomatis "
+"mendeteksi parameter yg benar.\n"
+"Jika kartu Anda tak terdeteksi, pilihlah tuner dan tipe kartu di sini. Pilih "
+"parameter kartu tv Anda jika perlu"
+
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Model kartu :"
+
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Tipe tuner :"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "Jumlah buffer penangkap :"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Jumlah buffer penangkap utk penangkapan mmap"
+
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "setting PLL :"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "Support radio :"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "aktifkan support radio"
#: ../../help.pm_.c:13
msgid ""
@@ -4107,7 +4333,7 @@ msgstr ""
"Pilih \"Batal\" utk membatalkan aksi ini tanpa kehilangan data dan partisi\n"
"yang ada dalam hard drive ini."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4118,7 +4344,7 @@ msgstr ""
"berarti bahwa disket boot Anda tak sinkron dengan media instalasi (buatlah "
"disket boot baru"
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
@@ -4145,20 +4371,20 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, 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:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4166,7 +4392,7 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
@@ -4204,7 +4430,7 @@ msgstr ""
"\n"
"Jalan terus?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Anda harus punya partisi FAT termount pada /boot/efi"
@@ -4380,12 +4606,12 @@ msgstr ""
"Ada error, tapi cara mengatasinya tak diketahui.\n"
"Jalan terus tapi resiko tanggung sendiri."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Lokasi mount %s ada dua"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4397,12 +4623,12 @@ msgstr ""
"Cek dulu cdromnya di komputer yang sudah terinstal Linux dengan\n"
"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Tidak ada floppy drive"
@@ -4412,7 +4638,7 @@ msgstr "Tidak ada floppy drive"
msgid "Entering step `%s'\n"
msgstr "Memulai langkah `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4423,77 +4649,77 @@ msgstr ""
"Linux-Mandrake. Cobalah instalasi text. Untuk hal ini silakan\n"
"tekan `F1' saat booting pada CDROM, lalu ketikkan `text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Kelas Instalasi"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Paket buruk"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Ukuran: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Derajat kepentingan: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Paket ini tak dapat dipilih sebab tak ada ruang untuk menginstalnya"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Paket berikut akan diinstal"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Paket berikut akan dihapus"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Anda tak bisa pilih/buang paket ini"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Paket ini harus diinstal, tak bisa dibuang"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Anda tak bisa buang paket ini, sebab dia sudah diinstal"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4501,74 +4727,74 @@ msgstr ""
"Paket ini mesti diupgrade\n"
"Benar tak mau dipilih?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Anda tak bisa buang paket ini. dia mesti diupgrade"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Instal"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Muat/Simpan di floppy"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Update pilihan paket"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Instalasi minimal"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Instalasi"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Perkiraan"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Sisa waktu"
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Tunggu, instalasi sedang disiapkan..."
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Instalasi paket %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Terima"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4582,17 +4808,17 @@ msgstr ""
"Masukkan Cd-Rom berlabel \"%s\" ke drive dan tekan Ok. Jika Anda tak punya,\n"
"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Ada error saat instalasi paket:"
@@ -4916,104 +5142,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr "Benarkah Anda menolak lisensi?"
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Keyboard"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Pilih layout keyboard Anda"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Ini adalah daftar keyboard yang tersedia"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Kelas instalasi yang anda diinginkan?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Instal/Update"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Akan instal atau update?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Disarankan"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ahli"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Upgrade"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Hanya upgrade paket"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Pilihlah tipe mouse Anda."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Port Mouse"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulasi tombol"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulasi tombol 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulasi tombol 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurasikan card PCMCIA"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Konfigurasi IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "Tidak ada partisi"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Mendeteksi partisi untuk mencari lokasi mount"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5030,7 +5256,7 @@ msgstr ""
"\n"
"Anda setuju untuk menghapus semua partisi?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5038,7 +5264,7 @@ msgstr ""
"DiskDrake gagal membaca tabel partisi Anda.\n"
"Lanjutkan tapi resiko tanggung sendiri!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5046,74 +5272,75 @@ msgstr ""
"Tiada ruang 1MB utk bootstrap! Instal akan berlanjut, tetapi utk mem-boot "
"sistem, Anda perlu membuat partisi bootstrap di DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Tiada partisi root ditemukam utk upgrade"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Partisi root"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Manakah partisi root (/) di sistem Anda?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Anda harus reboot agar perubahan tabel partisi dapat berlaku"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Periksa bad blok?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Melakukan format partisi"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"Gagal mencek sistem file %s. Ingin direparasi? (awas, data Anda bisa hilang)"
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Instalasi tak dapat diteruskan karena swap kurang, tambahkan"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sedang mencari paket yg tersedia dan bangun ulang database rpm..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Sedang mencari paket yang tersedia..."
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Mencari paket untuk diupgrade"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
msgid "Looking at packages already installed..."
msgstr "Mencari paket terinstal"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Mencari paket untuk diupgrade"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Tak cukup ruang untuk instalasi atau upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5121,35 +5348,35 @@ msgstr ""
"Pilih muat/simpan seleksi paket di floppy.\n"
"Formatnya sama dengan floppy buatan auto_install."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Muat dari floppy"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Memuat dari floppy"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Pilihan paket"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Masukkan disket yg berisi seleksi paket"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Simpan di floppy"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5157,15 +5384,15 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
@@ -5184,11 +5411,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5197,21 +5424,21 @@ msgstr ""
"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5278,7 +5505,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5296,175 +5523,193 @@ msgstr ""
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr "Mindows PDC"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Domain Mindows"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, 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:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Server NIS"
#: ../../install_steps_interactive.pm_.c:1138
-msgid "Authentication Windows PDC"
-msgstr "Otentikasi Mindows PDC"
-
-#: ../../install_steps_interactive.pm_.c:1139
-msgid "Windows Domain"
-msgstr "Domain Mindows"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+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 "
+"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 "
+"Admin, setelah boot system.\n"
+"Perintah 'wbinfo -t' akan mengetes apakah rahasia otentikasi Anda baik."
#: ../../install_steps_interactive.pm_.c:1140
-msgid "PDC Server Name"
-msgstr "Nama Server PDC"
+msgid "Authentication Windows Domain"
+msgstr "Otentikasi Domain Mindows"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
-msgstr ""
-"Agar dapat dijalankan di PDC W2K, Anda perlu minta admin melakukan: C:\\>net "
-"localgroup \"Pre-Windows 2000 Compatible Access\" everyone / add dan reboot "
-"server"
+msgid "Domain Admin User Name"
+msgstr "Nama User Admin Domain"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
+msgstr "Katakunci Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5489,19 +5734,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:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5524,7 +5769,7 @@ msgstr ""
"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5538,28 +5783,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5571,11 +5816,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5583,15 +5828,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5608,17 +5853,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5628,7 +5873,7 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5660,16 +5905,15 @@ msgstr ""
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1345
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1347
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:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5683,15 +5927,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -5718,24 +5962,35 @@ msgstr "consolehelper hilang"
msgid "Choose a file"
msgstr "Pilih file"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Tambahan"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Tahap sebelumnya"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Lanjut"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Pilihan salah, silakan ulangi\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Pilihan Anda? (default %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5744,35 +5999,35 @@ msgstr ""
"Entri yang harus Anda penuhi:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Pilihan Anda? (0/1, default %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Tombol `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Anda ingin meng-klik tombol ini? "
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr "ketikkan `void' untuk entri kosong"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Pilihan Anda? (default `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Banyak yang dapat dipilih dari (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5782,7 +6037,7 @@ msgstr ""
"atau tekan Enter untuk melanjutkan.\n"
"Pilihan Anda? "
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5791,327 +6046,379 @@ msgstr ""
"=> Catatan, label berubah:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Kirim ulang"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ceko (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Jerman"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spanyol"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finland"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Perancis"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norwegia"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polandia"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusia"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Swedia"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Keyboard UK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Keyboard US"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albania"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armenia (lama)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenia (fonetik)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijan (latin)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgia"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "aktifkan"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bulagaria (fonetik)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgaria (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estonia"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Belarusia"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Swis (layout Jerman)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Swis (layout Prancis)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ceko (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Denmark"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegia)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Swedia)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estonia"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Yunani"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Hungaria"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroasia"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Ibrani"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Ibrani (fonetik)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iran"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandia"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Jepang 106 tombol"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Keyboard Korea"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Amerika Latin"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Latvia"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuania \"fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Latvia"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedonia"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serbia (cyrillic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Belanda"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugis"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romania (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romania (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovenia"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serbia (cyrillic)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Papanketik Muangthai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Papanketik Tajik"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukraina"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Yugoslavia (latin)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "kunci Alt Kanan"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Kedua Shift bersamaan"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Control dan Shift bersamaan"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl dan Alt bersamaan"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt dan Shift bersamaan"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "Kunci \"Menu\""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Kunci \"Mindows\" kiri"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Kunci \"Mindows\" kanan"
@@ -6120,35 +6427,35 @@ msgstr "Kunci \"Mindows\" kanan"
msgid "Circular mounts %s\n"
msgstr "Mount melingkar %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
msgid "a number"
msgstr "nomor"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr "%d bilangan terpisah koma\""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr "%d string terpisah koma"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr "bilangan terpisah koma"
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
msgstr "string terpisah koma"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr "Support PCMCIA tak ada lagi utk kernel 2.2, pakailah kernel 2.4."
#: ../../mouse.pm_.c:25
@@ -6251,51 +6558,43 @@ msgstr "tiada"
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "gerakkan rodanya!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Selesai"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Lanjutkan ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Tahap sebelumnya"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Sudah sesuai?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Buka Tree"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Tutup Tree"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"
@@ -6318,6 +6617,10 @@ 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
msgid "use dhcp"
msgstr "gunakan dhcp"
@@ -6345,7 +6648,7 @@ msgstr ""
"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
"Tipe koneksi ini tak dapat diset up."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Pilih interface jaringan"
@@ -6358,7 +6661,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:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6373,7 +6676,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Nama Host"
@@ -6401,7 +6704,7 @@ msgstr "Tipe koneksi ISDN apa yang Anda miliki?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6529,43 +6832,43 @@ msgstr "Di serial port mana modem Anda terhubung?"
msgid "Dialup options"
msgstr "Parameter Dialup"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nama koneksi"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Nomor telepon"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nama domain"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Server DNS Primer (boleh diisi/tidak)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Server DNS Sekunder (boleh tidak diisi)"
@@ -6678,13 +6981,13 @@ msgstr "Pilih profil yang hendak Anda konfigurasikan"
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
@@ -6800,7 +7103,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:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6813,7 +7116,7 @@ msgstr ""
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6823,42 +7126,42 @@ msgstr ""
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Alamat IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP otomatis"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
msgstr "Start saat boot"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6870,40 +7173,40 @@ msgstr ""
"misalnya ``mesin.lab.grup.com''.\n"
"Anda juga bisa masukkan alamat IP gateway kalau ada"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Device gateway"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Lacak ID kartu network (berguna di laptop)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy biasanya ftp://..."
@@ -6915,7 +7218,7 @@ msgstr "Konfigurasi Internet"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Anda ingin tes koneksi Internet sekarang?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Tes koneksi Anda..."
@@ -6943,43 +7246,43 @@ msgstr "Konfigurasi Koneksi"
msgid "Please fill or check the field below"
msgstr "Silakan isi atau cek kolom berikut"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ kartu"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Mem kartu (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO kartu"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 kartu"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 kartu"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Nomor telepon Anda"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Nama provider (misalnya provider.net.id)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Nomor telepon provider"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "DNS Provider 1 (boleh diisi boleh tidak)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "DNS Provider 2 (boleh diisi boleh tidak)"
@@ -6987,28 +7290,28 @@ msgstr "DNS Provider 2 (boleh diisi boleh tidak)"
msgid "Choose your country"
msgstr "Pilih negri Anda"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "mode dial"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Laju koneksi"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Timeout koneksi (detik)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Login Account (username)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Katasandi Account"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr "Inggris"
@@ -7044,7 +7347,7 @@ msgstr "File backup rusak"
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7090,7 +7393,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7118,7 +7421,7 @@ msgstr "printer remote"
msgid "Printer on remote CUPS server"
msgstr "Printer di server CUPS remote"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Printer di server lpd remote"
@@ -7134,7 +7437,7 @@ msgstr "Printer di server SMB/windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Printer di server NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Masukkan URI device printer"
@@ -7142,110 +7445,110 @@ msgstr "Masukkan URI device printer"
msgid "Pipe job into a command"
msgstr "Pipe job ke perintah"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Model tak dikenal"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Printer Lokal"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Printer Remote"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " di port paralel \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", printer USB \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", alat multifungsi di port paralel \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", alat multifungsi di USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", alat multifungsi di HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", alat multifungsi"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", cetak ke %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
-msgstr "di server LPD \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr " di server LPD \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", port %s"
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
-msgstr "di server Mindows \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr " di server SMB/Mindows \"%s\", share \"%s\""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
-msgstr "di server Novell \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " di server Novell \"%s\", printer \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", menggunakan perintah %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Printer telanjang (tanpa driver)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(di %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(di mesin ini)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Di server CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Default)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Pilih koneksi Printer"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Bagaimana printer ini disambung ke komputer?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7255,15 +7558,19 @@ msgstr ""
"Printer pada server CUPS remote tak perlu dikonfigurasikan di sini; printer "
"ini akan secara otomatis dideteksi."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "Printer deteksi otomatis (Lokal, TCP/Socket, dan SMB)"
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "konfigurasi CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Tentukan server CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7280,7 +7587,7 @@ msgstr ""
"di jaringan lain, Anda harus menyodorkan alamat IP dan nomor port server "
"CUPS utk mendapat info printer dari server. Jika tidak, biarkan kosong."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7296,32 +7603,32 @@ msgstr ""
"manual. Jangan lupa restart CUPS selanjutnya (komando: \"service cups restart"
"\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "Alamat IP harus seperti 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Nomor port harus berupa bilangan bulat"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Konfigurasi CUPS otomatis"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Tambah printer baru"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7343,47 +7650,98 @@ msgstr ""
"Anda akses ke semua driver printer tersedia, opsi driver, dan tipe koneksi "
"printer."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Printer Lokal"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
+"\n"
+"Selamat Datang di Dukun Setup Printer\n"
+"\n"
+"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini, dg "
+"jaringan atau dg mesin Mindows remote.\n"
+"\n"
+"Jika Anda punya printer terhubung dg mesin ini, hubungkan dan nyalakan "
+"sehingga ia/mereka dapat dideteksi. Juga printer jaringan dan mesin Mindows "
+"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"
+"\n"
+" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
+"printer(s) sekarang."
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
"\n"
"Selamat Datang di Dukun Setup Printer\n"
"\n"
-"Dukun ini membantu Anda menginstal printer terhubung dengan komputer ini.\n"
+"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini atau "
+"jaringan.\n"
"\n"
-"Hubungkan printer Anda ke komputer ini dan nyalakan. Klik \"Lanjut\" jika "
-"siap, atau \"Batal\" bila Anda tak ingin men-set up printer sekarang.\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 bahwa beberapa komputer bisa crash saat deteksi otomatis printer, "
-"matikan \"Deteksi otomatis printer\" utk instalasi printer tanpa deteksi "
-"otomatis. Pakailah \"Mode Ahli\" printerdrake bila Anda ingin set up "
-"pencetakan di printer remote jika printerdrake tak otomatis menampilkannya."
+"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"
+"\n"
+" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
+"printer(s) sekarang."
+
+#: ../../printerdrake.pm_.c:213
+msgid "Auto-detect printers connected to this machine"
+msgstr "Deteksi printer yg terhubung dg mesin ini"
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
-msgstr "Printer deteksi otomatis"
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "Deteksi printer yang terhubung dengan jaringan lokal"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "Deteksi printer yg terhubung dg mesin Microsoft Windows"
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Printer Lokal"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7406,57 +7764,49 @@ msgstr ""
"ingin mengubah opsi standar setting (tray kertas, kualitas cetak, ...), "
"pilih \"Printer\" di bagian \"Perangkat Keras\" Pusat Kontrol Mandrake."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Deteksi Otomatis Printer"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Printer auto-detection"
+msgstr "Deteksi otomatis printer"
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake dapat mendeteksi otomatis printer paralel dan USB yang "
-"terkoneksi lokal, tapi ingat di beberapa sistem deteksi otomatis DAPAT "
-"MEMBEKUKAN SISTEM ANDA DAN MEMBUAT SISTEM FILE ANDA RUSAK! Jadi kerjakan "
-"ATAS RESIKO ANDA!\n"
-"\n"
-"Anda ingin deteksi otomatis printer?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
-msgstr "Lakukan deteksi otomatis"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Setup printer secara manual"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", printer jaringan \"%s\", port %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Tes port"
+#: ../../printerdrake.pm_.c:307
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", printer \"%s\" di server SMB/Windows \"%s\""
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Terdeteksi %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Printer di port paralel \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "printer USB \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Printer jaringan \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:323
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Printer \"%s\" di server SMB/Windows \"%s\""
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7468,35 +7818,19 @@ msgstr ""
"sebanding dg LPT1:, LPT2:, ..., printer USB pertama: /dev/usb/lp0, printer "
"USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Masukkan nama alat atau file!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr ""
-"Tiada printer lokal ditemukan!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "Printer tak ditemukan!"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Printer network hanya dapat diinstal setelah instalasi ini. Pilih \"Hardware"
-"\" lalu \"Printer\" di Pusat Kontrol Mandrake."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Untuk menginstal printer network, klik \"Batal\", pindah ke \"Mode Ahli\", "
-"dan klik \"Tambah printer baru\" lagi."
+#: ../../printerdrake.pm_.c:485
+msgid "Available printers"
+msgstr "Printer yg tersedia"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7504,7 +7838,7 @@ msgstr ""
"Printer berikut terdeteksi otomatis, jika bukan yang ingin dikonfigurasikan, "
"masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7512,7 +7846,7 @@ msgstr ""
"Daftar printer terdeteksi otomatis. Pilihlah printer yang ingin diset up "
"atau masukkan nama alat/file di baris masukan"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7523,7 +7857,7 @@ msgstr ""
"otomatis. Jika printer Anda tak terdeteksi dengan benar atau jika ingin Anda "
"konfigurasi sendiri, jalankan \"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7535,7 +7869,7 @@ msgstr ""
"dengan benar atau jika ingin Anda konfigurasi sendiri, jalankan "
"\"Konfigurasi manual\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7543,11 +7877,11 @@ msgstr ""
"Pilih port tempat printer Anda terhubung atau masukkan nama alat/file di "
"baris masukan"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "Pilihlah port tempat printer Anda terhubung."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7555,66 +7889,19 @@ msgstr ""
" (Port Paralel: /dev/lp0, /dev/lp1, ..., sebanding dengan LPT1:, LPT2:, ..., "
"printer USB pertama: /dev/usb/lp0, printer USB kedua: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
-msgstr "Pilih/masukkan printer/alat!"
+msgstr "Pilih/masukkan printer/device!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Konfigurasi manual"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
-"LaserJet 1100/1200/1220/3200/3300 dengan scanner), HP PhotoSmart P100/1315 "
-"atau HP LaserJet 2200?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Instalasi paket HPOJ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Sedang mencek alat dan mengkonfigurasi HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Instalasi paket SANE..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Instalasi paket..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Alat multifungsi HP sedang di-scan"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Alat multifungsi HP sedang di-scan"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Membuat port printer tersedia utk CUPS ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Pembacaan database printer..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7622,27 +7909,46 @@ msgstr ""
"Untuk memakai printer lpd remote, berikan nama host\n"
"server printer dan nama printer di server tsb."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Nama host remote"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Nama printer remote"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Nama host remote hilang!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Nama printer remote hilang!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "Terdeteksi model: %s %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Scanning network..."
+msgstr "Jaringan sedang di-scan..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", printer \"%s\" di server \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Printer \"%s\" di server \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (windows 95/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7654,35 +7960,47 @@ msgstr ""
"share printer yang ingin Anda akses, juga nama user, katasandi, dan info "
"workgroup."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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 ""
+" Jika printer yg diinginkan terdeteksi, pilihlah dari daftar lalu tambahkan "
+"nama user, katakunci, dan/atau grupkerja jika perlu."
+
+#: ../../printerdrake.pm_.c:739
msgid "SMB server host"
msgstr "Host server SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP server SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Nama share"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
-msgstr "Workgroup"
+msgstr "Grupkerja"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+msgid "Auto-detected"
+msgstr "Otomatis terdeteksi"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Harus ada nama/IP server!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Nama share Samba hilang!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr "PERINGATAN KEAMANAN!"
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7724,7 +8042,7 @@ msgstr ""
"Printerdrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7735,7 +8053,7 @@ msgstr ""
"Set up server Windows Anda agar printer tersedia di protokol IPP dan set up "
"pencetakan dari mesin ini dengan tipe koneksi \"%s\" di Printerdrake.\n"
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7747,11 +8065,11 @@ msgstr ""
"\n"
"Anda ingin lanjutkan set up printer ini seperti yang Anda lakukan sekarang?"
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7762,50 +8080,68 @@ msgstr ""
"NetWare (tak selalu sama dengan nama TCP/IPnya) juga nama antrian printer "
"yang ingin digunakan beserta nama user dan katasandinya."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Server Printer"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Nama antrian printer"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Nama server NCP hilang!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Nama antrian NCP hilang!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "Host \"%s\", port %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Opsi Printer TCP/Soket"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-"Untuk mencetak ke printer soket, berikan nama host printer (dan nomor "
-"portnya). Nomor port server HP JetDirect biasanya 9100, server lain "
-"bervariasi. Lihat manual perangkat keras Anda."
+"Pilih satu printer dari daftar atau isilah namahost atau IP dan nomor port "
+"opsional (default 9100)."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Nama host printer"
+#: ../../printerdrake.pm_.c:978
+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 ""
+"Untuk mencetak ke printer TCP/socket, berikan nama host atau IP printer dan "
+"nomor portnya (default 9100). Nomor port server HP JetDirect biasanya 9100, "
+"server lain mungkin bervariasi. Lihat manual perangkat keras Anda."
+
+#: ../../printerdrake.pm_.c:983
+msgid "Printer host name or IP missing!"
+msgstr "Nama host printer atau IP tidak ada!"
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr "Nama host printer hilang!"
+#: ../../printerdrake.pm_.c:1005
+msgid "Printer host name or IP"
+msgstr "Nama host atau IP printer"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Device Printer URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7815,11 +8151,11 @@ msgstr ""
"spesifikasi CUPS/Foomatic. Ingat, tak semua tipe URI di-support oleh semua "
"spooler."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Harus diisi URI valid!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7827,23 +8163,27 @@ msgstr ""
"Tiap printer perlu nama (misalnya \"printer\"). Kolom Penjelasan / Lokasi "
"tak harus terisi. Itu komentar utk user."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nama Printer"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Lokasi"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Pembacaan database printer..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Persiapan database printer ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Model printer Anda"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7868,24 +8208,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Model sudah benar"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Pilih model secara manual"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Seleksi model printer"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Anda punya model printer mana?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7899,7 +8239,7 @@ msgstr ""
"benar. Cari model yang benar di daftar jika kursor menunjukkan model yang "
"salah atau di \"Printer telanjang\"."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7907,11 +8247,11 @@ msgstr ""
"Jika printer Anda tak terdaftar, pilih yang kompatibel (lihat manual) atau "
"yang mirip."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Konfigurasi winprinter OKI"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7927,11 +8267,11 @@ msgstr ""
"cetak. Jika tidak, printer takkan bekerja. Setting tipe koneksi Anda akan "
"diabaikan oleh driver."
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Konfigurasi Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7942,7 +8282,7 @@ msgstr ""
"bukan printer di mesin remote atau kotak server cetak. Hubungkan printer "
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7963,7 +8303,7 @@ msgstr ""
"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
"alignmentdd dg program ini."
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7978,22 +8318,22 @@ msgstr ""
"perangkat keras printer laser (memori, unit duplex, tray extra). Ingat, "
"pencetakan dg kualitas tinggi berjalan amat lambat."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsi %s harus berupa integer!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsi %s harus berupa bilangan!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opsi %s keluar batas!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8002,11 +8342,11 @@ msgstr ""
"Ingin menset printer ini (\"%s\")\n"
"sbg printer standar?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Halaman tes"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8017,39 +8357,39 @@ msgstr ""
"Ingat: halaman tes photo perlu waktu lama untuk dicetak. Di printer laser "
"bermemori rendah itu bahkan takkan muncul. Umumnya cukup halaman tes standar."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Tiada halaman tes"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Cetak"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Halaman tes standar"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "Halaman tes alternatif (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Halaman tes alternatif (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Halaman tes foto"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Jangan cetak halaman tes"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Pencetakan halaman tes..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8064,7 +8404,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8072,15 +8412,15 @@ msgstr ""
"Halaman test telah dikirim ke printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "Bekerja dg baik?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Printer telanjang"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8093,7 +8433,7 @@ msgstr ""
"<file>\". Alat grafis memungkinkan Anda memilih printer dan memodifikasi "
"setting dengan mudah.\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8103,8 +8443,8 @@ msgstr ""
"banyak aplikasi, tapi jangan berikan nama file di sini karena file yang "
"dicetak akan diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8116,18 +8456,18 @@ msgstr ""
"Komando \"%s\" juga memungkinkan modifikasi setting job cetak tertentu. "
"Tambahkan setting yang diinginkan ke baris perintah, mis. \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
+#, 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 ""
"Untuk mengetahui opsi printer bacalah daftar di bawah atau klik tombol "
-"\"Daftar opsi cetak\".%s\n"
+"\"Daftar opsi cetak\".%s%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8135,7 +8475,7 @@ msgstr ""
"Daftar opsi cetak tersedia untuk printer ini:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8144,8 +8484,8 @@ msgstr ""
"Utk mencetak file dari baris komando (window terminal) gunakan perintah \"%s "
"<file>\".\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8155,13 +8495,13 @@ msgstr ""
"aplikasi. Tapi jangan berikan nama file di sini karena file yg dicetak akan "
"diberikan oleh aplikasi.\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr "Untuk mendapat daftar opsi printer klik \"Daftar opsi cetak\"."
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8170,7 +8510,7 @@ msgstr ""
"Utk mencetak file dari baris komando (jendela terminal) gunakan komando \"%s "
"<file>\" atau \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8185,7 +8525,7 @@ msgstr ""
"di desktop, berlabel \"STOP Printer!\", yang menghentikan semua job cetak "
"seketika bila Anda tekan. Ini berguna contohnya saat kertas macet.\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8198,45 +8538,45 @@ msgstr ""
"cetak tertentu. Tambahkan setting yg diinginkan ke baris perintah, misalnya "
"\"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1773
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2153
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Cetak/Scan di \"%s\""
+msgstr "Cetak/Scan/Kartu Foto di \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Cetak/Scan di \"%s\""
-#: ../../printerdrake.pm_.c:1776
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2156
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Cetak/Scan di \"%s\""
+msgstr "Cetak/Akses Kartu Foto di \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Pencetakan di printer \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Tutup"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Daftar opsi cetak"
-#: ../../printerdrake.pm_.c:1802
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2182
+#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8244,19 +8584,18 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Alat multifungsi HP Anda terkonfigurasi otomatis agar dapat men-scan. Kini "
-"Anda dapat men-scan dg \"scanimage\" (\"scanimage -d hp:%s\" utk menentukan "
+"Alat multifungsi Anda terkonfigurasi otomatis agar dapat men-scan. Kini Anda "
+"dapat men-scan dg \"scanimage\" (\"scanimage -d hp:%s\" utk menentukan "
"scanner jika Anda punya beberapa) dari baris perintah atau dg antarmuka "
"grafis \"xscanimage\" atau \"xsane\". Jika Anda memakai GIMP, Anda dapat "
-"juga men-scan dg memilih titik yg sesuai di menu \"File\"/\"Acquire\". "
-"Panggil \"man scanimage\" dan \"man sane-hp\" di baris perintah "
-"untukinformasi lanjut.\n"
+"juga men-scan dg memilih poin yg sesuai di menu \"File\"/\"Acquire\". "
+"Panggil \"man scanimage\" di baris perintah untuk informasi lanjut.\n"
"\n"
"Jangan pakai \"scannerdrake\" utk alat ini!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8266,18 +8605,26 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
-
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+"Printer Anda telah dikonfigurasikan secara otomatis untuk mengakses drive "
+"kartu foto dari PC Anda. Kini Anda dapat mengakses kartu foto Anda dg "
+"program grafis \"MtoolsFM\" (Menu: \"Aplikasi\" -> \"Perkakas File\" -> "
+"\"Manajer File MTools\") atau baris komando \"mtools\" (ketik \"man mtools\" "
+"di baris komando utk info lebih lanjut). Anda temukan sistem file kartu di "
+"drive \"p:\", atau huruf drive selanjutnya bila Anda punya lebih dari satu "
+"printer HP dengan drive kartu foto. Di \"MtoolsFM\" Anda dapat men-switch "
+"drive dg isian di sudut kanan atas daftar file."
+
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Pembacaan data printer..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Transfer konfigurasi printer"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8292,7 +8639,7 @@ msgstr ""
"ditransfer. \n"
"Tak semua antrian dapat ditransfer karena alasan berikut:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8300,17 +8647,17 @@ msgstr ""
"CUPS tak men-support printer server Novell atau printer yg mengirim data ke "
"perintah format-bebas.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr "PDQ hanya men-support printer lokal, LPD remote, dan Soket/TCP.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD and LPRng tak men-support printer IPP.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8318,7 +8665,7 @@ msgstr ""
"Antrian tak dibuat oleh program ini atau \"foomatic-configure\" tak dapat "
"ditransfer."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8328,7 +8675,7 @@ msgstr ""
"Juga printer yg terkonfigurasi dengan file PPD dari pabrik atau driver CUPS "
"asli tak dapat ditransfer."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8337,15 +8684,15 @@ msgstr ""
"\n"
"Tandai printer yg ingin Anda transfer lalu klik\"Transfer\"."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "Jangan transfer printer"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Transfer"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8356,27 +8703,27 @@ msgstr ""
"Klik \"Transfer\" untuk menindihnya.\n"
"Anda juga dapat menuliskan nama baru atau melewatkan printer ini."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Nama printer harus hanya berupa huruf, angka, atau garisbawah"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr "Sudah ada printer \"%s\", Anda benar ingin menindih konfigurasinya?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nama printer baru"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "Pemindahan %s ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8385,29 +8732,29 @@ msgstr ""
"Anda telah men-transfer printer standar lama Anda (\"%s\"), Akankah ia juga "
"dijadikan printer default pada sistem cetak baru %s?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Penyegaran data printer..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Konfigurasi printer remote"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Pemulaian network..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Konfigurasikan jaringan sekarang"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Fungsi network tak dikonfigurasi"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8419,11 +8766,11 @@ msgstr ""
"tanpa konfigurasi network, Anda takkan dapat menggunakan printer yang Anda "
"konfigurasikan sekarang. Bagaimana Anda mau teruskan?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Jalan tanpa konfigurasi jaringan"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8438,7 +8785,7 @@ msgstr ""
"\"Koneksi\", lalu set printer juga dg Pusat Kontrol Mandrake, bagian "
"\"Hardware\"/\"Printer\""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8447,24 +8794,24 @@ msgstr ""
"Akses network tak jalan dan tak dapat dimulai. Cek konfigurasi dan hardware "
"Anda, lalu coba konfigurasikan printer remote Anda lagi."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Mulai ulang sistem cetak ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "tinggi"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "pengecut"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalasi sistem cetak dalam level keamanan %s"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8487,11 +8834,11 @@ msgstr ""
"\n"
"Benarkah Anda ingin mengkonfigurasikan printer di mesin ini?"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Inisiasi sistem cetak pada saat boot"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8511,63 +8858,63 @@ msgstr ""
"\n"
"Anda ingin auto-start sistem cetak dinyalakan lagi?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "Pemeriksaan perangkat lunak terinstal"
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "Hapus LPRng..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "Hapus LPD..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Pilih spooler printer"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Sistem (spooler) printer mana yang ingin digunakan?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurasikan printer \"%s\"..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Instalasi Foomatic ..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Opsi printer"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Persiapan PrinterDrake ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Konfigurasi aplikasi..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Ingin konfigurasi printer?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "Sistem cetak: "
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8579,7 +8926,7 @@ msgstr ""
"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8588,32 +8935,28 @@ msgstr ""
"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
"setting; membuatnya printer default; atau melihat info tentangnya."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Penyegaran daftar printer (utk menampilkan semua printer CUPS remote)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Ubah sistem cetak"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modus Normal"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Keluar"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Ingin konfigurasikan printer lain?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Modifikasi konfigurasi printer"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8622,100 +8965,100 @@ msgstr ""
"Printer %s\n"
"Apa yg Anda inginkan utk modifikasi printer ini?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "Kerjakan!"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Tipe koneksi printer"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Nama, penjelasan, lokasi printer"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "Pembuat, model, driver printer"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "Pembuat, model printer"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "Set printer ini sebagai standar"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Tambah printer ini ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Hapus printer ini dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Cetak halaman tes"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Cara penggunaan printer ini"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Hapus printer"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Menghapus printer lama \"%s\"..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Printer standar"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Printer \"%s\" kini diset sbg printer standar."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Penambahan printer ke Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses ditambahkan ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Gagal menambahkan printer \"%s\" ke Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Hapus printer dari Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Printer \"%s\" sukses dihapus dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Gagal menghapus printer \"%s\" dari Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Anda ingin menghapus printer \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Menghapus printer \"%s\"..."
@@ -8765,8 +9108,8 @@ msgid ""
msgstr "Isilah info proxy ftp, kosongkan jika tak perlu"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url harus berformat 'ftp:'"
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url harus berawalan 'ftp:' atau 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8815,42 +9158,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Level ini harus hati-hati. Level ini akan membuat sistem Anda akan mudah\n"
-"digunakan, tapi sangat sensitif: mesin ini tidak boleh digunakan untuk\n"
-"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
-"akses katasandi."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
-"Sekuriti kini cukup tinggi untuk dapat melayani koneksi banyak klien.\n"
-"Jika mesin Anda hanya berfungsi sebagai klien, pilihlah level lebih rendah."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Opsi Lanjutan"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Pilihan"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
@@ -9151,7 +9458,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Sistem"
@@ -9279,7 +9586,7 @@ msgstr ""
"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
@@ -9396,20 +9703,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Instalasi paket..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9417,159 +9724,158 @@ msgstr ""
"Tabel partisi rusak tak terbaca :(\n"
"Partisi buruk akan dicoba dihapus"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
msgstr "Konfigurasi Server Terminal Mandrake"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
msgstr "Aktifkan Server"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
msgstr "Pasifkan Server"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
msgstr "Jalankan Server"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
msgstr "Stop Server"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr "Floppy Etherboot/ISO"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr "Image Boot Net"
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
msgstr "Tambah/Hapus User"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr "Tambah/Hapus Klien DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Pertolongan"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disket boot"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr "ISO boot"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr "Bangun Seluruh Kernel -->"
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr "Butuh beberapa menit."
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr "Tiada kernel terpilih!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr "Bangun NIC Single -->"
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
msgstr "Tiada nic terpilih"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr "Bangun Semua Kernel -->"
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
msgstr "<-- Hapus"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
msgstr "Hapus Semua NBI"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
msgstr "Tambah user -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr "<-- Hapus User"
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr "Tambah Klien -->"
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr "<-- Hapus Klien"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
msgstr "Konfig dhcpd..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
msgstr "Tulis konfigurasi"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
msgstr "Masukkan floppy:"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr "Gagal akses ke floppy!"
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr "Disket dapat dilepas sekarang"
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
msgstr "Floppy drive tak tersedia"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Image ISO Etherboot adalah %s"
-#: ../../standalone/drakTermServ_.c:964
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr "Ada yg salah!"
+msgstr "Ada yg salah! - mkisofs sudah diinstal?"
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Perlu bikin dulu /etc/dhcpd.conf first!"
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Ada Kesalahan"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "File image `%s' tak ditemukan."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Konfigurasi Instalasi Otomatis"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9595,22 +9901,22 @@ msgstr ""
"\n"
"Jalan terus?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Konfigurasi Step Otomatis"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
"Pada tiap tahapan pilih apakah instalasi akan diulang, atau akan manual"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
msgstr "Disket auto install sedang dibuat"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9622,30 +9928,43 @@ msgstr ""
"\n"
"Parameter instalasi otomatis tersedia di bagian sebelah kiri"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Selamat!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr "Floppy sukses dibuat. Instalasi bisa direplikasi."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Instalasi Otomatis"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Tambah item"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Hapus item terakhir"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9655,7 +9974,7 @@ msgstr ""
" Laporan DrakBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9667,7 +9986,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9679,85 +9998,171 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
-msgstr "total kemajuan"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+msgid "Total progess"
+msgstr "Total perkembangan"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+"Ada %s, hapus?\n"
+"\n"
+"Awas: Jika Anda telah melakukan proses ini Anda mungkin perlu\n"
+" membersihkan entri dari authorized_keys pada server."
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr "Perlu waktu untuk membuat kunci"
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr "ERROR: Tak dapat menghasilkan %s."
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+"Transfer sukses\n"
+"Anda mungkin ingin mengecek Anda dapat login ke server dg:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"tanpa ditanyai katakunci."
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+#, fuzzy
+msgid "Not erasable media!"
+msgstr "Media removable"
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr "Perlu waktu untuk menghapus media."
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Gunakan pita utk backup"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"Aktivitas drakbackup via %s:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:880
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1289
+#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-"daftar file dikirim oleh FTP : %s\n"
+"daftar file yg dikirim oleh FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-" problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
+" Problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"Aktivitas drakbackup via CD:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"Aktivitas drakbackup via tape:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9765,109 +10170,153 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-"Opsi ini memungkinkan backup / simpan ulang semua file di direktori /etc.\n"
+"Opsi ini memungkinkan backup / restorasi semua file di direktori /etc.\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr "Backup file System Anda. ( direktori /etc )"
+#: ../../standalone/drakbackup_.c:1527
+msgid "Backup your System files. (/etc directory)"
+msgstr "Backup file System Anda. (direktori /etc)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
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:1100
+#: ../../standalone/drakbackup_.c:1547
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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1700
msgid "Use network connection to backup"
-msgstr "Pakai koneksi FTP utk backup"
+msgstr "Pakai koneksi jaringan utk backup"
+
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr "Pakai Expect utk SSH"
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+"Buat/Transfer\n"
+"kunci cadangan SSH"
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+" Transfer \n"
+"Sekarang"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr "Kunci sudah ada di tempat"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:1269
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Masukkan direktori utk\n"
+"Masukkan direktori (atau modul) utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr "Perlu namahost, namauser dan katakunci!"
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
-msgstr "Pilih ruang CD Anda"
+#: ../../standalone/drakbackup_.c:1844
+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 ""
+"Pilih alat CD/DVD Anda\n"
+"(Tekan Enter untuk menyalurkan setting ke tempat isian lain.\n"
+"Field ini tak diperlukan, hanya alat utk mengisi formulir.)"
+
+#: ../../standalone/drakbackup_.c:1849
+msgid "Please choose your CD/DVD media size"
+msgstr "Pilih ukuran media CD/DVD Anda"
+
+#: ../../standalone/drakbackup_.c:1855
+msgid "Please check for multisession CD"
+msgstr "Mohon cek perihal CD multisession"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
+#: ../../standalone/drakbackup_.c:1867
+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:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"Cek jika Anda ingin memasukkan\n"
-" boot instalasi di CD Anda."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
+msgstr " Hapus Sekarang "
+
+#: ../../standalone/drakbackup_.c:1874
+msgid "Please check if you are using a DVDR device"
+msgstr "Periksa apakah Anda menggunakan alat DVDR"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Periksa apakah Anda menggunakan alat DVDRAM"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9875,21 +10324,32 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+msgid "No CD device defined!"
+msgstr "Tidak ada alat CD didefinisikan!"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:1446
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1983
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Cek apakah Anda ingin menggunakan alat non-rewinding."
+
+#: ../../standalone/drakbackup_.c:1989
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
+msgstr "Cek apakah Anda ingin menghapus tape sebelum backup."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9897,129 +10357,141 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2066
msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2161
msgid "Tape"
-msgstr "Tipe"
+msgstr "Tape"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:1648
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2214
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 "Pastikan daemon cron masuk dalam daftar servis."
+msgstr ""
+"Pastikan daemon cron masuk dalam daftar servis.\n"
+"\n"
+"Ingat bahwa kini semua media 'net' juga menggunakan harddisk."
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr "di CDROM"
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr "di Device Pita"
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10027,7 +10499,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10035,7 +10507,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10043,7 +10515,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10051,7 +10523,7 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10060,45 +10532,57 @@ msgstr ""
"\n"
"- Simpan di Hard drive di path : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- Bakar ke CD"
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:1978
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2526
+#, c-format
msgid " on device : %s"
-msgstr "Device Mouse: %s\n"
+msgstr " di device : %s"
+
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1979
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2528
+#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
"\n"
-"- Simpan di FTP di host : %s\n"
+"- Simpan ke tape di alat : %s"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tHapus=%s"
-#: ../../standalone/drakbackup_.c:1983
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2532
+#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
"\n"
-"- Simpan di FTP di host : %s\n"
+"- Simpan via %s di host : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10107,7 +10591,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10115,19 +10599,19 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10136,49 +10620,47 @@ msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
-msgstr "\t-Network dg FTP.\n"
+msgstr "\t-Network dg rsync.\n"
-#: ../../standalone/drakbackup_.c:2001
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
-msgstr "\t-Network dg FTP.\n"
+msgstr "\t-Network dg webdav.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-"Daftar data simpan ulang:\n"
+"Daftar data restorasi:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10186,134 +10668,128 @@ msgstr ""
"Daftar data rusak:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Mohon uncheck atau hapus nanti."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "File backup rusak"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
-msgstr " Semua data terpilih telah "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
+msgstr " Semua data terpilih telah "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
-msgstr " Berhasil Disimpan Ulang di %s "
+msgstr " Berhasil Direstorasi di %s "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
-msgstr " Simpan Ulang Konfigurasi "
+msgstr " Restorasi Konfigurasi "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
-msgstr "OK utk simpan ulang file lain."
+msgstr "OK utk restorasi file lain."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
-msgstr "Daftar user simpan ulang (hanya tanggal terakhir per user yg penting)"
+msgstr "Daftar user restorasi (hanya tanggal terakhir per user yg penting)"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Backup file sistem sebelum:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
-msgstr "pilih tanggal simpan ulang"
+msgstr "pilih tanggal restorasi"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Pakai Hard Disk utk backup"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "Koneksi FTP"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Koneksi Aman"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
-msgstr "Simpan ulang dari Hard Disk."
+msgstr "Restorasi dari Hard Disk."
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Masukkan direktori tempat backup disimpan"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
-msgstr "Pilih media lain utk disimpan ulang"
+msgstr "Pilih media lain utk direstorasi"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Media Lain"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
-msgstr "Simpan ulang sistem"
+msgstr "Restorasi sistem"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
-msgstr "Simpan ulang User"
+msgstr "Restorasi User"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
-msgstr "Simpan ulang Lain-lain"
+msgstr "Restorasi Lain-lain"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr "pilih path utk simpan ulang (selain / )"
+#: ../../standalone/drakbackup_.c:3168
+msgid "select path to restore (instead of /)"
+msgstr "pilih path utk restorasi (selain /)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
-"Lakukan backup baru sebelum simpan ulang (hanya utk backup incremental.)"
+msgstr "Lakukan backup baru sebelum restorasi (hanya utk backup incremental.)"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
-msgstr "Hapus direktori user sebelum simpan ulang."
+msgstr "Hapus direktori user sebelum restorasi."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
-msgstr "Simpan ulang semua backup"
+msgstr "Restorasi semua backup"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
-msgstr "Simpan ulang pilihan sendiri"
+msgstr "Restorasi pilihan sendiri"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Sebelumnya"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Simpan"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Bangun Backup"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
-msgstr "Simpan ulang"
+msgstr "Restorasi"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Lanjut"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10321,9 +10797,9 @@ msgstr ""
"Buatlah backup sebelum menyimpan ulang...\n"
" atau pastikan path utk menyimpan sudah benar."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10331,15 +10807,15 @@ msgstr ""
" surat laporan Anda tak terkirim\n"
" Mohon konfigurasikan sendmail"
-#: ../../standalone/drakbackup_.c:2933
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3598
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Paket berikut akan diinstal"
+msgstr ""
+"Paket berikut perlu diinstal:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:2956
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10347,19 +10823,19 @@ msgstr ""
"Error saat pengiriman file via FTP.\n"
" Betulkan konfigurasi FTP Anda."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
-msgstr "Pilih data utk disimpan ulang..."
+msgstr "Pilih data utk direstorasi..."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Pilih media backup..."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Pilih data backup..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10367,75 +10843,59 @@ msgstr ""
"Tiada file konfigurasi \n"
"Mohon klik Dukun atau Lanjutan"
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Sedang dibangun ... tunggu."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Backup file sistem"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Backup file user"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Backup file lain"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Total Kemajuan"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "file dikirim dg FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Kirim file..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Daftar data utk dimasukkan ke CDROM."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Masukkan kecepatan penulis cd"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "Masukkan nama alat Penulis CD (mis: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Cek jika Anda ingin memasukkan boot instalasi ke CD"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Backup Sekarang dari file konfigurasi"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Lihat Konfigurasi Backup."
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Konfigurasi Dukun"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Konfigurasi Lanjutan"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Backup Sekarang"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10446,7 +10906,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10468,22 +10928,22 @@ msgid ""
msgstr ""
"penjelasan opsi:\n"
"\n"
-" Di tahap ini Drakbackup mengizinkan Anda mengubah:\n"
+" Di tahap ini Drakbackup memungkinkan Anda mengubah:\n"
"\n"
" - Mode kompresi:\n"
-" \n"
+"\n"
" Jika Anda pilih kompresi bzip2, Anda akan mengkompres\n"
" data lebih baik daripada gzip (sekitar 2-10 %).\n"
" Opsi ini bukan standar karena\n"
" banyak makan waktu (sekitar 1000% lebih).\n"
-" \n"
+"\n"
" - Mode update:\n"
"\n"
" Opsi ini akan mengupdate backup Anda, tapi tak\n"
" benar-benar berguna karena Anda perlu\n"
" mengurai backup Anda sebelum dapat meng-update.\n"
" \n"
-" - mode .backupignore:\n"
+" - Mode .backupignore:\n"
"\n"
" Seperti cvs, Drakbackup akan mengabaikan semua referensi\n"
" tertulis dalam file .backupignore di tiap direktori.\n"
@@ -10495,7 +10955,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10509,7 +10969,7 @@ msgstr ""
" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10533,7 +10993,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10555,7 +11015,7 @@ msgstr ""
" \n"
"\tOpsi ini dapat mem-backup direktori /etc, yg berisi\n"
"\tsemua file konfigurasi. Hati-hati saat tahap restore\n"
-"\t(simpan ulang) agar tak menindih:\n"
+"\t(restorasi) agar tak menindih:\n"
"\t\t/etc/passwd \n"
"\t\t/etc/group \n"
"\t\t/etc/fstab\n"
@@ -10584,21 +11044,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10616,7 +11076,7 @@ msgstr ""
"Hanya tanggal terkini yang akan dipakai, karena dg backup incremental \n"
"diperlukan restore satu demi satu tiap backup lama.\n"
"\n"
-"Jadi jika Anda tak suka simpan ulang user lepaslah pilihan semua kotak\n"
+"Jadi jika Anda tak suka restorasi user lepaslah pilihan semua kotak\n"
"tandanya.\n"
"\n"
"Jika tidak, Anda dapat memilih hanya satu opsi\n"
@@ -10634,18 +11094,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" update 2002 MandrakeSoft oleh Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10673,7 +11134,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:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10749,7 +11210,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10766,7 +11227,7 @@ msgstr ""
"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10787,7 +11248,7 @@ msgstr ""
"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
"file data backup secara manual.\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10861,85 +11322,119 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalasi %s gagal. Ada kesalahan berikut:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+"drakbug versi %s\n"
+"Haksalin (C) 2002 MandrakeSoft.\n"
+"Ini adalah piranti lunak bebas dan boleh disebar ulang di bawah batasan GPL "
+"GNU.\n"
+"\n"
+"pemakaian: drakbug [OPSI] [NAMA_PROGRAM]\n"
+"\n"
+"OPSI:\n"
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr " --help - cetak pesan bantu ini.\n"
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr " --report - program harus merupakan alat mandrake\n"
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr " --incident - program harus merupakan alat mandrake\n"
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr "Pelapor Kutu Mandrake"
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr "Dukun Kali Pertama"
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr "Sinkronisator"
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
msgstr "Alat Mandiri"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr "HardDrake"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
msgstr "Mandrake Online"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
msgstr "Menudrake"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
msgstr "Msec"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
msgstr "Kontrol Remote"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
msgstr "Manajer Software"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr "Alat Migrasi Mindows"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
msgstr "Userdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
msgstr "Dukun Konfigurasi"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
msgstr "Aplikasi:"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
msgstr "Paket: "
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr "Kernel:"
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
msgstr "Release: "
-#: ../../standalone/drakbug_.c:87
-#, fuzzy
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10953,151 +11448,150 @@ msgstr ""
"\n"
"\n"
"Klik tombol utk mengirim laporan kutu.\n"
-"Ini Akan membuka window browser web di https://www.bugzilla.com\n"
-"dan akan Anda dapatkan formulir utk diisi. Info yang tampil di atas akan\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"
-#: ../../standalone/drakbug_.c:101
-msgid "Not installed"
-msgstr "Tak terinstal"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
msgid "Report"
msgstr "Laporan"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "Tak terinstal"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr "koneksi ke dukun Bugzilla ..."
-#: ../../standalone/drakbug_.c:129
-#, fuzzy
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
msgstr "Browser tak tersedia! Installah satu"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Konfigurasi Jaringan (adapter %d)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profil: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Hapus profil..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profil yang hendak dihapus:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Buat profil baru..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"Nama profil yg akan dibuat (profil baru dibuat sbg salinan yg sekarang) :"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Nama Host: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Akses Internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipe: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interface: "
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status: "
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Tunggu"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Konfigurasi Akses Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "konfigurasi LAN"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Driver"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interface"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protokol"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Status"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Konfigurasi Local Area Network..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Klik di sini utk meluncurkan wizard ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Wizard..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Pasang"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Tersambung"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Tak tersambung"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Sambungkan..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Koneksi diputus"
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr "Awas, koneksi Internet lain terdeteksi, mungkin memakai jaringan Anda"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11105,36 +11599,36 @@ msgstr ""
"Tiada interface terkonfigurasi.\n"
"Konfigurasi dulu dg meng-klik 'Configure'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "konfigurasi LAN"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapter %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protokol Boot"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Dijalankan saat boot"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Klien DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "aktifkan sekarang"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "non-aktifkan sekarang"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11142,7 +11636,7 @@ msgstr ""
"Antarmuka ini belum dikonfigurasikan.\n"
"Luncurkan dukun konfigurasi di window utama"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11150,121 +11644,121 @@ msgstr ""
"Tiada koneksi internet.\n"
"Buat dulu dg meng-klik 'Configure'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "konfigurasi koneksi Internet"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "konfigurasi koneksi Internet"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tipe koneksi"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parameter"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Kartu Ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Klien DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "pemakaian: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Nama Modul"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ukuran"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "pembuatan bootdisk"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "standar"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Error DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "versi kernel"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Umum"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Area Pakar"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "opsi argumen mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "tambah modul"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "paksa"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "jika perlu"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "abaikan modul SCSI"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "abaikan modul RAID"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Hapus modul"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Keluaran"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Buat disk"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Pastikan media ada di device %s"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11273,12 +11767,12 @@ msgstr ""
"Media di device %s tidak ada atau write-protected.\n"
"Masukkan satu."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork gagal: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11289,99 +11783,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Cari font terinstal"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Lepas pilih font terinstal"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "baca semua font"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "tiada font ditemukan"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "selesai"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "tak ditemukan font di partisi termount"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Pilih ulang font yg benar"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "gagal temukan font.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Cari font di daftar instalasi"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Copy font"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Instalasi font True Tupe"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "tunggu saat ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Instalasi True Type selesai"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Konversi font"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "bangun type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "referensi Ghostscript"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "konversi font ttf"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "konversi font pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Sembunyikan file temporer"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Jalankan ulang XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Sembunyikan File Font"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "jalankan ulang xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11395,107 +11889,111 @@ msgstr ""
"-Anda dapat menginstal font dengan cara normal. Terkadang, font palsu dapat "
"membuat server X Anda hang."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Impor Font"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Ambil Font Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Buang Font"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Opsi Lanjutan"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Daftaf Font"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Pilih aplikasi yang mensupport font :"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Printer Generik"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Pilih file font atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Daftar Instalasi"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "klik di sini jika Anda yakin."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "di sini jika tidak."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Semua tak dipilih"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Semua Dipilih"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Hapus Daftar"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Tes Awal"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Salin font di sistem Anda"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Instal & konversikan Font"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Instalasi Akhir"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Hapus font di sistem Anda"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Un-Instalasi Akhir"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Pemakaian Bersama Koneksi Internet"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr "Maaf, support hanya untuk kernel 2.4"
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Pemakaian Bersama Koneksi Internet telah aktif"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11507,31 +12005,31 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "matikan"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "tutup"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "konfigurasi ulang"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Server-server sedang dimatikan"
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "Internet Connection Sharing telah dimatikan"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connection Sharing masih dimatikan"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11543,19 +12041,19 @@ msgstr ""
"\n"
"Apa yang ingin Anda lakukan?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "aktifkan"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Server-server akan dinyalakan"
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "Internet Connection Sharing sudah aktif"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11571,32 +12069,32 @@ msgstr ""
"Perhatikan: Anda mesti punya adapter jaringan untuk mensetup Local Area "
"Network (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (pakai module %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Antarmuka %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Tidak ada adaptor jaringan di sistem ini!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Tiada adapter jaringan ethernet terdeteksi. Jalankan konfigurator hardware."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Antarmuka jaringan"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11611,7 +12109,7 @@ msgstr ""
"\n"
"Apakah Anda mau melakukan setup Local Area Network untuk adapter itu?"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11619,11 +12117,11 @@ msgstr ""
"Silakan pilih adapter jaringan yang hendak disambung ke Local Area Network "
"Anda."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Antarmuka network telah dikonfigurasi"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11638,15 +12136,15 @@ msgstr ""
"\n"
"Anda dapat melakukannya secara manual tapi Anda perlu tahu yg Anda kerjakan."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Konfigurasi ulang otomatis"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Tampilkan konfigurasi antarmuka"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11663,7 +12161,7 @@ msgstr ""
"Atribut IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11682,32 +12180,32 @@ msgstr ""
"Atau, antarmuka dan server DHCP dapat dikonfigurasikan (lagi).\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Jaringan Lokal Kelas-C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "IP Server DHCP (Ini)"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Konfigurasi ulang antarmuka dan server DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Jaringan Lokal tak berakhiran `.0', keluar."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Ada potensi konflik alamat LAN pada konfigurasi %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Konfigurasi firewall terdeteksi!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11715,20 +12213,20 @@ msgstr ""
"Awas! Sudah ada konfigurasi firewall. Anda perlu mengecek dan membetulkan "
"secara manual setelah instalasi."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigurasi..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Mengkonfigurasikan skrip, menginstall software, menjalankan server..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problem instalasi paket %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11739,23 +12237,23 @@ msgstr ""
"pada Local Area Network di tempat Anda, dengan menggunakan konfigurasi "
"jaringan otomatis (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurasi telah seleasi.Namun sekarang masih dimatikan."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurasi telah selesai.Namun sekarang sudah aktif."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internet Connection Sharing belum pernah dikonfigurasikan"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Koneksi dan konfigurasi sharing Internet"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11770,20 +12268,13 @@ msgstr ""
"\n"
"Silakan pencet Konfigurasikan untuk mulai."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Pusat Kontrol"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Pilih tool yang hendak digunakan"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11795,74 +12286,79 @@ msgstr ""
"\n"
"\n"
"Jika Anda punya kartu TV tapi DrakX tak dapat mendeteksinya (modul bttv\n"
-"tak terdapat di \"/etc/modules\") atau xawtv terinstal, mohon kirimkan\n"
+"atau saa7134 tak terdapat di \"/etc/modules\") atau xawtv terinstal, "
+"kirimkan\n"
"hasil \"lspcidrake -v -f\" ke \"install\\@mandrakesoft.com\"\n"
"dengan subject \"undetected TV card\".\n"
"\n"
"\n"
"Anda dapat menginstalnya dg menuliskan \"urpmi xawtv\" sbg root di konsol."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "AS (siaran)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "AS (kabel)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "AS (kabel-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Cina (siaran)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "Jepang (siaran)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Jepang (kabel)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Eropa Timur"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
msgstr "Perancis [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irlandia"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Eropa Barat"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Selandia Baru"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Afrika Selatan"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr "TV kabel Optus Australia"
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11870,35 +12366,35 @@ msgstr ""
"Tolong,\n"
"tuliskan standar dan daerah tv Anda"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "standar TV :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Area :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Kanal TV sedang di-scan ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Men-scan kanal TV"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
msgstr "Ada error saat men-scan kanal TV"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr "XawTV tak diinstal"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr "Daagh!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr "Kini Anda dapat menjalankan xawtv di Window X\n"
@@ -11930,11 +12426,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "cara pakai: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Pilih keyboard Anda"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Ingin membuat tombol BackSpace menjadi Delete dalam konsol?"
@@ -11958,7 +12454,7 @@ msgstr "Gagal memulai upgrade live !!!\n"
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:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12066,132 +12562,125 @@ msgstr "Kalender"
msgid "Content of the file"
msgstr "Isi file"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr "Peringatan Mail/SMS"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "Pemberitahuan Mail"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "tunggu, sedang menelaah file: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
-msgstr "Konfigurasi peringatan Mail/SMS"
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "Konfigurasi peringatan Mail"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"Selamat datang di konfigurator mail/SMS.\n"
+"Selamat datang di konfigurator mail.\n"
"\n"
"Anda dapat mengeset sistem peringatan.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Server WWW Apache"
-#: ../../standalone/logdrake_.c:418
-#, fuzzy
+#: ../../standalone/logdrake_.c:417
msgid "Domain Name Resolver"
-msgstr "Nama domain"
+msgstr "Perumus Nama Domain"
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
-msgstr "Stop Server"
+msgstr "Server FTP"
-#: ../../standalone/logdrake_.c:420
-#, fuzzy
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
-msgstr "Server mail Postfix, server news Inn"
+msgstr "Server Mail Postfix"
-#: ../../standalone/logdrake_.c:421
-#, fuzzy
+#: ../../standalone/logdrake_.c:420
msgid "Samba Server"
-msgstr "Jalankan Server"
+msgstr "Server Samba"
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
+#: ../../standalone/logdrake_.c:421
msgid "SSH Server"
-msgstr "Server NIS"
+msgstr "Server SSH"
-#: ../../standalone/logdrake_.c:423
-#, fuzzy
+#: ../../standalone/logdrake_.c:422
msgid "Webmin Service"
-msgstr "Servis"
+msgstr "Servis Webmin"
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
+#: ../../standalone/logdrake_.c:423
msgid "Xinetd Service"
-msgstr "Server Printer"
+msgstr "Server Xinetd"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "setting servis"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Anda akan menerima peringatan bila salah satu servis terpilih terhenti"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "setting muatan"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Anda akan diperingatkan jika muatan lebih tinggi daripada nilai ini"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "konfigurasi peringatan"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Konfigurasikan cara sistem memperingatkan Anda"
+#: ../../standalone/logdrake_.c:458
+msgid "Please enter your email address below "
+msgstr "Masukkan alamat email Anda di bawah "
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
-msgstr "Simpan di..."
+msgstr "Simpan sbg.."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Tipe mouse yang anda punya?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "tiada serial_usb\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emulasikan tombol ketiga?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "Pembacaan data printer ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Pendeteksian alat..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Tes port"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s ditemukan di %s, konfigurasikan?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Pilih scanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Scanner %s ini tak disupport"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
@@ -12200,11 +12689,11 @@ msgstr ""
"Scannerdrake gagal mendeteksi scanner %s Anda.\n"
"Pilihlah device tempat scanner terhubung"
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "pilih device"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12215,7 +12704,7 @@ msgstr ""
"Anda dapat meluncurkan printerdrake dari Pusat Kontrol Mandrake bagian "
"Hardware."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12240,15 +12729,15 @@ msgstr ""
"\n"
"Bbrp device di kelas %s ditambahkan:\n"
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "konfigurasi firewall"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "konfigurasi firewall"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12260,7 +12749,7 @@ msgstr ""
"Anda sudah ada firewall.\n"
"Silakan tekan Konfigurasikan untuk mengganti atau menghapus firewall"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12509,48 +12998,48 @@ msgstr "Tidak bisa buka %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Tak dapat membuka file %s untuk ditulisi: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "Tidak, tak perlu DHCP"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Ya, perlu DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "Tidak, tak perlu NTP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Ya, perlu NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Jangan Simpan"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Simpan & Keluar"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Dukun Konfigurasi Firewall"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "Tidak (lindungi dari internet)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Ya (izinkan ini melewati firewall)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Tunggu, paket terinstal sedang diverifikasi"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12559,6 +13048,10 @@ msgstr ""
"Gagal menginstal paket kebutuhan : %s dan Bastille.\n"
" Coba instal secara manual."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Server, Web/FTP"
@@ -12608,6 +13101,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Tool untuk audio: player mp3 atau midi, mixer, dsb"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr "Basis Standar Linux. Tunjangan aplikasi partai ketiga"
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Buku dan Howto untuk Linux dan Free Software"
@@ -12696,10 +13193,6 @@ msgid "Office Workstation"
msgstr "Komputer Kantor"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, dsb"
@@ -12764,6 +13257,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Klien untuk berbagai protokol, termasuk ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr "LSB"
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Gerbang Internet"
@@ -12795,6 +13292,272 @@ msgstr "Multimedia - CD Burning"
msgid "Scientific Workstation"
msgstr "Aplikasi Ilmu pengetahuan"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#~ msgid ""
+#~ "\n"
+#~ "Drakbackup activities via $net_proto:\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "Aktivitas drakbackup via $net_proto:\n"
+#~ "\n"
+
+#~ msgid "\n"
+#~ msgstr "\n"
+
+#~ 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 ""
+#~ "Level ini harus digunakan dg hati-hati. Level ini membuat sistem Anda "
+#~ "mudah\n"
+#~ " digunakan, tapi amat sensitif: tak boleh digunakan untuk\n"
+#~ " mesin yang terhubung dg mesin lain atau ke Internet. "
+#~ "Tidak\n"
+#~ " ada akses katasandi."
+
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Dengan level sekuriti ini, sistem dapat digunakan sebagai server.\n"
+#~ " Cukup aman utk melayani koneksi banyak klien. Jika mesin "
+#~ "Anda\n"
+#~ " hanya berfungsi sebagai klien, pilihlah level lebih "
+#~ "rendah."
+
+#~ msgid "Basic Options"
+#~ msgstr "Opsi Dasar"
+
+#~ msgid "Security Checks"
+#~ msgstr "Cek Keamanan"
+
+#~ msgid "WARNING: $warning"
+#~ msgstr "AWAS: $warning"
+
+#~ msgid "$descr"
+#~ msgstr "$descr"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Daftar data utk dimasukkan ke CDROM."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Pilih ruang CD Anda"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Masukkan kecepatan penulis cd"
+
+#~ msgid "Please check if you want to erase your CDRW before"
+#~ msgstr "Cek apakah Anda ingin menghapus CDRW sebelum"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "Masukkan nama alat Penulis CD (mis: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Cek jika Anda ingin memasukkan boot instalasi ke CD"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Url harus berformat 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Cek jika Anda ingin memasukkan\n"
+#~ " boot instalasi di CD Anda."
+
+#~ msgid "Windows PDC"
+#~ msgstr "Mindows PDC"
+
+#~ msgid "Authentication Windows PDC"
+#~ msgstr "Otentikasi Mindows PDC"
+
+#~ msgid "PDC Server Name"
+#~ msgstr "Nama Server PDC"
+
+#~ 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 /"
+#~ "add and reboot the server"
+#~ msgstr ""
+#~ "Agar dapat dijalankan di PDC W2K, Anda perlu minta admin melakukan: C:"
+#~ "\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone / add "
+#~ "dan reboot server"
+
+#~ msgid "Tamil"
+#~ msgstr "Tamil"
+
+#~ msgid "on LPD server \"%s\", printer \"%s\""
+#~ msgstr "di server LPD \"%s\", printer \"%s\""
+
+#~ msgid "on Windows server \"%s\", share \"%s\""
+#~ msgstr "di server Mindows \"%s\", share \"%s\""
+
+#~ msgid "on Novell server \"%s\", printer \"%s\""
+#~ msgstr "di server Novell \"%s\", printer \"%s\""
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Selamat Datang di Dukun Setup Printer\n"
+#~ "\n"
+#~ "Dukun ini membantu Anda menginstal printer terhubung dengan komputer "
+#~ "ini.\n"
+#~ "\n"
+#~ "Hubungkan printer Anda ke komputer ini dan nyalakan. Klik \"Lanjut\" jika "
+#~ "siap, atau \"Batal\" bila Anda tak ingin men-set up printer sekarang.\n"
+#~ "\n"
+#~ "Ingat bahwa beberapa komputer bisa crash saat deteksi otomatis printer, "
+#~ "matikan \"Deteksi otomatis printer\" utk instalasi printer tanpa deteksi "
+#~ "otomatis. Pakailah \"Mode Ahli\" printerdrake bila Anda ingin set up "
+#~ "pencetakan di printer remote jika printerdrake tak otomatis "
+#~ "menampilkannya."
+
+#~ msgid "Auto-detect printers"
+#~ msgstr "Printer deteksi otomatis"
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Deteksi Otomatis Printer"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake dapat mendeteksi otomatis printer paralel dan USB yang "
+#~ "terkoneksi lokal, tapi ingat di beberapa sistem deteksi otomatis DAPAT "
+#~ "MEMBEKUKAN SISTEM ANDA DAN MEMBUAT SISTEM FILE ANDA RUSAK! Jadi kerjakan "
+#~ "ATAS RESIKO ANDA!\n"
+#~ "\n"
+#~ "Anda ingin deteksi otomatis printer?"
+
+#~ msgid "Do auto-detection"
+#~ msgstr "Lakukan deteksi otomatis"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Setup printer secara manual"
+
+#~ msgid ""
+#~ "No local printer found!\n"
+#~ "\n"
+#~ msgstr ""
+#~ "Tiada printer lokal ditemukan!\n"
+#~ "\n"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Printer network hanya dapat diinstal setelah instalasi ini. Pilih "
+#~ "\"Hardware\" lalu \"Printer\" di Pusat Kontrol Mandrake."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Untuk menginstal printer network, klik \"Batal\", pindah ke \"Mode Ahli"
+#~ "\", dan klik \"Tambah printer baru\" lagi."
+
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "Apakah printer Anda adalah alat multifungsi dari HP (OfficeJet, PSC, "
+#~ "LaserJet 1100/1200/1220/3200/3300 dengan scanner), HP PhotoSmart atau HP "
+#~ "LaserJet 2200?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Instalasi paket HPOJ..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Sedang mencek alat dan mengkonfigurasi HPOJ ..."
+
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Instalasi paket SANE..."
+
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Instalasi paket mtools..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Alat multifungsi HP sedang di-scan"
+
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Akses kartu memori foto pada alat multifungsi HP Anda"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Membuat port printer tersedia utk CUPS ..."
+
+#~ msgid ""
+#~ "To print to a TCP or socket printer, you need to provide the host name of "
+#~ "the printer and optionally the port number. On HP JetDirect servers the "
+#~ "port number is usually 9100, on other servers it can vary. See the manual "
+#~ "of your hardware."
+#~ msgstr ""
+#~ "Untuk mencetak ke printer soket, berikan nama host printer (dan nomor "
+#~ "portnya). Nomor port server HP JetDirect biasanya 9100, server lain "
+#~ "bervariasi. Lihat manual perangkat keras Anda."
+
+#~ msgid "Printer host name"
+#~ msgstr "Nama host printer"
+
+#~ msgid "Printer host name missing!"
+#~ msgstr "Nama host printer hilang!"
+
+#~ msgid "Control Center"
+#~ msgstr "Pusat Kontrol"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Pilih tool yang hendak digunakan"
+
+#~ msgid "Mail/SMS alert"
+#~ msgstr "Peringatan Mail/SMS"
+
+#~ msgid "Mail/SMS alert configuration"
+#~ msgstr "Konfigurasi peringatan Mail/SMS"
+
+#~ msgid ""
+#~ "Welcome to the mail/SMS configuration utility.\n"
+#~ "\n"
+#~ "Here, you'll be able to set up the alert system.\n"
+#~ msgstr ""
+#~ "Selamat datang di konfigurator mail/SMS.\n"
+#~ "\n"
+#~ "Anda dapat mengeset sistem peringatan.\n"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Konfigurasikan cara sistem memperingatkan Anda"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "tiada serial_usb\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck gagal dg kode keluar %d / sinyal %d"
@@ -14572,9 +15335,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Scanning available samba shared resource of server %s"
#~ msgstr "Scan sumberdaya umum samba yg tersedia di server %s"
-#~ msgid "Removable media"
-#~ msgstr "Media removable"
-
#~ msgid "Active"
#~ msgstr "Aktif"
@@ -14584,9 +15344,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Local Printer Device"
#~ msgstr "Alat printer lokal"
-#~ msgid "Printer Device"
-#~ msgstr "Device Printer"
-
#~ msgid "Device/file name missing!"
#~ msgstr "Nama device/file hilang!"
@@ -14645,9 +15402,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgstr ""
#~ "Awas, adaptor jaringan sudah dikonfigurasikan. Akan dikonfigurasikan lagi."
-#~ msgid "New"
-#~ msgstr "Baru"
-
#~ msgid "Remote"
#~ msgstr "Remote"
@@ -15174,8 +15928,7 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "Bila Anda ingin dapat mencetak, silakan pilih sistem cetak CUPS atau LPR\n"
#~ "\n"
#~ "\n"
-#~ "CUPS adalah sistem cetak baru dan powerfull di Unix (CUPS = \"Common "
-#~ "Unix\n"
+#~ "CUPS adalah sistem cetak baru dan powerful di Unix (CUPS = \"Common Unix\n"
#~ "Printing System\"). Ini adalah sistem cetak standar Linux Mandrake.\n"
#~ "\n"
#~ "\n"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 5f590785c..3b7edab59 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-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -60,74 +60,74 @@ msgstr "Veldu X žjón"
msgid "X server"
msgstr "X žjónn"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "Les uppsetningarskrį"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Veldu minnisstęrš skjįkortsins"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
#, fuzzy
msgid "XFree configuration"
msgstr "Lokauppsetning"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Hverju viltu bęta viš?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Netstillingar"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,18 +135,66 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+#, fuzzy
+msgid "Custom"
+msgstr "Sérlagaša"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Skjįkort"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Skjįr"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Upplausn"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
+#, fuzzy
+msgid "Options"
+msgstr "Upplżsingar"
+
+#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ķ lagi"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Hętta"
+
+#: ../../Xconfig/main.pm_.c:144
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -155,33 +203,28 @@ msgid ""
"%s"
msgstr "Halda nśverandi IP stillingum"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Veldu skjį"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Skjįr"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-#, fuzzy
-msgid "Custom"
-msgstr "Sérlagaša"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Endurheimta"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -201,11 +244,11 @@ msgstr ""
"žaš er MJÖG MIKILVĘGT aš velja ekki of hįtt tķšnisviš fyrir skjįinn. Hafir\n"
"žś einhverjar efasemdir, veldu žį lęgri stillingar."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Lįrétt tķšni"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Lóšrétt tķšni"
@@ -229,57 +272,42 @@ msgstr "16 miljón litir (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "4 miljaršar lita (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Upplausnir"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Upplausn"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Veldu upplausn og fjölda lita"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Skjįkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Hętta viš"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ķ lagi"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Viltu prófa skilgreininguna"
@@ -288,71 +316,71 @@ msgstr "Viltu prófa skilgreininguna"
msgid "Test of the configuration"
msgstr "Prófunar skilgreining"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tegund lyklaboršs: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tegund mśsar: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mśs: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Skjįr: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Lįrétt tķšni skjįs: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Lóšrétt tķšni skjįs: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Skjįkort: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Skjįkortsminni: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Stillingar į litadżpt"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, fuzzy, c-format
msgid "Resolution: %s\n"
msgstr "Upplausnir"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 žjónn: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, fuzzy, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 žjónn: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ķ ręsingu"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -361,173 +389,190 @@ msgstr ""
"Ég get stillt tölvuna žķna til aš kveikja sjįlfvirkt į X viš ręsingu\n"
"Vilt žś kveikja į X viš endurręsingu?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Viš hvaša raštengi er mśsin žķn tengd?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Į fyrsta geira ręsidisksneišar"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Ķ ręsifęrsluna (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
#, fuzzy
msgid "SILO Installation"
msgstr "Uppsetning LILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Hvert viltu setja ręsistjórann?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
#, fuzzy
msgid "LILO/grub Installation"
msgstr "Uppsetning LILO"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr ""
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr ""
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
#, fuzzy
msgid "Yaboot"
msgstr "Rót"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
#, fuzzy
msgid "Bootloader main options"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
#, fuzzy
msgid "Bootloader to use"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
#, fuzzy
msgid "Bootloader installation"
msgstr "Stillingar LILO"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Ręsitęki"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr ""
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Samžjappaš"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "samžjappaš"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Skjįhamur"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Töf įšur en sjįlfgefin ręsing byrjar"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lykilorš"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Lykilorš (aftur)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Takmarka alla rofa į skipanlķnu"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "takmarka"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr ""
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Nįkvęm stęrš vinnsluminnis (fann %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr ""
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Slįšu inn vinnsluminni ķ MB"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Valkosturinn ``Takmarka alla rofa į skipanalķnu'' gerir ekkert įn lykiloršs"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Mismunandi lykilorš"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
#, fuzzy
msgid "Default OS?"
msgstr "Sjįlfgefiš"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -536,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
#, fuzzy
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -545,151 +590,152 @@ msgstr ""
"Hérna eru nśverandi stillingar LILO .\n"
"Žś getur bętt viš fleirum eša breytt žessum."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Bęta viš"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Bśiš"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
#, fuzzy
msgid "Modify"
msgstr "Breyta RAID"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Hverju viltu bęta viš?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Öšru stżrikerfi (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Öšru stżrikerfi (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Öšru stżrikerfi (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Ręsikjarna"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Rót"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Bęta aftan viš"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Les-skrif"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tafla"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Óöruggt"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Nafn"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Sjįlfgefiš"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Fjarlęgja"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Autt er ekki leyft"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Žś veršur aš hafa diskminni"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
#, fuzzy
msgid "This label is already used"
msgstr "Žetta nafn er nś žegar ķ notkun."
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fann %s %s tengi"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Er kannski eitt enn ķ vélinni?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi ķ tölvunni?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Jį"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Skošašu vélbśnašarupplżsingar"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Set inn rekil fyrir %s kortiš %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(eining %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -697,7 +743,7 @@ msgid ""
msgstr ""
# ## skrytid
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -708,17 +754,17 @@ msgstr ""
"Višföng eru gefin upp sem ``višfang=gildi višfang2=gildi2 ...''.\n"
"Til dęmis: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Stillingar kjarnaeininga:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvaša %s rekil viltu prófa?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -735,15 +781,15 @@ msgstr ""
" hann žarf? Stundum frystir sjįlfvirk stilling vélina en žaš ętti ekki\n"
"aš skemma neitt."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Stilla sjįlfvirkt"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Stilla handvirkt"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -752,54 +798,54 @@ msgstr ""
"Innsetning į einingu %s mistókst.\n"
"Viltu prófa aftur meš ólķk višföng?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s er nś žegar til)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Žetta lykilorš er of einfalt"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Vinsamlega slįšu inn notandanafn"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Notandanafniš mį bara innihalda litla stafi, tölustafi, `-' og `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Žetta notandanafn er nś žegar til"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Žetta notandanafn er nś žegar til"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Bęta viš notanda"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -808,32 +854,32 @@ msgstr ""
"Slįšu inn notanda\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Samžykkja notanda"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Notandanafn:"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Skel"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -842,59 +888,59 @@ msgstr ""
"Ég get stillt tölvuna žķna til aš kveikja sjįlfvirkt į X viš ręsingu\n"
"Vilt žś kveikja į X viš endurręsingu?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
#, fuzzy
msgid "Choose the default user:"
msgstr "Veldu nżja stęrš"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Veldu forritiš sem žś vilt nota"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Hvernig mśs ertu meš?"
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Bęta viš notanda"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "Stašbundinn prentari"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Hvaša pakka viltu setja inn"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -903,55 +949,55 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Velkomin(n) ķ tölvužrjótinn"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Lélegt"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Hįtt"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Hįtt"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Taugaveiklaš"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -960,13 +1006,13 @@ msgstr ""
"Žetta er hiš hefšbundna öryggi sem męlt er meš fyrir tölvu sem veršur notuš\n"
"til aš tengja viš netiš sem bišill. Öryggisathuganir eru nśna ķ gangi. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -980,7 +1026,7 @@ msgstr ""
"Öryggiš er nógu nógu mikiš til aš taka viš fyrirspurnum frį\n"
"mörgum bišlum. "
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -989,32 +1035,49 @@ msgstr ""
"Kerfiš er komiš į 4. stig og er nś alveg lokaš.\n"
"Öryggiš er į hęsta stigi."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Upplżsingar"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Hvernig mśs ertu meš?"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Stilli öryggisžrep"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Veldu valmöguleika fyrir žjón"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# 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:356
+#: ../../bootloader.pm_.c:375
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1041,158 +1104,282 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr ""
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Hvert viltu setja ręsistjórann?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr ""
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
#, fuzzy
msgid "Boot Style Configuration"
msgstr "Lokauppsetning"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr "Skrįr:\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Skjįr"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "Skipta um skjį"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr ""
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Hringja inn meš mótaldi"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Ręsitęki"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Setja kerfiš inn"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Villa"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "tęki"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Veldu innsetningarflokk"
+
+#: ../../bootlook.pm_.c:258
#, 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:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
#, fuzzy
msgid "Configure"
msgstr "Stilla X"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Val į pakkahóp"
+
+#: ../../bootlook.pm_.c:270
+#, fuzzy
+msgid "Themes"
+msgstr "Tré"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1237,69 +1424,119 @@ msgstr "Get ekki bętt viš disksneišum"
msgid "Screenshots will be available after install in %s"
msgstr ""
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Hętta viš"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgķskt"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
#, fuzzy
msgid "Germany"
msgstr "Žżskt"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Grķskt"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norkst"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Skoša"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Ķtalskt"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "raštengd"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+msgid "New"
+msgstr "Nż"
+
+#: ../../diskdrake/dav.pm_.c:57
+#, fuzzy
+msgid "Server"
+msgstr "netžjónn"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Hvernig mśs ertu meš?"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "netžjónn"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Tengipunktur: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, fuzzy, c-format
+msgid "Options: %s"
+msgstr "Rótardisksneiš"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Vinsamlega taktu fyrst afrit af öllum gögnum"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Lestu vandlega!"
@@ -1310,15 +1547,6 @@ msgid ""
"at the beginning of the disk"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Villa"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr ""
@@ -1345,7 +1573,7 @@ msgid "Please click on a partition"
msgstr "Smelltu į disksneiš"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Ķtarleg atriši"
@@ -1374,13 +1602,13 @@ msgstr ""
msgid "Swap"
msgstr "Diskminni"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Tóm"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Annaš"
@@ -1388,12 +1616,12 @@ msgstr "Annaš"
msgid "Filesystem types:"
msgstr "Tegundir skrįakerfa:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Bśa til"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tegund"
@@ -1403,7 +1631,7 @@ msgstr "Tegund"
msgid "Use ``%s'' instead"
msgstr "Nota ``%s'' ķ stašinn"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Eyša"
@@ -1411,84 +1639,84 @@ msgstr "Eyša"
msgid "Use ``Unmount'' first"
msgstr "Nota ``Aftengja'' fyrst"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, fuzzy, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "öll gögn į žessari disksneiš tapast"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Veldu ašgerš"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Bśa til nżja disksneiš"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Fęra ķ snillingsham"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Fara ķ venjulegan ham"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Endurheimta"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Halda samt įfram?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Hętta įn žess aš vista"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Hętta įn žess aš skrifa sneišatöfluna?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Viltu prófa skilgreininguna"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Rįšstafa skjįlfkrafa"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Hreinsa allt"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "More"
msgstr "Fęra"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Sżna upplżsingar"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Öll ašal skrįarsniš eru ķ notkun"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Get ekki bętt viš disksneišum"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1496,36 +1724,36 @@ msgstr ""
"Til aš fį fleiri disksneišar, vinsamlega eyddu einni til aš bśa til "
"višbótarsneiš"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Skrifa sneišatöflu"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Bjarga sneišatöflunni"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Bjarga sneišatöflunni"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Bjarga sneišatöflunni"
# ## skrytid
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Sjįlfvirk tenging aukatękja"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Veljiš skrį"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1533,11 +1761,11 @@ msgstr ""
"Disksneišin sem var tekin sem afrit er ekki af sömu stęrš\n"
"Halda įfram?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Ašvörun"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1545,269 +1773,256 @@ msgstr ""
"Settu diskling ķ drifiš\n"
"Öll gögn į žessum diskling tapast"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Reyni aš endurheimta disksneišatöfluna"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Sżna upplżsingar"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Tengipunktur"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#, fuzzy
-msgid "Options"
-msgstr "Upplżsingar"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Endurstękka"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Fęra"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Forsnķša"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Tengipunktur"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Bęta viš RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Bęta viš LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Aftengja"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Taka śr RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Taka śr LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Breyta RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Bśa til nżja disksneiš"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Byrjunar geiri"
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Stęrš ķ MB: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tegund skrįakerfis:"
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Tengipunktur: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Valkostur:"
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Forsnķš disksneiš %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Breyta tegund sneišar"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Hvaša sneištegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, fuzzy, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Hvar viltu tengja tęki %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Hvar viltu tengja tęki %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Hvar viltu tengja tęki %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Reikna takmarkanir FAT skrįarkerfis..."
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Endursnķš"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Hvaša sneištegund viltu?"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
#, fuzzy
msgid "All data on this partition should be backed-up"
msgstr "öll gögn į žessari disksneiš tapast"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, fuzzy, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "öll gögn į žessari disksneiš tapast"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Veldu nżja stęrš"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Stęrš ķ MB: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Hvaša disk viltu fęra til?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Geiri"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Hvaša geira viltu fęra gögn til?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Fęri"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Fęri disksneiš..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Veldu RAID sem til er fyrir til aš bęta viš"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nż"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Veldu LVM sem til er fyrir til aš bęta viš"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Nafn notanda"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
#, fuzzy
msgid "File already exists. Use it?"
msgstr "Nafniš %s er žegar ķ notkun"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "tęki"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "stig"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "stęrš hlutar"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
#, fuzzy
msgid "What type of partitioning?"
msgstr "Hvernig prentara ertu meš?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Hvaša pakka viltu setja inn"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1819,7 +2034,7 @@ msgstr ""
"Annašhvort notar žś LILO og žaš mun ekki virka, eša žś notar ekki LILO og "
"sleppir žvķ aš hafa /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1830,143 +2045,143 @@ msgstr ""
"1024. sķvalnings į harša disknum og žś hefur enga /boot sneiš.\n"
"Ef žś ętlar aš nota LILO ręsistjórann skaltu muna aš bęta viš /boot sneiš"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Disksneišatafla drifs %s mun verša skrifuš į disk!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Žś žarft aš endurręsa įšur en breytingar taka gildi"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, fuzzy, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "öll gögn į žessari disksneiš tapast"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Forsnķšing"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, fuzzy, c-format
msgid "Formatting loopback file %s"
msgstr "Forsnķš disksneiš %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Forsnķš disksneiš %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Bśa til nżja disksneiš"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Bśa til nżja disksneiš"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Upplausnir"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Tęki: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS drifstafur: %s (bara įgiskun)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tegund: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Byrja: geiri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Stęrš: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s geirar"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Sķvalningur %d til %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Forsnišinn\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ekki forsnišinn\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Tengdur\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1974,27 +2189,27 @@ msgstr ""
"Sjįlfgefin disksneiš ręst\n"
" (fyrir MS-DOS ręsingu, ekki fyrir LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Stig %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Hlunkastęrš %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2002,7 +2217,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2010,64 +2225,59 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Stęrš: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Skilgreining: %s sķvalningar, %s hausar, %s geirar\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Upplżsingar: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskar %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, fuzzy, c-format
msgid "Partition table type: %s\n"
msgstr "Rótardisksneiš"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "į gagnabraut %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, fuzzy, c-format
-msgid "Options: %s"
-msgstr "Rótardisksneiš"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tegund skrįakerfis:"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Žetta lykilorš er of einfalt (veršur aš vera minnst %d stafa langt)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Mismunandi lykilorš"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2121,23 +2331,23 @@ msgstr "NIS lén"
msgid "Search servers"
msgstr "Nafnamišlari"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsnišiš %s"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "kann ekki aš forsnķša %s af tegundinni %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa viš aš aftengja %s: %s"
@@ -2155,57 +2365,57 @@ msgstr ""
msgid "server"
msgstr "netžjónn"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Heiti tengipunkta verša aš byrja į /."
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, fuzzy, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Žaš er žegar disksneiš meš tengipunktinn %s"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Villa viš aš opna %s til skriftar: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2213,257 +2423,261 @@ msgstr ""
"Žaš kom upp villa. Engin tęki fundust sem unnt er aš bśa til nż skrįakerfi "
"į. Vinsamlegast athugašu vélbśnašinn ķ leit aš orsök vandamįlsins."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Žś hefur ekki neinar disksneišar"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Višföng fyrir fjartengda lpd prentara"
-
-#: ../../harddrake/bttv.pm_.c:64
-msgid "Unknown|Generic"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-msgid "Card model :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "forsnķš"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Breyta tegund sneišar"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Hętta"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-#, fuzzy
-msgid "/_Help"
-msgstr "Hjįlp"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "Hjįlp"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "Tengipunktur"
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "USB mśs"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
msgstr ""
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Hętta viš"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "USB mśs"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
#, fuzzy
msgid "Description"
msgstr "Stilla handvirkt"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Auškenning"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Veljiš skrį"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Gįtt (tękiš)"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
msgstr ""
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Hętta"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+#, fuzzy
+msgid "/_Help"
+msgstr "Hjįlp"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "Hjįlp"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "Tengipunktur"
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Stilla sjįlfvirkt"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Nota fķnstillingar į höršum disk(um)"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Skošašu vélbśnašarupplżsingar"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Tilgreindu mśs"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Sżna upplżsingar"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Tilgreindu mśs"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "%s tengipunktur er nś žegar til"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Augnablik..."
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "Hętti eftir %d sekśndur"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Višföng fyrir fjartengda lpd prentara"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:214
#, fuzzy
-msgid "Author:"
-msgstr "Stilla sjįlfvirkt"
+msgid "Tuner type :"
+msgstr "Breyta tegund sneišar"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "forsnķš"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3446,7 +3660,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3454,7 +3668,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3474,26 +3688,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Get ekki notaš śtsendingu įn NIS léns"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "villa viš lestur śr skrįnni %s"
@@ -3529,7 +3743,7 @@ msgstr ""
"\n"
"Halda samt įfram?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Žś veršur aš hafa diskminni"
@@ -3723,12 +3937,12 @@ msgstr ""
"Óžekkt villa kom upp sem ekki er hęgt aš mešhöndla.\n"
"Haltu įfram į eigin įbyrgš."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s tengipunktur er nś žegar til"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3736,12 +3950,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, fuzzy, c-format
msgid "Welcome to %s"
msgstr "Velkomin(n) ķ tölvužrjótinn"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ekkert disklingadrif ašgengilegt"
@@ -3751,7 +3965,7 @@ msgstr "Ekkert disklingadrif ašgengilegt"
msgid "Entering step `%s'\n"
msgstr "Hef skref `%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3759,160 +3973,160 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Innsetningarašferš"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Vinsamlega tilgreindu eftirfarandi"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Val į pakkahóp"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
#, fuzzy
msgid "Individual package selection"
msgstr "Val į pakkahóp"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, fuzzy, c-format
msgid "Total size: %d / %d MB"
msgstr "Heildarstęrš: "
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Skemmdur pakki"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Śtgįfa: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Stęrš: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Eftirfarandi pakkar verša fjarlęgšir"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Eftirfarandi pakkar verša fjarlęgšir"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Innsetning"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Vista į diskling"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Val į pakkahóp"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Fjarlęgja"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Veldu pakkana sem žś vilt setja inn"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Set inn"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Įętla"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tķmi eftir "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
#, fuzzy
msgid "Please wait, preparing installation..."
msgstr "Undirbż innsetningu"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pakkar"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Set inn pakka %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
#, fuzzy
msgid "Accept"
msgstr "Samžykkja notanda"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
#, fuzzy
msgid "Refuse"
msgstr "Endurstękka"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3922,17 +4136,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Viltu samt halda įfram?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Žaš kom upp villa viš aš raša pökkum:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
#, fuzzy
msgid "There was an error installing packages:"
msgstr "Žaš kom upp villa viš aš raša pökkum:"
@@ -4107,113 +4321,113 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Lyklaborš"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Hvaša lyklaboršsuppsetningu viltu?"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
#, fuzzy
msgid "Which installation class do you want?"
msgstr "Hverskonar innsetningarašferš viltu?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Install/Update"
msgstr "Innsetning/Uppfęrsla"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Er žetta innsetning eša uppfęrsla?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Aušvelda"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "F. snillinga"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Uppfęrsla"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Val į pakkahóp"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Hvernig mśs ertu meš?"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Mśsartengi"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
#, fuzzy
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Viš hvaša raštengi er mśsin žķn tengd?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Stilli PCMCIA kort..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
#, fuzzy
msgid "Configuring IDE"
msgstr "Uppsetning"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "engar reišubśnar disksneišar"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Veldu tengipunktana"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4226,7 +4440,7 @@ msgstr ""
"Ég get ekki lesiš disksneišatöflu žķna, hśn er of skemmd fyrir mig :-(\n"
"Ég mun reyna aš halda įfram meš žvķ aš hreinsa skemmdar disksneišar"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4234,139 +4448,139 @@ msgstr ""
"DiskDrake gat ekki lesiš sneišatöfluna.\n"
"Haltu įfram į eigin įbyrgš!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Engin rótarsneiš fannst"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Rótardisksneiš"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Hver er rótardisksneiš (/) kerfisins?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Žś veršur aš ręsa tölvuna aftur svo breytingar į sneišatöflunni taki gildi"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Veldu žęr disksneišar sem į aš forsnķša"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Athuga skemmdar blokkir?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
#, fuzzy
msgid "Formatting partitions"
msgstr "Forsnķš disksneiš %s"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ekki nęgjanlegt diskminni fyrir innsetningu. Bęttu viš žaš"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Leita aš fįanlegum pökkum"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Leita aš fįanlegum pökkum"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Leita aš pökkum til aš uppfęra"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Eftirfarandi pakkar verša fjarlęgšir"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Leita aš pökkum til aš uppfęra"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Endurheimta frį diskling"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Endurheimta frį diskling"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Val į pakkahóp"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Vista į diskling"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Veldu pakka til aš setja inn"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Augnablik"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4382,11 +4596,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Undirbż innsetningu"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4395,21 +4609,21 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
#, fuzzy
msgid ""
"You now have the opportunity to download encryption software.\n"
@@ -4492,7 +4706,7 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4504,188 +4718,198 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Hef samband viš vélina til aš sękja lista yfir fįanlega pakka"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Veldu spegilvélina žašan sem į aš sękja pakkanna"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Hef samband viš vélina til aš sękja lista yfir fįanlega pakka"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
#, fuzzy
msgid "Which is your timezone?"
msgstr "Į hvaša tķmasvęši ertu?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Veltu stilla tölvuklukkuna į GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS žjónn"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
#, fuzzy
msgid "Remote CUPS server"
msgstr "Fjartengd prentröš"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "No printer"
msgstr "Stašbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Er kannski eitt enn ķ vélinni?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
#, fuzzy
msgid "Mouse"
msgstr "USB mśs"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Prentari"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-msgid "Windows PDC"
-msgstr ""
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Upplżsingar"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Stašbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Įkveša rótarlykilorš"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Ekkert lykilorš"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Žetta lykilorš er of einfalt (veršur aš vera minnst %d stafa langt)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Auškenning"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Auškenning"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "netžjónn"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "Auškenning NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS lén"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS žjónn"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Auškenning"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Upplżsingar"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS žjónn"
+msgid "Authentication Windows Domain"
+msgstr "Auškenning"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Nafn léns"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4714,21 +4938,21 @@ msgstr ""
" vélinni ef alvarleg vandamįl koma upp.\n"
"Viltu bśa til ręsidiskling fyrir vélina žķna?"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
#, fuzzy
msgid "Second floppy drive"
msgstr "Annaš drif"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4755,7 +4979,7 @@ msgstr ""
"Viltu bśa til ręsidiskling fyrir vélina žķna?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -4764,28 +4988,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til stašar"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Veldu disklingadrifiš sem žś vilt nota til aš gera ręsidisk"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Bż til ręsidiskling..."
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Set upp ręsistjórann..."
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4793,28 +5017,28 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Setja inn ręsihlašara"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Innsetning LILO brįst sökum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4825,18 +5049,18 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, fuzzy, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
#, fuzzy
msgid "Creating auto install floppy..."
msgstr "Undirbż innsetningu"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4846,7 +5070,7 @@ msgstr ""
"\n"
"Viltu virkilega hętta nśna?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4876,16 +5100,16 @@ msgstr ""
"Frekari upplżsingar um hvernig į aš stilla vélina eftir innsetninguna er aš\n"
"finna ķ višeigandi kafla ķ Official Mandrake Linux User's Guide bókinni."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Undirbż innsetningu"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4894,17 +5118,17 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
#, fuzzy
msgid "Automated"
msgstr "Sjįlfvirkt IP"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
#, fuzzy
msgid "Replay"
msgstr "Endurhlaša"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
#, fuzzy
msgid "Save packages selection"
msgstr "Val į pakkahóp"
@@ -4933,417 +5157,480 @@ msgstr ""
msgid "Choose a file"
msgstr "Veldu ašgerš"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr ""
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Texta"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Slęm hugmynd, reyndu aftur\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Žitt val? (sjįlfgefiš %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Žitt val? (sjįlfgefiš %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Rótardisksneiš"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Viltu nota SILO?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Žitt val? (sjįlfgefiš %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Tékkneskt (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Žżskt"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spęnskt"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finnskt"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Franskt"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Pólskt"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rśssneskt"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Sęnskt"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Breskt lyklaborš"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Bandarķskt lyklaborš"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Śkraķnkst"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
#, fuzzy
msgid "Armenian (old)"
msgstr "Armenķskt"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
#, fuzzy
msgid "Armenian (typewriter)"
msgstr "Armenķskt (hljóšfręšilegt)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armenķskt (hljóšfręšilegt)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgķskt"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Tafla"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenķskt (hljóšfręšilegt)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bślgarskt"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasilķskt"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Eistlenskt"
+
+#: ../../keyboard.pm_.c:205
#, fuzzy
msgid "Belarusian"
msgstr "Bślgarskt"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Svissneskt (žżsk uppsetn.)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Svissneskt (frönsk uppsetn.)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Tékkneskt (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr ""
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danskt"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
#, fuzzy
msgid "Dvorak (US)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Dvorak (Norwegian)"
msgstr "Norkst"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Eistlenskt"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgķskt (\"Rśssneskt\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgķskt (\"Latķnu\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Grķskt"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungverskt"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Ķsraelķskt"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Ķsraelķskt (hljóšfr.)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
#, fuzzy
msgid "Iranian"
msgstr "Śkraķnkst"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Ķslenskt"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Ķtalskt"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "Breskt lyklaborš"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Sušur amerķskt"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Upplżsingar"
+
+#: ../../keyboard.pm_.c:240
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Lithįenķskt AZERTY"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Lithįenķskt AZERTY"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithįenķskt \"töluröš\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithįenķskt \"hljóšfręšilegt\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Upplżsingar"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Jśgoslavneskt (Latķnu upps.)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Hollenskt"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
#, fuzzy
msgid "Polish (qwerty layout)"
msgstr "Svissneskt (žżsk uppsetn.)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
#, fuzzy
msgid "Polish (qwertz layout)"
msgstr "Svissneskt (žżsk uppsetn.)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portśgķskt"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadķskt (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rśssneskt (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rśssneskt (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rśssneskt (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slóvenskt"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slóvakķskt (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slóvakķskt (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Jśgoslavneskt (Latķnu upps.)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Tafla"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thęlenskt lyklaborš"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thęlenskt lyklaborš"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Tyrkneskt (hefšbundiš \"F\" módel)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Tyrkneskt (nśtķma \"Q\" módel)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Śkraķnkst"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Bandarķskt (alžjóšlegt)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lithįenķskt \"töluröš\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jśgoslavneskt (Latķnu upps.)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5352,37 +5639,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Sķmanśmer"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Forsnķša disksneišar"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5490,54 +5777,46 @@ msgstr "Bśiš"
msgid "No mouse"
msgstr "Engin mśs"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
#, fuzzy
msgid "Please test the mouse"
msgstr "Hvernig mśs ertu meš?"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
#, fuzzy
msgid "To activate the mouse,"
msgstr "Hvernig mśs ertu meš?"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
#, fuzzy
msgid "Finish"
msgstr "Finnskt"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Er žetta rétt?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Upplżsingar"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Opna tré"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Loka tré"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5558,6 +5837,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr ""
@@ -5582,7 +5865,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
#, fuzzy
msgid "Choose the network interface"
msgstr "Veldu nżja stęrš"
@@ -5597,7 +5880,7 @@ msgstr "Viš hvaša raštengi er mśsin žķn tengd?"
msgid "no network card found"
msgstr "ekkert netkort fannst"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Stilli stašarnetstenginu"
@@ -5614,7 +5897,7 @@ msgstr ""
"vistfang gįttarinnar ef žś veist hvaš žaš vistfang er.\n"
"Gįttin gefur žér ašgang śt śr stašarnetinu (t.d. į Internetiš)."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
#, fuzzy
msgid "Host name"
msgstr "Vélarheiti:"
@@ -5646,7 +5929,7 @@ msgstr "Viš hvaša raštengi er mśsin žķn tengd?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -5763,45 +6046,45 @@ msgstr "Hvaša raštengi er mótaldiš tengt viš?"
msgid "Dialup options"
msgstr "Innhringistillingar"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nafn tengingar"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
#, fuzzy
msgid "Phone number"
msgstr "Sķmanśmer"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Notendanafn"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Meš skriftu"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Meš skjįhermi"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nafn léns"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Ašal nafnamišlari"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Vara nafnamišlari"
@@ -5903,14 +6186,14 @@ msgstr "Veldu nżja stęrš"
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Leita aš tękjum..."
@@ -6022,7 +6305,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6030,7 +6313,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6040,45 +6323,45 @@ msgstr ""
"į aš vera IP tala rituš meš punkt į milli.\n"
"(dęmi 192.168.1.13)"
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Stilli nettęki %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 žjónn: %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
#, fuzzy
msgid "IP address"
msgstr "IP vistfang:"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
#, fuzzy
msgid "Netmask"
msgstr "Netsķa:"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Sjįlfvirkt IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Bśa til ręsidiskling"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP vistfang į aš vera į snišinu 192.168.1.10"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6090,41 +6373,41 @@ msgstr ""
"vistfang gįttarinnar ef žś veist hvaš žaš vistfang er.\n"
"Gįttin gefur žér ašgang śt śr stašarnetinu (t.d. į Internetiš)."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Nafnamišlari"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Gįtt (tękiš)"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
#, fuzzy
msgid "Proxies configuration"
msgstr "Lokauppsetning"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP sel:"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP Sel:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Sel į aš vera http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Sel į aš vera ftp://..."
@@ -6138,7 +6421,7 @@ msgstr "Sel stillingar"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
#, fuzzy
msgid "Testing your connection..."
msgstr "Stilla nettengingu"
@@ -6168,45 +6451,45 @@ msgstr "Sel stillingar"
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr ""
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr ""
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr ""
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr ""
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
#, fuzzy
msgid "Provider phone number"
msgstr "Sķmanśmer"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "Stillingar į prentara"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "Stillingar į prentara"
@@ -6216,33 +6499,33 @@ msgstr "Stillingar į prentara"
msgid "Choose your country"
msgstr "Veldu lyklaborš"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
#, fuzzy
msgid "Dialing mode"
msgstr "Hringja inn meš mótaldi"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Nafn tengingar"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Nafn tengingar"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Account Login (user name)"
msgstr "Tengipunktur"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
#, fuzzy
msgid "Account Password"
msgstr "Lykilorš"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6278,7 +6561,7 @@ msgstr "Skemmd afritsskrį"
msgid "Error writing to file %s"
msgstr "Villa viš aš skrifa ķ skrįna %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6323,7 +6606,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6353,7 +6636,7 @@ msgstr "Višföng fyrir fjartengda lpd prentara"
msgid "Printer on remote CUPS server"
msgstr "Fjartengd prentröš"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Fjartengdur"
@@ -6373,7 +6656,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Prentžjónn"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Prenttęki:"
@@ -6382,129 +6665,133 @@ msgstr "Prenttęki:"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Stašbundinn prentari"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Villa viš aš skrifa ķ skrįna %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(eining %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "Vistfang SMB žjóns"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Sjįlfgefiš)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Hvernig er žessi prentari tengdur?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Fjartengd prentröš"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6515,7 +6802,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6525,37 +6812,37 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP vistfang į aš vera į snišinu 192.168.1.10"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr ""
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
#, fuzzy
msgid "CUPS server IP"
msgstr "Vistfang SMB žjóns"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
#, fuzzy
msgid "Port"
msgstr "Lélegt"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Lokauppsetning"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6568,37 +6855,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Stašbundinn prentari"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Stašbundinn prentari"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6612,53 +6930,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Višföng fyrir fjartengda lpd prentara"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Prófa tengi"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tengipunktur er nś žegar til"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Višföng NetWare prentara"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6666,42 +6981,33 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr ""
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Tiltękir pakkar"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6709,7 +7015,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6717,81 +7023,38 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Hvaša raštengi er mótaldiš tengt viš?"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Prenttęki:"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Uppsetning"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Set inn pakka %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6801,31 +7064,51 @@ msgstr ""
"upp vélarheiti prentžjónsins og prentröšina į žeim sem\n"
"žś vilt senda prentverkin ķ."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Prentžjónn:"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Prentžjónn:"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Prentžjónn:"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s tengipunktur er nś žegar til"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Stilla nettengingu"
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Keyri upp netiš"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB/Windows 9x/NT prentvišföng"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6839,35 +7122,46 @@ msgstr ""
"įsamt samnżtingarheiti prentarans, notandaheiti, lykilorši og\n"
"vinnuhópsupplżsingum fyrir prentarann."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Heiti SMB žjóns"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "Vistfang SMB žjóns"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Samnżtingarheiti"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Vinnuhópur"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Višföng fyrir fjartengda lpd prentara"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6891,7 +7185,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6900,7 +7194,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6908,11 +7202,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Višföng NetWare prentara"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6925,87 +7219,107 @@ msgstr ""
"įsamt heiti prentarašar, notandaheiti og lykilorši fyrir\n"
"prentarann."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Prentžjónn"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Heiti prentrašar"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Višföng stašbundinna prentara"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Stillingar į prentara"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Stillingar į prentara"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
#, fuzzy
msgid "Printer Device URI"
msgstr "Prenttęki:"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
#, fuzzy
msgid "Name of printer"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
#, fuzzy
msgid "Location"
msgstr "Upplżsingar"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7020,28 +7334,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Er žetta rétt?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Hvernig prentara ertu meš?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7050,18 +7364,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7071,12 +7385,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7084,7 +7398,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7097,7 +7411,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7107,34 +7421,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Viltu prenta śt prufublašsķšu?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Prófa tengi"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7142,45 +7456,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Jį, prenta bįšar prufusķšur"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Forritun"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Prenta śt prufublašsķšu(r)..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Prenta śt prufublašsķšu(r)..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Prenta śt prufublašsķšu(r)..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Prenta śt prufublašsķšu(r)..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7190,22 +7504,22 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7214,15 +7528,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7231,7 +7545,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7239,41 +7553,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7283,7 +7597,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7292,47 +7606,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Keyri upp netiš"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Keyri upp netiš"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Keyri upp netiš"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Keyri upp netiš"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "USB mśs"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Stillingar į prentara"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7341,9 +7655,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7354,18 +7668,18 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7375,51 +7689,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7427,61 +7741,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Stilla prentara"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skjįr ekki skilgreindur"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7489,12 +7803,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stilli stašarnetstenginu"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7504,34 +7818,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Hvaša sneištegund viltu?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Hįtt"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Taugaveiklaš"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7546,12 +7860,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hvaša sneištegund viltu?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7565,69 +7879,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hvaša sneištegund viltu?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Set inn pakka %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Stillingar į prentara"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Setja upp prentara"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Viltu setja upp prentara?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
#, fuzzy
msgid "Printerdrake"
msgstr "Prentari"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -7635,149 +7949,145 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Stilla nettengingu"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Venjulega"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Hętta"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Sel stillingar"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Veldu prenttengingu"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Prenta śt prufublašsķšu(r)..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Stašbundinn prentari"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Viltu prófa skilgreininguna"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Višföng fyrir fjartengda lpd prentara"
@@ -7828,8 +8138,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Sel į aš vera ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Sel į aš vera http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -7880,38 +8190,6 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki nógu margar disksneišar fyrir RAID %d\n"
-#: ../../security/msec.pm_.c:144
-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 ""
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Į žessu öryggisstigi er oršiš mögulegt aš nota tölvuna sem žjón.\n"
-"Öryggiš er nógu nógu mikiš til aš taka viš fyrirspurnum frį\n"
-"mörgum bišlum. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Uppsetning"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Upplżsingar"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8146,7 +8424,7 @@ msgstr "Endursnķš..."
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8271,7 +8549,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Nafn tengingar"
@@ -8371,21 +8649,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Set inn pakka %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Stimplašu žig śt og slįšu į Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Stimplašu žig aftur inn ķ %s til aš virkja breytingarnar"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8393,176 +8671,176 @@ msgstr ""
"Ég get ekki lesiš disksneišatöflu žķna, hśn er of skemmd fyrir mig :-(\n"
"Ég mun reyna aš halda įfram meš žvķ aš hreinsa skemmdar disksneišar"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Sel stillingar"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Prentžjónn"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Prentžjónn"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS žjónn"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS žjónn"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
#, fuzzy
msgid "Etherboot Floppy/ISO"
msgstr "Bśa til ręsidiskling"
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Bęta viš notanda"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "Hjįlp"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Eyša"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Veljiš skrį"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Bęta viš notanda"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Uppsetning"
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "Stilla X"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Settu tóman diskling ķ drif %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ekkert disklingadrif ašgengilegt"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Villa"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Lokauppsetning"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -8577,23 +8855,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Lokauppsetning"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Undirbż innsetningu"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -8601,40 +8879,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Til hamingju!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Innsetning"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Bęta viš notanda"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Forsnķš disksneiš %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8642,7 +8933,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8650,34 +8941,97 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Prófa tengi"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+msgid "No changes to backup!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -8685,724 +9039,785 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Villa viš lestur skrįarinnar $f"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Val į pakkahóp"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fjartengd prentröš"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Reyndu aftur"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Įkveša rótarlykilorš"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Hvaša lyklaboršsuppsetningu viltu?"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Smelltu į disksneiš"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Smelltu į disksneiš"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Smelltu į disksneiš"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Veldu pakkana sem žś vilt setja inn"
+msgid "Please check if you are using a DVDR device"
+msgstr "Smelltu į disksneiš"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Smelltu į disksneiš"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Veljiš skrį"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Veldu pakkana sem žś vilt setja inn"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Veldu pakkana sem žś vilt setja inn"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Veldu pakkana sem žś vilt setja inn"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Geiri"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tegund"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Augnablik"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Veldu pakkana sem žś vilt setja inn"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Veldu pakkana sem žś vilt setja inn"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Setja upp skrįarkerfi"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Mśs: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Upplżsingar"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Hvaša raštengi er mótaldiš tengt viš?"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Endurheimta frį skrį"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Annaš"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Setja kerfiš inn"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Endurheimta frį skrį"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Endurheimta frį skrį"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Sérlagaša"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "netžjónn"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Endurstękka"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Texta"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Eftirfarandi pakkar verša fjarlęgšir"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Skemmd afritsskrį"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Vista ķ skrį"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Hvernig mśs ertu meš?"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Veldu pakkana sem žś vilt setja inn"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9413,7 +9828,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9434,7 +9849,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9443,7 +9858,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9467,7 +9882,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9484,21 +9899,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -9512,17 +9927,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -9539,7 +9954,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -9579,7 +9994,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -9590,7 +10005,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9603,7 +10018,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -9642,96 +10057,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Innsetning %s brįst sökum eftirfarandi villu:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Sel stillingar"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Nafn tengingar"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "snillingur"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "USB mśs"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Samnżtingarheiti"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
#, fuzzy
msgid "Windows Migration tool"
msgstr "Upplżsingar"
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Prentari"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Netstillingar"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Auškenning"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Pakka"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Augnablik..."
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -9743,352 +10185,352 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Hętta innsetningu"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Lélegt"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Hętta innsetningu"
+
+#: ../../standalone/drakbug_.c:182
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Uppsetning"
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
msgstr ""
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
msgstr "Netstillingar"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
#, fuzzy
msgid "Profile: "
msgstr "tókst ekki aš tengja: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr ""
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr ""
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
#, fuzzy
msgid "Hostname: "
msgstr "Vélarheiti:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
#, fuzzy
msgid "Internet access"
msgstr "Endursnķš..."
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
#, fuzzy
msgid "Type:"
msgstr "Tegund: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gįtt:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
#, fuzzy
msgid "Interface:"
msgstr "Endursnķš..."
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr ""
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
#, fuzzy
msgid "Configure Internet Access..."
msgstr "Setja upp prentara"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
#, fuzzy
msgid "LAN configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Driver"
msgstr "Sem žjón"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Interface"
msgstr "Endursnķš..."
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr ""
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
#, fuzzy
msgid "Configure Local Area Network..."
msgstr "Stilla nettengingu"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr ""
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Prófunar skilgreining"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Nafn tengingar"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Not connected"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr ""
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
#, fuzzy
msgid "LAN Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr ""
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr ""
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Virk"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Virk"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
#, fuzzy
msgid "Internet connection configuration"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
#, fuzzy
msgid "Internet Connection Configuration"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
#, fuzzy
msgid "Connection type: "
msgstr "Nafn tengingar"
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr ""
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gįtt"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr ""
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr ""
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Module name"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
#, fuzzy
msgid "Size"
msgstr "Stęrš: %s"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
#, fuzzy
msgid "drakfloppy"
msgstr "Endurheimta frį diskling"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
#, fuzzy
msgid "boot disk creation"
msgstr "Lokauppsetning"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
#, fuzzy
msgid "default"
msgstr "Sjįlfgefiš"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
#, fuzzy
msgid "kernel version"
msgstr "Sel stillingar"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
#, fuzzy
msgid "General"
msgstr "Žżskt"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
#, fuzzy
msgid "Expert Area"
msgstr "F. snillinga"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr ""
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
#, fuzzy
msgid "Add a module"
msgstr "Bęta viš notanda"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
#, fuzzy
msgid "force"
msgstr "Fęra"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr ""
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
#, fuzzy
msgid "omit scsi modules"
msgstr "Hringja inn meš mótaldi"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr ""
# ## skrytid
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
#, fuzzy
msgid "Remove a module"
msgstr "Sjįlfvirk tenging aukatękja"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr ""
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Stilla nettengingu"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10096,104 +10538,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s fannst ekki"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Bśiš"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Forsnķš"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Undirbż innsetningu"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "takmarka"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10202,119 +10644,124 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Forsnķša disksneišar"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Fjarlęgji RPM pakkana"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Uppsetning"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Tengipunktur"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Veldu žęr disksneišar sem į aš forsnķša"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "tęki"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Prentari"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Setja kerfiš inn"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Veljiš skrį"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Innsetning"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Hętta innsetningu"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10322,35 +10769,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
#, fuzzy
msgid "disable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
#, fuzzy
msgid "reconfigure"
msgstr "Stilla X"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
#, fuzzy
msgid "Disabling servers..."
msgstr "Leita aš tękjum..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10358,21 +10805,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
#, fuzzy
msgid "enable"
msgstr "Tafla"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10382,31 +10829,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Endursnķš..."
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10416,18 +10863,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Skjįr ekki skilgreindur"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10437,17 +10884,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Lokauppsetning"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Sel stillingar"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10458,7 +10905,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10470,79 +10917,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "Vistfang SMB žjóns"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "Les uppsetningarskrį"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
#, fuzzy
msgid "Configuring..."
msgstr "Uppsetning"
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "Set inn pakka %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10552,21 +10999,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Nafn tengingar"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Veldu forritiš sem žś vilt nota"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -10575,106 +11014,110 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadķskt (Quebec)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Hętta viš"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Ķslenskt"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "raštengd"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Žaš kom upp villa viš aš raša pökkum:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -10698,12 +11141,12 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
#, fuzzy
msgid "Please, choose your keyboard layout."
msgstr "Hvaša lyklaboršsuppsetningu viltu?"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
@@ -10726,7 +11169,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr ""
@@ -10844,150 +11287,151 @@ msgstr ""
msgid "Content of the file"
msgstr "Nafn tengingar"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, fuzzy, c-format
msgid "please wait, parsing file: %s"
msgstr "Undirbż innsetningu"
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "Uppsetning"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Nafn léns"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS žjónn"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Prentžjónn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS žjónn"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS žjónn"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "tęki"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Prentžjónn"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "Endursnķš..."
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "forsnķš"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Uppsetning"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
#, fuzzy
msgid "Save as.."
msgstr "netžjónn"
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
#, fuzzy
msgid "Please, choose the type of your mouse."
msgstr "Hvernig mśs ertu meš?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "ekkert serial_usb fannst\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Herma eftir žrišja hnapp?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Višföng fyrir fjartengda lpd prentara"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Leita aš tękjum..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Prófa tengi"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Veldu skjįkort"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Ręsitęki"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -10995,7 +11439,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11015,17 +11459,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "Les uppsetningarskrį"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "Les uppsetningarskrį"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11033,7 +11477,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11227,56 +11671,60 @@ msgstr ""
msgid "Can't open %s for writing: %s\n"
msgstr "Villa viš aš opna %s til skriftar: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Netstillingar"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Undirbż innsetningu"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr ""
@@ -11328,6 +11776,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
@@ -11422,11 +11874,6 @@ msgid "Office Workstation"
msgstr "Upplżsingar"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "netžjónn"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
@@ -11490,6 +11937,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Endursnķš..."
@@ -11524,6 +11975,86 @@ msgstr "Margmišlun"
msgid "Scientific Workstation"
msgstr "Upplżsingar"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Į žessu öryggisstigi er oršiš mögulegt aš nota tölvuna sem žjón.\n"
+#~ "Öryggiš er nógu nógu mikiš til aš taka viš fyrirspurnum frį\n"
+#~ "mörgum bišlum. "
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Upplżsingar"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Stilli öryggisžrep"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Hvaša lyklaboršsuppsetningu viltu?"
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Hvernig mśs ertu meš?"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Veldu pakkana sem žś vilt setja inn"
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Sel į aš vera ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Veldu pakkana sem žś vilt setja inn"
+
+#, fuzzy
+#~ msgid "Tamil"
+#~ msgstr "Tafla"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NIS žjónn"
+
+#, fuzzy
+#~ msgid "Set up printer manually"
+#~ msgstr "Višföng fyrir fjartengda lpd prentara"
+
+#, fuzzy
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Set inn pakka %s"
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Set inn pakka %s"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Set inn pakka %s"
+
+#, fuzzy
+#~ msgid "Control Center"
+#~ msgstr "Nafn tengingar"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Veldu forritiš sem žś vilt nota"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "ekkert serial_usb fannst\n"
+
#~ msgid "Choose options for server"
#~ msgstr "Veldu valmöguleika fyrir žjón"
@@ -11585,9 +12116,6 @@ msgstr "Upplżsingar"
#~ msgid "Setting security level"
#~ msgstr "Stilli öryggisžrep"
-#~ msgid "Graphics card"
-#~ msgstr "Skjįkort"
-
#~ msgid "Select a graphics card"
#~ msgstr "Veldu skjįkort"
@@ -11670,9 +12198,6 @@ msgstr "Upplżsingar"
#~ msgid "Use existing configuration for X11?"
#~ msgstr "Nota žį X uppsetningu sem er til?"
-#~ msgid "New"
-#~ msgstr "Nż"
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Óljóst (%s), vertu nįkvęmari\n"
@@ -11882,9 +12407,6 @@ msgstr "Upplżsingar"
#~ msgid "Use MD5 passwords"
#~ msgstr "Nota MD5 lykilorš"
-#~ msgid "Tree"
-#~ msgstr "Tré"
-
#~ msgid "Sort by"
#~ msgstr "Raša eftir"
@@ -11894,9 +12416,6 @@ msgstr "Upplżsingar"
#~ msgid "Installed packages"
#~ msgstr "Pakkar sem eru inni"
-#~ msgid "Available packages"
-#~ msgstr "Tiltękir pakkar"
-
#~ msgid "Show only leaves"
#~ msgstr "Sżna ašeins laufblöš"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 9aba279c0..5a1689427 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.30\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2002-01-22 12:27GMT\n"
"Last-Translator: Simone Riccio <s.riccio@aeb-informatica.it>\n"
"Language-Team: Italian <IT@li.org>\n"
@@ -60,11 +60,11 @@ msgstr "Scegli un server X"
msgid "X server"
msgstr "Server X"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "Configurazione multi-testine"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -72,44 +72,44 @@ msgstr ""
"Il tuo sistema supporta la configurazione di pił testine.\n"
"Cosa vuoi fare?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Scegli la quantitą di memoria della tua scheda grafica"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "Configurazione di XFree"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Che configurazione di XFree vuoi avere?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "Configura tutte le testine indipendentemente"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Usa l'estensione Xinerama"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura solo la scheda \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, 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:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -152,11 +152,57 @@ 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:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installazione driver video)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Condivisione personalizzata"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Scheda grafica"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitor"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Risoluzione"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Esci"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -169,32 +215,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Scegli un monitor"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitor"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Condivisione personalizzata"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Generico"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Un passo indietro"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -218,11 +260,11 @@ msgstr ""
"danneggiarlo.\n"
"Se hai dubbi, scegli un settaggio prudente."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Frequenza di refresh orizzontale"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Frequenza di refresh verticale"
@@ -246,57 +288,42 @@ msgstr "16 milioni di colori (24 bit)"
msgid "4 billion colors (32 bits)"
msgstr "4 miliardi di colori (32 bit)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Risoluzioni"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Risoluzione"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Seleziona risoluzione e profonditą di colore"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Scheda grafica: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Annulla"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Ok"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Vuoi provare la configurazione ?"
@@ -305,71 +332,71 @@ msgstr "Vuoi provare la configurazione ?"
msgid "Test of the configuration"
msgstr "Test della configurazione"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tipo di tastiera: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipo di mouse: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frequenza orizzontale del monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresh verticale del monitor: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Scheda grafica: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memoria scheda grafica: %s KB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Profonditą di colore: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Risoluzione: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X all'avvio"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -378,167 +405,184 @@ msgstr ""
"Posso configurare il tuo computer per eseguire X automaticamente all'avvio.\n"
"Vuoi che X venga eseguito quando riavvierai?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Di che tipo č la tua connessione ISDN?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Primo settore della partizione di boot"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Primo settore del disco rigido (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "Installazione di SILO"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Dove vuoi installare il bootloader?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "Installazione di LILO/grub"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO con menu in modo testo"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO con menu grafico"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Avvia da DOS/Windows (usando loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Bootloader da usare"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Installazione del bootloader"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Dispositivo di boot"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (non funziona con vecchi BIOS)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Compatta"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "compatta"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Modo video"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare con l'immagine predefinita"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Password (ripeti)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Limita opzioni della linea di comando"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Pulisci /tmp ad ogni avvio"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precisa la dimensione RAM se necessario (trovati %d Mb)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Abilita profili multipli"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Specifica dimensione RAM in Mb"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opzione ''Limita opzioni della linea di comando'' č inutile\n"
"senza una password"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Per favore prova di nuovo"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "Messaggio di init"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Attesa dell'Open Firmware"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Attesa per il boot del kernel"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "Abilita l'avvio da CD-ROM?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "Abilita boot OF?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "Sistema operativo predefinito?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -553,7 +597,7 @@ msgstr ""
"\n"
"Da quale disco effettuate il boot?"
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -561,147 +605,148 @@ msgstr ""
"Queste sono le voci attuali.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aggiungi"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Fatto"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Altro OS (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Altro OS (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Altro OS (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Immagine"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Aggiungi"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Lettura-scrittura"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Tabella"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Non sicuro"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Etichetta"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predefinito"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Dimensioni Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "No Video"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Rimuovi voce"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Etichetta vuota non ammessa"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "Dovete indicare l'immagine di un kernel"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "Devi specificare una partizione radice"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Questa etichetta č gią stata usata"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovate %s interfacce %s"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Ne hai un'altra?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Sģ"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installazione driver per scheda %s %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -711,7 +756,7 @@ msgstr ""
"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x (ad "
"es. '0x123')."
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -722,17 +767,17 @@ msgstr ""
"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
"Per esempio, ''io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Opzioni del modulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quale driver %s dovrei provare?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -750,15 +795,15 @@ msgstr ""
"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccherą il\n"
"computer, ma non dovrebbe causare alcun danno."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Investgazione automatica"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Specifica opzioni"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -767,55 +812,55 @@ msgstr ""
"Caricamento del modulo %s fallito.\n"
"Vuoi riprovare con altri parametri?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "permetti \"su\""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s gią aggiunto)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Questa password č troppo semplice"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
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:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Questo nome utente č gią stato aggiunto"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Questo nome utente č gią stato aggiunto"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -824,32 +869,32 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Accetta utente"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Vero nome"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Nome utente"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -858,19 +903,19 @@ msgstr ""
"utente all'avvio.\n"
"Vuoi sfruttare questa caratteristica?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Scegli il window manager da eseguire:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "Per favore, scegli la lingua da utilizzare."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -878,35 +923,35 @@ msgid ""
msgstr ""
"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tutto"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
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:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Il pacchetto obbligatorio %s č assente"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -915,11 +960,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -927,31 +972,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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Benvenuti cracker"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Scarso"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Normale"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "Pił alto"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -961,7 +1006,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o a Internet. Non c'č nessun accesso con password."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -969,7 +1014,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete č comunque\n"
"ancora sconsigliato."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -978,7 +1023,7 @@ msgstr ""
"usare per\n"
"connettersi a Internet come cliente."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -986,7 +1031,7 @@ msgstr ""
"Esistono gią alcuni limiti, e ogni notte vengono eseguiti ulteriori "
"controlli automatici."
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1004,7 +1049,7 @@ msgstr ""
"livello\n"
"pił basso."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1012,27 +1057,44 @@ msgstr ""
"Basato sul livello precedente, ma ora il sistema č completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Opzioni"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Scegli livello di sicurezza"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "Livello di sicurezza"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "Usa libsafe per i server"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
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:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1048,111 +1110,208 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Usate i tasti %c e %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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Menu di avvio"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, 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
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "nessun aiuto presente (per ora).\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_File"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/File/_Esci"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "Monitor NewStyle per categorie"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "Monitor NewStyle"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "Monitor tradizionale"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor Gtk tradizionale"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Lancia Aurora al momento del boot"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Modo LILO/GRUB"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Yaboot"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Installa sistema"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Errore"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "Sto copiando %s"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "No Video"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+# there is no room to put "Scegli classe d'installazione"
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Classe d'installazione"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1161,42 +1320,69 @@ msgstr ""
"Al momento state usando %s come Boot Manager.\n"
"Cliccate su Configura per lanciare l'assistente di configurazione."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Salva scelta pacchetti"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Modo sistema"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Lancia il sistema X Window all'avvio"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "No, non voglio il login automatico"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sģ, voglio il login automatico con questo (utente, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Non riesco ad aprire /etc/inittab in lettura: %s"
@@ -1240,61 +1426,112 @@ msgstr "Non posso fare degli screenshot prima del partizionamento"
msgid "Screenshots will be available after install in %s"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francia"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgio"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Repubblica Ceca"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Germania"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "Grecia"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "Norvegia"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "Svezia"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Olanda"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "Italia"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "Austria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Stati Uniti"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Modello sconosciuto"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "nuovo"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Per favore, insersci la velocitą del masterizzatore"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "Server"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Punto di mount:"
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Opzioni: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Per favore prima fate un backup dei vostri dati"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Leggete con attenzione!"
@@ -1308,15 +1545,6 @@ msgstr ""
"(2048\n"
"settori sono sufficienti) all'inizio del disco"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Errore"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Assistente"
@@ -1342,7 +1570,7 @@ msgid "Please click on a partition"
msgstr "Per favore clicca su una partizione"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Dettagli"
@@ -1370,13 +1598,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Vuoto"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Altro"
@@ -1384,12 +1612,12 @@ msgstr "Altro"
msgid "Filesystem types:"
msgstr "Tipo di filesystem:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipo"
@@ -1399,7 +1627,7 @@ msgstr "Tipo"
msgid "Use ``%s'' instead"
msgstr "Usa ''%s'' invece"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Cancella"
@@ -1407,7 +1635,7 @@ msgstr "Cancella"
msgid "Use ``Unmount'' first"
msgstr "Prima usa ''Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1415,72 +1643,72 @@ msgstr ""
"Dopo aver cambiato tipo di partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "Scegli una partizione"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Scegli un'altra partizione"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Esci"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Passa a modo Esperto"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Passa a modo Normale"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Un passo indietro"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Esci senza salvare"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Esci senza scrivere la tabella delle partizioni?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "Vuoi salvare le modifiche a /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Alloca automaticamente"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Azzera tutto"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Ancora"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "Informazioni sul disco fisso"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Tutte le partizioni primarie sono usate"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Non posso aggiungere altre partizioni"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1488,31 +1716,31 @@ msgstr ""
"Per avere pił partizioni, per favore eliminarne una per essere in grado di "
"crearne una estesa"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "Salva la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "Ripristina tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Recupera tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "Ricarica tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Automounting di media rimovibili"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Scegli file"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1520,11 +1748,11 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Attenzione"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1532,129 +1760,112 @@ msgstr ""
"Inserisci un floppy nel drive\n"
"Tutti i dati su questo floppy saranno persi"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Provo a recuperare la tabella delle partizioni"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "Informazioni dettagliate"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../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/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Opzioni"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Ridimensiona"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Sposta"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatta"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Esegui mount"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Aggiungi a RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Aggiungi a LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Esegui unmount"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Rimuovi da RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Rimuovi da LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Modifica RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Usa per loopback"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Crea una nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Settore iniziale: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Punto di mount:"
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Preferenza: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "Rimuovo il file di loopback?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Cambia il tipo di partizione"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quale filesystem vuoi?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "Passo da ext2 a ext3"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Dove vuoi fare il mount del file loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Dove vuoi fare il mount del dispositivo %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1662,132 +1873,137 @@ msgstr ""
"Non puoi deselezionare punti di mount perché questa partizione č usata\n"
"per il loopback. Prima rimuovi il loopback"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Dove vuoi fare il mount del dispositivo %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Calcolo dei vincoli del filesystem FAT"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Ridimensionamento"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Questa partizione non č ridimensionabile"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Dovresti eseguire il backup di tutti i dati su questa partizione"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver ridimensionato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Scegli la nuova dimensione"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "Nuova dimensione in Mb: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Su quale disco vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Settore"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Su che settore vuoi spostarlo?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Spostamento"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Spostamento partizione..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "nuovo"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Scegli un LVM esistente a cui effettuare l'aggiunta"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "Nome LVM?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Questa partizione non puņ essere usata per il loopback"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Nome file loopback: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "Assegna un nome di file"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "File gią usato da un altro loopback, selezionane uno diverso"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Il file esiste gią. Lo uso?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "Opzioni di mount"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "Varie"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "dispositivo"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "livello"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "dimensione del blocco"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Fai attenzione: questa operazione č pericolosa."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Che tipo di partizionamento?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Il pacchetto %s deve essere installato. Volete installarlo?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1799,7 +2015,7 @@ msgstr ""
"Nel caso tu usassi LILO non funzionerebbe, o se non usassi LILO non ti "
"servirebbe /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1811,7 +2027,7 @@ msgstr ""
"partizione /boot. Se hai intenzione di usare LILO come boot manager, "
"accertati di creare una partizione /boot"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1821,49 +2037,49 @@ msgstr ""
"Nessun bootloader puņ gestirla senza una partizione /boot.\n"
"Perciņ accertati di aggiungere una partizione /boot."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
"La tabella delle partizioni del disco %s sta per essere scritta su disco!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sarą necessario riavviare il sistema prima che le modifiche diventino "
"effettive!"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Formattazione"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formattazione file di loopback %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione partizione %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "Nascondi file"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "Sposta i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1872,83 +2088,83 @@ msgstr ""
"La directory %s contiene gią dei dati\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "Sto spostando i file sulla nuova partizione"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "Sto copiando %s"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "Sto cancellando: %s"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partizione %s adesso č nota come %s"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Dispositivo: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera di drive DOS: %s (solo una supposizione)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipo: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Nome: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Inizia: settore %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Dimensione: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s settori"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Da cilindro %d a %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Non formattato\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "In linea\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1957,7 +2173,7 @@ msgstr ""
"File di loopback:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1965,27 +2181,27 @@ msgstr ""
"Partizione di boot predefinita\n"
" (per boot MS-DOS, non per lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Livello %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Dimensione del blocco %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "Dischi RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Nome file di loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1997,7 +2213,7 @@ msgstr ""
"una partizione Driver, č meglio\n"
"non toccarla.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2009,64 +2225,59 @@ msgstr ""
"viene utilizzata per effettuare\n"
"il dual-boot del tuo sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Dimensione: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindri, %s testine, %s settori\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "Dischi LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipo tabella delle partizioni: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "su bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Opzioni: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "Chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "Scegliete la chiave di crittazione del filesystem"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Questa chiave di crittazione č troppo semplice (deve essere lunga almeno %d "
"caratteri)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "Le chiavi di crittazione non corrispondono"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "Chiave di crittazione"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "Chiave di crittazione (di nuovo)"
@@ -2117,23 +2328,23 @@ msgstr "Dominio NIS"
msgid "Search servers"
msgstr "Ricerca server"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, 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:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non č riuscito"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2150,58 +2361,58 @@ msgstr "con /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Non puoi usare JFS per partizioni pił piccole di 16 Mb"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Non puoi usare ReiserFS per partizioni pił piccole di 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "I punti di mount devono iniziare con /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "C'č gią una partizione con il punto di mount %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Non puoi usare un Volume Logico LVM per il punto di mount %s"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr "č un vero filesystem (ext2, reiserfs) per questa punto di mount\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Non puoi usare un filesystem crittato per il punto di mount %s"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "Non c'č abbastanza spazio libero per l'allocazione automatica"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "Nulla da fare"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2210,259 +2421,263 @@ msgstr ""
"creare nuovi filesystem. Per favore controlla il tuo hardware per stabilire "
"la causa di questo problema"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Non hai alcuna partizione!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Usa il riconoscimento automatico"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Generico"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Memoria della scheda (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "carica configurazione"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Cambia tipo"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Esci"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Guida"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Guida"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Guida/_Informazioni su..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Mouse"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Memoria della scheda (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Annulla"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Mouse"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Descrizione"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autenticazione"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Scegli file"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Dispositivo di gateway"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 pulsanti"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Esci"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Guida"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Guida"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Guida/_Informazioni su..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Investgazione automatica"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Ricerca del disco fisso"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Vedi informazioni hardware"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura mouse"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Mostra informazioni"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Configura mouse"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "rilevato sulla porta: %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Attendere prego"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d secondi"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Sto rimuovendo la stampante \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Usa il riconoscimento automatico"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generico"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Investgazione automatica"
+msgid "Card model :"
+msgstr "Memoria della scheda (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Cambia tipo"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "carica configurazione"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -4392,7 +4607,7 @@ msgstr ""
"Cliccate su \"Annulla\" per annullare questa operazione senza che vengano\n"
"persi dati o partizioni presenti su questo disco rigido."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4404,7 +4619,7 @@ msgstr ""
"di boot non č aggiornato rispetto al supporto di installazione. Per favore "
"create un dischetto di boot aggiornato."
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "Dovete formattare anche %s"
@@ -4433,20 +4648,20 @@ msgstr ""
"\n"
"Vuoi davvero installare questi server?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare broadcast senza un dominio NIS"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserisci un floppy MS-DOS nel drive %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "Questo floppy non č stato formattato usando MS DOS/Windows"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4454,7 +4669,7 @@ msgstr ""
"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
"l'installazione digitando ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
@@ -4492,7 +4707,7 @@ msgstr ""
"\n"
"Continuo comunque?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Devi avere una partizione FAT montata su /boot/efi"
@@ -4674,12 +4889,12 @@ msgstr ""
"C'č stato un errore, ma non so come gestirlo correttamente.\n"
"Continua a tuo rischio e pericolo."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Punto di mount doppio: %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4691,12 +4906,12 @@ msgstr ""
"Controlla il cdrom su un sistema gią installato digitando \"rpm -qpl "
"mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Benvenuto a %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
@@ -4706,7 +4921,7 @@ msgstr "Nessun drive floppy disponibile"
msgid "Entering step `%s'\n"
msgstr "Inizio fase '%s'\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4717,79 +4932,79 @@ msgstr ""
"Mandrake Linux. In tal caso, in alternativa puoi provare un'installazione \n"
"testuale. Per questo, premi 'F1' all'avvio da CDROM, poi digita 'text'."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Classe d'installazione"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
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:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Selezione individuale pacchetti"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Domensione totale: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Pacchetto errato"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Nome: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versione: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Dimensioni: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Importanza: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Non puoi selezionare questo pacchetto perchč non c'č abbastanza spazio \n"
"rimanente per installarlo"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "I seguenti pacchetti stanno per essere installati"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "I seguenti pacchetti satanno per essere rimossi"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Non puoi selezionare/deselezionare questo pacchetto"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Questo č un pacchetto obbligatorio, non puņ essere deselezionato"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Non puoi deselezionare questo pacchetto. č gią installato"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4797,74 +5012,74 @@ msgstr ""
"Questo pacchetto deve essere aggiornato\n"
"Sei sicuro di volerlo deselezionare?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Non puoi deselezionare questo pacchetto. Deve essere aggiornato"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "Mostra i pacchetti selezionati automaticamente"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "Carica/Salva su floppy"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "Aggiornamento scelta pacchetti"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "Installazione minima"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Installazione"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Sto valutando"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Tempo restante "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Per favore attendi, sto preparando l'installazione"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d pacchetti"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accetta"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Rifiuta"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4880,17 +5095,17 @@ msgstr ""
"pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
"Cd-Rom."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "C'č stato un errore ordinando i pacchetti:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "C'č stato un errore installando i pacchetti:"
@@ -5192,104 +5407,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastiera"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "Per favore, scegli la mappa della tastiera."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Ecco la lista completa delle tastiere disponibili"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Che classe di installazione preferisci?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Installa/Aggiorna"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Č un'installazione o un aggiornamento?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Raccomandata"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Esperto"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "Aggiorna"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "Solo aggiornamento pacchetti"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "Per favore, scegli il tipo del tuo mouse."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Porta del mouse"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Per favore scegli a che porta seriale č connesso il mouse."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "Emulazione pulsanti"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "Emulazione pulsante 2"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "Emulazione pulsante 3"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Configuro schede PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Sto configurando IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "nessuna partizione disponibile"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Controllo delle partizioni per trovare i punti di mount"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Scegli i punti di mount"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5306,7 +5521,7 @@ msgstr ""
"\n"
"Ti va bene liberare tutte le partizioni?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5314,7 +5529,7 @@ msgstr ""
"Diskdrake ha fallito la lettura della tabella delle partizioni.\n"
"Continua a tuo rischio e pericolo!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5322,73 +5537,73 @@ msgstr ""
"Non c'č spazio libero per un bootstrap di 1MB! L'installazione continua, ma "
"per avviare il sistema dovrai creare la partizione di bootstrap con DiskDrake"
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "Non ho trovato una partizione root da aggiornare"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Partizione radice"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Qual'č la partizione radice (/) del tuo sistema?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Devi resettare affinché le modifiche alla tabella delle partizioni\n"
"abbiano effetto"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Scegli le partizioni che vuoi formattare"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Controllo blocchi danneggiati?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Formattazione partizioni"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sto creando e formattando il file %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Swap insufficiente per completare l'installazione. Per favore, aumentane le "
"dimensioni"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Sto cercando i pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Sto cercando i pacchetti disponibili"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Sto cercando i pacchetti da aggiornare"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Non puoi deselezionare questo pacchetto. č gią installato"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Sto cercando i pacchetti da aggiornare"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5397,7 +5612,7 @@ msgstr ""
"Il tuo sistema non ha abbastanza spazio rimanente per l'installazione o\n"
"l'aggiornamento (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5405,35 +5620,35 @@ msgstr ""
"Per favore scegli di caricare o salvare la selezione pacchetti su floppy.\n"
"Il formato č lo stesso dei floppy generati con auto_install."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "Carica da floppy"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "Caricamento da floppy"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "Selezione pacchetti"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Salva su floppy"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "Lo spazio indicato č maggiore dello spazio disponibile"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "Tipo di installazione"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5441,15 +5656,15 @@ msgstr ""
"Non avete selezionato nessun gruppo di pacchetti.\n"
"Per favore scegliete il tipo di installazione minima desiderato:"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "Con la documentazione essenziale (raccomandata!)"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazione veramente minima (in particolare niente urpmi)"
@@ -5468,11 +5683,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom chiamato \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5481,21 +5696,21 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, 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:844
+#: ../../install_steps_interactive.pm_.c:845
#, 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:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5571,7 +5786,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5592,182 +5807,191 @@ msgstr ""
"\n"
"Volete installare gli aggiornamenti?"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
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:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
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:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Qual'č il tuo fuso orario?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "L'orologio del tuo hardware č settato su GMT"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Server CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Nessuna stampante"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
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:1028
+#: ../../install_steps_interactive.pm_.c:1029
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:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Riepilogo"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Fuso orario"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Stampante"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "Scheda ISDN"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "Scheda audio"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "Scheda TV"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "Prendi i font di Windows"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "File locali"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Scegli password per root"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Nessuna Password"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questa password č troppo semplice (deve essere almeno di %d caratteri)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticazione"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Autenticazione NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "Server NIS"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Autenticazione LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "Prendi i font di Windows"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "Server NTP"
+msgid "Authentication Windows Domain"
+msgstr "Autenticazione LDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Nome dominio"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5796,19 +6020,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:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Primo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Secondo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Salta"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5834,7 +6058,7 @@ msgstr ""
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5848,29 +6072,29 @@ msgstr ""
"molto probabilmente non sarą possibile creare un floppy di 1.44 Mb\n"
"perché XFS necessita di in driver molto grande)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
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:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserisci un floppy nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Creazione disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Preparazione del bootloader"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5882,11 +6106,11 @@ msgstr ""
"L'installazione continuerą, ma dovrai usare\n"
" BootX per avviare il tuo computer"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Vuoi usare aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5894,16 +6118,16 @@ msgstr ""
"Errore installando aboot, \n"
"provo a forzare l'installazione anche se ciņ distrugge la prima partizione?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "Sto installando il bootloader"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Installazione del bootloader fallita. Si č verificato il seguente errore:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5920,17 +6144,17 @@ msgstr ""
" Poi digitate: shut-down\n"
"Al boot successivo dovreste vedere il prompt del bootloader."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../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:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Sto creando il floppy di auto installazione"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5940,7 +6164,7 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5973,15 +6197,15 @@ msgstr ""
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Crea il floppy di auto installazione"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5995,15 +6219,15 @@ msgstr ""
"\n"
"Probabilmente preferirete ripetere l'installazione.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatizzata"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ripeti"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Salva scelta pacchetti"
@@ -6030,24 +6254,35 @@ msgstr "manca l'aiuto per la console"
msgid "Choose a file"
msgstr "Scegli un file"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Avanzato"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "Di base"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Indietro"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "Successivo"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Scelta errata, prova di nuovo\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "La tua scelta? (default %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -6056,35 +6291,35 @@ msgstr ""
"Entrate che dovrete riempire:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La tua scelta? (0/1, default `%s') "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "Pulsante `%s': %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "Vuoi cliccare su questo pulsante?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La tua scelta? (default `%s'%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Ci sono molte cose fra cui scegliere (%s)\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -6094,7 +6329,7 @@ msgstr ""
"modificare, oppure premete Invio per continuare.\n"
"La vostra scelta?"
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -6103,327 +6338,379 @@ msgstr ""
"=> Attenzione, un'etichetta č cambiata:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "Riproporre"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ceca (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Tedesca"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Spagnola"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Finlandese"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Francese"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norvegese"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Polacca"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Russa"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Svedese"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Tastiera UK"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "Tastiera US"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "Albanese"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armena (vecchia)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armena (macchina da scrivere)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armena (fonetica)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjana (latina)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "abilita"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "Bulgara (fonetica)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "Bulgara (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliana (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estone"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Bielorussa"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Svizzera (mappa tedesca)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Svizzera (mappa francese)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ceca (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Tedesca (nessun tasto morto)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danese"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegese)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedese)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estone"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiana (mappa \"Russa\")"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiana (mappa \"Latina\")"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Greca"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ungherese"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Israeliana"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Israeliana (Fonetica)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iraniana"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandese"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italiana"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Giapponese 106 tasti"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Tastiera Coreana"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Latino Americana"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Lettone"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lituana AZERTY (vecchia)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lituana AZERTY (nuova)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituana \"numero riga\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituana \"fonetica\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "Lettone"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Macedone"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Serba (cirillica)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Olandese"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Polacca (mappa qwerty)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Polacca (mappa qwertz)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portoghese"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Canadese (Quebec)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "Romena (qwertz)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "Romena (qwerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Russa (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovena"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovacca (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovacca (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "Serba (cirillica)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "Tamil"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "Tamil (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "Tamil (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Tastiera Thai"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "Tastiera Tajik"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turca (modulo \"F\" tradizionale)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turca (modello \"Q\" moderno)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ucraina"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "Tastiera US (internazionale)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"riga numerica\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "Yugoslava (latino)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "Tasto Alt di destra"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "Entrambi i tasti Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "I tasti Ctrl e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "Il tasto CapsLock"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Tasti Ctrl e Alt allo stesso tempo"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "I tasti Alt e Shift allo stesso tempo"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "Tasto \"Menu\""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "Tasto \"Windows\" di sinistra"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "Tasto \"Windows\" di destra"
@@ -6432,37 +6719,37 @@ msgstr "Tasto \"Windows\" di destra"
msgid "Circular mounts %s\n"
msgstr "Mount circolari %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Numero telefonico"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Formatta partizioni"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"Il supporto PCMCIA non č pił disponibile per i kernel 2.2, per favore usate "
"un kernel 2.4."
@@ -6567,51 +6854,43 @@ msgstr "nessuno"
msgid "No mouse"
msgstr "Nessun mouse"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Per favore prova il mouse"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Per attivare il mouse"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "MUOVI LA RUOTA!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Finisci"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Avanti ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Indietro"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Č corretto?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Espandi struttura"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Raggruppa struttura"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Cambia tra ordinamento semplice o a gruppi"
@@ -6634,6 +6913,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "usa dhcp"
@@ -6661,7 +6944,7 @@ msgstr ""
"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema.\n"
"Non posso configurare questo tipo di connessione."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Scegli l'interfaccia di rete"
@@ -6676,7 +6959,7 @@ msgstr ""
msgid "no network card found"
msgstr "nessuna scheda di rete trovata"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Sto configurando la rete"
@@ -6692,7 +6975,7 @@ 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:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Nome host"
@@ -6720,7 +7003,7 @@ msgstr "Di che tipo č la tua connessione ISDN?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6849,43 +7132,43 @@ msgstr "Per favore scegli a che porta seriale č connesso il tuo modem."
msgid "Dialup options"
msgstr "Opzioni di chiamata"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Nome connessione"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Numero telefonico"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "ID di accesso"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Basata su script"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Basata su terminale"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Nome dominio"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Primo server DNS (opzionale)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "Secondo server DNS (opzionale)"
@@ -6999,13 +7282,13 @@ msgstr "Scegli il profilo da configurare"
msgid "Use auto detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../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:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
@@ -7121,7 +7404,7 @@ msgstr ""
"Provate la connessione usando net_monitor o mcc. Se la connessione non "
"funziona, dovreste ripetere la configurazione."
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7133,7 +7416,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:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7143,43 +7426,43 @@ 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:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Sto configurando il dispositivo di rete %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Indirizzo IP"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP automatico"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Attivato/a al momento del boot"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
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:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7191,40 +7474,40 @@ msgstr ""
"come ''mybox.mylab.myco.com''.\n"
"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (es. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Dispositivo di gateway"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "Individua identitą della scheda audio (utile per i laptop)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Il proxy dovrebbe essere ftp://..."
@@ -7236,7 +7519,7 @@ msgstr "Configurazione di internet"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Vuoi provare a connetterti a Internet adesso?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Sto provando la tua connessione ..."
@@ -7264,43 +7547,43 @@ msgstr "Configurazione della Connessione"
msgid "Please fill or check the field below"
msgstr "Per favore riempi o controlla il campo qui sotto"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "IRQ della scheda"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Memoria della scheda (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "IO della scheda"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "IO_0 della scheda"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "IO_1 della scheda"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Il tuo numero di telefono personale"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Nome del provider (es. provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Numero telefonico del provider"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Dns 1 del provider (opzionale)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Dns 2 del provider (opzionale)"
@@ -7308,28 +7591,28 @@ msgstr "Dns 2 del provider (opzionale)"
msgid "Choose your country"
msgstr "Scegli la tua nazione"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Modalitą di chiamata"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "Velocitą della connessione"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "Timeout della connessione (in secondi)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Login dell'account (nome utente)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Password dell'account"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7365,7 +7648,7 @@ msgstr "File di backup errato"
msgid "Error writing to file %s"
msgstr "Errore scrivendo sul file %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7412,7 +7695,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7440,7 +7723,7 @@ msgstr "Stampante remota"
msgid "Printer on remote CUPS server"
msgstr "Stampante su server CUPS remoto"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "Stampante su server lpd remoto"
@@ -7456,7 +7739,7 @@ msgstr "Stampante su server SMB/Windows95/98/NT"
msgid "Printer on NetWare server"
msgstr "Stampante su server NetWare"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "Indica l'URI di un dispositivo di stamp"
@@ -7464,110 +7747,110 @@ msgstr "Indica l'URI di un dispositivo di stamp"
msgid "Pipe job into a command"
msgstr "Invia tramite pipe al comando"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Modello sconosciuto"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "Stampanti locali"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "Stampanti remote"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", stampante USB \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", dispositivo multifunzione sulla porta parallela \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ", dispositivo multifunzione su USB"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", dispositivo multifunzione su HP JetDirect"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", dispositivo multifunzione"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", sto stampando su %s"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "sul server LPD \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "sul server Windows \"%s\", condivisione \"%s\""
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "sul server Novell \"%s\", stampante \"%s\""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", uso il comando %s"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Stampante di tipo raw (nessun driver)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(su %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(su questa macchina)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Sul server CUPS \"%s\""
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Predefinito)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Scegli Connessione stampante"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Com'č collegata la stampante?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7577,15 +7860,19 @@ msgstr ""
"Con un server remoto CUPS, non devi configurare alcuna stampante\n"
"adesso: le stampanti saranno individuate automaticamente."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "Configurazione di CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "Indica il server CUPS"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7605,7 +7892,7 @@ msgstr ""
"relative alla stampante dal server; altrimenti lasciate questi campi in "
"bianco."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7622,32 +7909,32 @@ msgstr ""
"\" e modificate manualmente il file /etc/cups/cupsd.conf. Non dimenticatevi "
"di riavviare CUPS subito dopo (col comando: \"service cups restart\")."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "L'indirizzo IP deve essere in formato 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Il numero della porta dovrebbe essere un numero intero!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "IP del server CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Porta"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "Configurazione automatica di CUPS"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "Aggiungi nuova stampante"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7669,50 +7956,67 @@ msgstr ""
"dandovi accesso a tutti i driver, opzioni dei driver e tipi di connessione "
"disponibili."
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "Stampante locale"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"Benvenuti nell'assistente di configurazione delle stampanti\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"Questo assistente vi aiuterą a configurare le stampanti collegate a questo "
-"computer.\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-"Per favore collegate la vostra stampante al computer e accendetela. Cliccate "
-"su \"Succ\" quando siete pronti, e su \"Annulla\" se non desiderate "
-"configurare le vostre stampanti adesso.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Si noti che alcuni computer potrebbero bloccarsi durante il riconoscimento "
-"automatico delle stampanti, in tal caso disabilitate questa caratteristica "
-"per poter effettuare l'installazione. Usate il modo Esperto di Printerdrake "
-"quando volete configurare la stampa su una stampante remota se Printerdrake "
-"non la include nell'elenco automaticamente."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "Riconoscimento automatico stampanti"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "Stampante locale"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7736,58 +8040,50 @@ msgstr ""
"stampa, etc.), selezionate \"Stampante\" nella sezione \"Hardware\" del "
"Centro di controllo Mandrake."
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "Riconoscimento automatico delle stampanti"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake č in grado di riconoscere automaticamente una stampante "
-"collegata localmente su una porta parallela o USB, ma si noti che su alcuni "
-"sistemi il riconoscimento automatico PUŅ BLOCCARE IL SISTEMA E QUESTO PUŅ "
-"CAUSARE LA CORRUZIONE DEL FILESYSTEM! Pertanto fatelo A VOSTRO RISCHIO E "
-"PERICOLO!\n"
-"\n"
-"Volete davvero che le stampanti vengano riconosciute automaticamente?"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "Configurazione manuale della stampante"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", host TCP/IP \"%s\", porta %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Test delle porte"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Stampante su server SMB/Windows95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "Rilevato %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Stasmpante sulla porta parallela \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "Stampante USB \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Stampante di rete (TCP/Socket)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "Stampante su server SMB/Windows95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7800,34 +8096,21 @@ msgstr ""
"lp1, ..., equivalenti a LPT1:, LPT2:, ...; prima stampante USB: /dev/usb/"
"lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "Devi indicare il nome di un dispositivo o di un file!"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr "Non ho trovato nessuna stampante locale!\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"Le stampanti di rete possono essere installate soltanto dopo "
-"l'installazione. Scegliete \"Hardware\" e poi \"Stampante\" nel Centro di "
-"controllo Mandrake."
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"Per installare stampanti di rete, cliccate su \"Annulla\", passate al \"Modo "
-"esperto\" e cliccate su \"Aggiungi nuova stampante\"."
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Stampante locale"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7836,7 +8119,7 @@ msgstr ""
"che desiderate configurare inserite un nome di dispositivo o di file nel "
"campo immissione testo"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7846,7 +8129,7 @@ msgstr ""
"inserite il nome di un dispositivo o di un file nel campo di immissione "
"testo."
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7858,7 +8141,7 @@ msgstr ""
"vostra stampante non č stata riconosciuta in modo corretto, o se preferite "
"una configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7871,7 +8154,7 @@ msgstr ""
"vostra stampante non č stata riconosciuta correttamente, o se preferite una "
"configurazione personalizzata, cliccate su \"Configurazione manuale\"."
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7880,12 +8163,12 @@ msgstr ""
"oppure inserite il nome di un dispositivo o di un file nel campo di "
"immissione testo"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Per favore scegliete la porta alla quale č connessa la vostra stampante."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7893,65 +8176,19 @@ msgstr ""
" (Porte parallele: /dev/lp0, /dev/lp1, ..., equivalenti a LPT1:, LPT2:, ...; "
"prima stampante USB: /dev/usb/lp0, seconda: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "Configurazione manuale"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"La vostra stampante č un dispositivo multifunzione prodotto da HP "
-"(OfficeJet, PSC, PhotoSmart, LaserJet 1100/1200/1220/3200/3300 con scanner)?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "Installazione del pacchetto HPOJ..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "Controllo dispositivo e configuro HPOJ ..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Installazione del pacchetto SANE"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Installazione dei pacchetti ..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "Rendo la porta della stampante disponibile per CUPS ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "Sto leggendo il database delle stampanti"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Opzioni stampante lpd remota"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7960,27 +8197,47 @@ msgstr ""
"il nome dell'host del server della stampante e il nome della stampante\n"
"su quel server."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "Nome host remoto"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "Nome della stampante remota"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "Nome host remoto assente!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "Nome della stampante remota assente!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "Rilevato %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Sto attivando la connessione di rete ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "sul server Windows \"%s\", condivisione \"%s\""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Sto stampando con la stampante \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opzioni Stampante SMB (Windows9x/NT)"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7993,35 +8250,46 @@ msgstr ""
"pure il nome di condivisione per la stampante cui volete accedere e ogni\n"
"informazione utile riguardo nome dell'utente, password e gruppo di lavoro."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "Host del server SMB"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "IP del server SMB"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Nome di condivisione"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Gruppo di lavoro"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Usa il riconoscimento automatico"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "Devi indicare il nome del server o il numero IP dello stesso!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Il nome della condivisione Samba č assente!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -8045,7 +8313,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -8054,7 +8322,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -8062,11 +8330,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Opzioni stampante NetWare"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -8078,32 +8346,49 @@ msgstr ""
"del suo host TCP/IP!) insieme al nome della coda di stampa per la\n"
"stampante cui volete accedere e ogni nome utente e password applicabili."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Server della stampante"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Nome della coda di stampa"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "Il nome del server NCP č assente"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "Il nome dellla coda NCP č assente!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", host TCP/IP \"%s\", porta %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", host TCP/IP \"%s\", porta %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "Opzioni della stampante TCP/Socket"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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 ""
"Per stampare su una stampante TCP/Socket, dovete indicare il\n"
"nome host della stampante e opzionalmente il numero della porta.\n"
@@ -8111,19 +8396,21 @@ msgstr ""
"altri server potrebbe essere diverso. Consultate il manuale del vostro\n"
"hardware."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "Nome host della stampante"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "Nome host della stampante assente!"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "Nome host della stampante"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "URI della stampante"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -8133,11 +8420,11 @@ msgstr ""
"essere conforme alle specifiche CUPS o Foomatic. Notate che non tutti i i "
"tipi di URI sono supportati da tutti gli spooler."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Dev'essere inserito un'URI valido!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -8146,23 +8433,27 @@ msgstr ""
"Non č indispensabile riempire i campi Descrizione e \n"
"Posizione. Si tratta di commenti per gli utenti."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Nome della stampante"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Posizione"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "Sto leggendo il database delle stampanti"
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "Sto preparando il database delle stampanti ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "Il modello della vostra stampante"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -8177,24 +8468,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "Il modello č corretto"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Selezionate il modello manualmente"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "Scelta del modello della stampante"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "Che modello di stampante hai?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -8209,7 +8500,7 @@ msgstr ""
"un modello errato o su \"Stampante di tipo raw\", cercate quello corretto "
"nella lista."
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -8217,11 +8508,11 @@ msgstr ""
"Se la vostra stampante non č presente nella lista, cercate un modello "
"compatibile o simile (consultate il manuale della stampante)."
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "Configurazione di una stampante OKI winprinter"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -8231,11 +8522,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Configurazione di una stampante Lexmark a getto d'inchiostro"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -8243,7 +8534,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8256,7 +8547,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8273,22 +8564,22 @@ msgstr ""
"impostati correttamente. Si noti che quando la qualitą/risoluzione di stampa "
"č molto alta, la durata della stampa puņ diventare sensibilmente pił lenta."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "L'opzione %s dev'essere un numero intero!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "L'opzione %s dev'essere un numero!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "Opzione %s fuori scala!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8297,11 +8588,11 @@ msgstr ""
"Volete impostare questa stampante (\"%s)\n"
"come stampante predefinita?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "Pagine di prova"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8309,39 +8600,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "Nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "Stampa"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Pagina di prova standard"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "Pagina di prova alternativa (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "Pagina di prova fotografica"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "Non stampare nessuna pagina di prova"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Stampa della(e) pagina(e) di prova..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8355,7 +8646,7 @@ msgstr ""
"Stato della stampa:\n"
"%s\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8363,15 +8654,15 @@ msgstr ""
"La pagina(e) di prova č stata inviata alla stampante.\n"
"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Stampante in modo raw"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8380,15 +8671,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8397,7 +8688,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8405,41 +8696,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8449,7 +8740,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8458,45 +8749,45 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Sto stampando con la stampante \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "Chiudi"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "Lista opzioni di stampa"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8505,9 +8796,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8518,17 +8809,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "Sto leggendo i dati della stampante..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "Configurazione della stampante a trasferimento"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8538,51 +8829,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8590,58 +8881,58 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Il nome della stampante dovrebbe contenere solo lettere, numeri e il "
"trattino di sottolineatura"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "Nuovo nome della stampante"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "Sto aggiornando i dati della stampante ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "Configura di una stampante remota"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "Sto attivando la connessione di rete ..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Configura la rete adesso"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "Funzionalitą di rete non configurate"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8649,11 +8940,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "Vai avanti senza configurare la rete"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8663,31 +8954,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "Sto riavviando il sistema di stampa ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "alto"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "paranoico"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8702,11 +8993,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "Avvio il sistema di stampa al momento del boot"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8720,63 +9011,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "Scegli il sistema di stampa"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "Che sistema di stampa (spooler) vuoi usare?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Sto configurando la stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Installazione del pacchetto Foomatic"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Opzioni stampante"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "Sto preparando PrinterDrake"
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "Configurazione applicazioni ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "Vorresti configurare la stampa?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8784,39 +9075,35 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "Cambia il sistema di stampa"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "Modo Normale"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Esci"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "Volete configurare un'altra stampante?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "Modifica configurazione stampante"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8825,100 +9112,100 @@ msgstr ""
"Stampante %s\n"
"Cosa volete modificare riguardo questa stampante?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "Tipo di connessione della stampante"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "Nome, descrizione, collocazione della stampante"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "Stampa della(e) pagina(e) di prova"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "Sapere come usare questa stampante"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "Rimuovi stampante"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Sto rimuovendo la vecchia stampante \"%s\" ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "Stampante predefinita"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Volete davvero rimuovere la stampante \"%s\"?"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Sto rimuovendo la stampante \"%s\" ..."
@@ -8973,8 +9260,9 @@ msgstr ""
"Lascia in bianco se non desideri un proxy ftp"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "L'URL dovrebbe cominciare con 'ftp:'"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL dovrebbe cominciare con 'http:'"
#: ../../proxy.pm_.c:79
msgid ""
@@ -9023,46 +9311,6 @@ 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/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Questo livello va usato con cura. Rende il sistema pił facile da usare,\n"
-"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
-"o a Internet. Non c'č nessun accesso con password."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Con questo livello di sicurezza, l'uso di questo sistema come server "
-"diventa\n"
-"possibile. La sicurezza č ora abbastanza alta per consentire l'utilizzo\n"
-"del sistema come server che accetta connessioni da molti clienti. Nota: se "
-"la vostra\n"
-"macchina č un semplice cliente su Internet, fareste meglio a scegliere un "
-"livello\n"
-"pił basso."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "Opzioni avanzate"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Opzioni"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lancia il sistema audio ALSA (Advanced Linux Sound Architecture)"
@@ -9371,7 +9619,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "Sistema"
@@ -9485,7 +9733,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Centro di Controllo Mandrake"
@@ -9580,20 +9828,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Per favore rientra come %s per attivare le modifiche"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9601,174 +9849,174 @@ msgstr ""
"Non posso leggere la tua tabella delle partizioni, č troppo\n"
"corrotta per me :( . Proverņ a cancellare le partizioni rovinate."
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Configurazione della stampante a trasferimento"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Server di database"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Server di database"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "Server NIS"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "Server NIS"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Aggiungi utente"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "Aiuto"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Non connesso"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Cancella"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Tutti selezionati"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Aggiungi utente"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Sto configurando..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "riconfigura"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Per favore inserisci il floppy di avvio utilizzato nel drive %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nessun drive floppy disponibile"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "Errore!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "Configurazione installazione automatica"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9783,22 +10031,22 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "Configurazione automatica fasi di installazione"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Sto creando il floppy di auto installazione"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9806,37 +10054,50 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Congratulazioni!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "Installazione automatica"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Aggiungi una voce"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "Rimuovi l'ultima voce"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9844,7 +10105,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9852,31 +10113,95 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "progresso totale"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "Backup dei file di sistema..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "File di backup su disco rigido..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "Backup dei file dell'utente"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "Progresso del backup del disco rigido..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Usa unitą a nastro per effettuare il backup"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9884,49 +10209,53 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Errore leggendo il file %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selezione file"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9934,7 +10263,7 @@ msgstr ""
"\n"
"Per favore abilitate tutte le opzioni necessarie\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
@@ -9942,19 +10271,20 @@ msgstr ""
"nella\n"
"vostra directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "Backup dei vostri file di sistema (directory /etc)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Non includere file critici (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9962,83 +10292,127 @@ msgstr ""
"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
"vostra directory /etc."
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
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:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "Non includere la cache del navigatore"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "Utenti"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Usa unitą a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "Per favore inserisci il nome dell'host o l'IP"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, 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:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "Per favore inserisci il tuo nomei di login"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "Per favore inserisci la tua password"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "Ricorda questa password"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "Per favore, scegliete lo spazio su CD"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Per favore, accertatevi di usare supporti CD-RW"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, 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:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-"Per favore, controllate se volete includere\n"
-"il boot di install sul CD"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "Per favore, accertatevi di usare supporti CD-RW"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Per favore, accertatevi di usare supporti CD-RW"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10046,21 +10420,36 @@ msgstr ""
"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
"ad esempio: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Scegli file"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "Usa unitą a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
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:1446
+#: ../../standalone/drakbackup_.c:1983
+#, 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:1989
#, 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:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, 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:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10068,57 +10457,57 @@ msgstr ""
"Per favore, indicate le dimensioni massime\n"
"concesse a Drakbackup"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "Usa una quota per i file di backup."
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "Rete"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "Disco rigido  / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "ogni ora"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "ogni giorno"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "settimanale"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "ogni mese"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "Usa demone"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10126,7 +10515,7 @@ msgstr ""
"Per favore, scegli la frequenza\n"
"del backup"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10134,7 +10523,7 @@ msgstr ""
"Per favore, scegli il supporto\n"
"del backup"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10143,59 +10532,71 @@ msgid ""
msgstr ""
"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "Dopo ogni backup invia una mail rapporto a:"
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "Cosa"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "Dove"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "Altre opzioni"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Configurazione di Drakbackup"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "Per favore scegliete dove volete effettuare il backup"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "sul disco rigido"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "sulla rete"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "Sistema di backup"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "Fai il backup degli utenti"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "Seleziona l'utente manualmente"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10203,7 +10604,7 @@ msgstr ""
"\n"
"Fonti del backup: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10211,7 +10612,7 @@ msgstr ""
"\n"
"- File di sistema:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10219,7 +10620,7 @@ msgstr ""
"\n"
"- File degli utenti:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10227,7 +10628,7 @@ msgstr ""
"\n"
"- Altri file:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10236,22 +10637,32 @@ msgstr ""
"\n"
"- Salva su disco rigido seguendo il percorso: %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10260,12 +10671,12 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10274,7 +10685,7 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10283,7 +10694,7 @@ msgstr ""
"\t\t nome utente: %s\n"
"\t\t sul percorso: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10291,203 +10702,200 @@ msgstr ""
"\n"
"-Opzioni:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\tNon includere file di sistema\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\tEffettua backup usando tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\tI backup fanno uso di tar e gzip\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rigido.\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-Rete via SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
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:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr "Lista di dati da ripristinare:\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr "Lista di dati corrotti:\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "Per favore scegliete a che porta seriale č connesso il vostro modem."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr "          Tutti i dati selezionati sono stati          "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr "          Ripristinati con successo su %s       "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr "         Ripristina configurazione       "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "OK al ripristino degli altri file"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
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:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "Effettua il backup dei file di sistema prima di:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Per favore, scegliete la data da ripristinare"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "Usa il disco rigido per effettuare il backup"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "Connessione FTP"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "Connessione sicura"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "Altri supporti"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "Ripristina sistema"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "selezionate il percorso del ripristino (invece di / )"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "Rimuovi le directory dell'utente prima del ripristino."
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Ripristina tutti i backup"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "Personalizza il ripristino"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "Precedente"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Salva"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "Costruisci backup"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Ripristina"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "Successivo"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10495,9 +10903,9 @@ msgstr ""
"Per favore fai un backup prima di ripristinarlo...\n"
" o verifica che il percorso alla directory di salvataggio č corretto."
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10505,14 +10913,14 @@ msgstr ""
" la vostra mail di report non č stata inviata\n"
" Per favore configurate sendmail"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, 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:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10521,19 +10929,19 @@ msgstr ""
"Errore nella trasmissione del file via FTP.\n"
" Per favore, controllate la configurazione FTP."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10541,77 +10949,59 @@ msgstr ""
"Nessun file di configurazione trovato\n"
"per favore cliccate su Assistente o Avanzato"
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "Ancora in sviluppo ... attendere per favore."
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "Backup dei file di sistema"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "Backup dei file degli utenti"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Progresso totale"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "Sto inviando i file ..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "Lista di dati da includere su CDROM."
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "Per favore, insersci la velocitą del masterizzatore"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-"Per favore inserite il numero che identifica il vostro masterizzatore (es.: "
-"0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Per favore scegliete i pacchetti che volete installare."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "Effettua il backup adesso sulla base del file di configurazione"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "Vedi la configurazione di backup"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "Configurazione dell'assistente"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "Configurazione avanzata"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "Effettua il backup adesso"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -10622,7 +11012,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10643,7 +11033,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10656,7 +11046,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:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10680,7 +11070,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10697,21 +11087,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10725,18 +11115,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10753,7 +11143,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10793,7 +11183,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10804,7 +11194,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10817,7 +11207,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10856,96 +11246,123 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "Installazione di %s fallita. Si č verificato il seguente errore:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Programmi da linea di comando"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "sul disco rigido"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Centro di Controllo Mandrake"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "Tasto \"Menu\""
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Mouse"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Stampante remota"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Nome di condivisione"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "PrinterDrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Wizard della configurazione di rete"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Autenticazione"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Selezione pacchetti"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Attendere prego"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10957,47 +11374,47 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Post-disinstallazione"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Porta"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Post-disinstallazione"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Configurazione della rete (%d adattatori)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profilo: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Cancella profilo..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profilo da cancellare:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Nuovo profilo..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
@@ -11005,95 +11422,95 @@ msgstr ""
"Nome del profile da creare (il nuovo profilo verrą creato come copia di "
"quello attuale):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Nome host: "
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Accesso a Internet"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipo:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Gateway:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interfaccia:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Status:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "Attendere per favore"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Configura l'accesso a Internet"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "Configurazione LAN (rete locale)"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Driver"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfaccia"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "Protocollo"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "Stato"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Configura rete locale (LAN)"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "Cliccate qui per lanciare l'assistente ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Assistente..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Applica"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "Per favore attendi... sto applicando la configurazione"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connesso"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Non connesso"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Connetti..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "Disconnetti..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11101,7 +11518,7 @@ msgstr ""
"Attenzione, č stata individuata un'altra connessione a Internet, forse "
"attraverso la vostra rete locale"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11109,36 +11526,36 @@ msgstr ""
"Non disponi di nessuna interfaccia configurata.\n"
"Per prima cosa configurale cliccando su 'Configura'"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "Configurazione rete locale (LAN)"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adattatore %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Protocollo di boot"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Attivato/a al momento del boot"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "attivare adesso"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "disattivare adesso"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11146,7 +11563,7 @@ msgstr ""
"Questa interfaccia non č stata ancora configurata.\n"
"Lanciate l'assistente di configurazione nella finestra principale."
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11154,121 +11571,121 @@ msgstr ""
"Non disponi di una connessione a Internet.\n"
"Creane una cliccando su 'Configura'"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Configurazione della connessione a Internet"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Configurazione della connessione a Internet"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Tipo di connessione: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametri"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Scheda ethernet"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "uso: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Nome modulo"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Dimensione"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "creazione disco di avvio"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "predefinito"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "Errore DrakFloppy: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "versione del kernel"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Generale"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Area per esperti"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "Argomenti opzionali per mkinitrd"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Aggiungi un modulo"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "forza"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "se necessario"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "ometti moduli scsi"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "ometti moduli raid"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Rimuovi un modulo"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Output"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Crea il disco"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, 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:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11277,12 +11694,12 @@ msgstr ""
"Il dispositivo %s č vuoto \n"
"Inserisci un supporto."
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "Impssibile eseguire la chiamata fork: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11293,99 +11710,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "Cerca fonti installate"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "Deseleziona fonti installate"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "esamina tutti i font"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "nessun font trovato"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "fatto"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "non ho trovato nessun font nelle partizioni montate"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ri-selezionate i font corretti"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "non ho trovato nessun font.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "Cerca font nella lista installati"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "Copia i font"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "Installazione di font True Type"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "per favore attendere mentre eseguo ttmkfdir..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "Installazione font True Type effettuata"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "Conversione font"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "sto costruendo type1inst"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "conversione font ttf"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "conversione font pfm"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "Soppressione file temporanei"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "Riavvia XFS"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "Soppressione file dei font"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "riavvia xfs"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11399,107 +11816,111 @@ msgstr ""
"-Potete installare i font nel modo normale. In casi piuttosto rari, dei font "
"corrotti potrebbero bloccare il vostro server X."
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "Importazione font"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "Prendi i font di Windows"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "Disintallazione font"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "Opzioni avanzate"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "Lista font"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "Scegliete le applicazioni che supporteranno i font:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "Stampanti generiche"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "Selezionate il file o la directory del font e cliccate su 'Aggiungi'"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "Lista di installazione"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "cliccate qui se ne siete sicuri."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "qui in caso contrario."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "Deseleziona tutto"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "Tutti selezionati"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Rimuovi lista"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "Test iniziali"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "Copia i font sul tuo sistema"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "Installa e converti i font"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "Post-installazione"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "Rimuovi i font dal tuo sistema"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "Post-disinstallazione"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Condivisione connessione Internet"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Condivisione della connessione a Internet attualmente abilitata"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11511,31 +11932,31 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "disabilita"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "abbandona"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "riconfigura"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "Sto disattivando i server..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "La condivisione della connessione a Internet ora č disabilitata."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Condivisione connessione Internet attualmente disabilitata"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11547,19 +11968,19 @@ msgstr ""
"\n"
"Cosa vorresti fare?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "abilita"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "Sto attivando i server..."
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "La condivisione della connessione a Internet ora č abilitata."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11576,21 +11997,21 @@ msgstr ""
"Nota: č necessario un Adattatore di Rete dedicato per realizzare una\n"
"Rete di Area Locale (LAN)."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfaccia %s (usa il modulo %s)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "Interfaccia %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Nessun adattatore di rete nel tuo sistema!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11598,11 +12019,11 @@ msgstr ""
"Nessun adattatore di rete ethernet č stato rilevato nel tuo sistema. Per "
"favore lancia l'utilitą di configurazione hardware."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Interfaccia di rete"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11617,7 +12038,7 @@ msgstr ""
"\n"
"Sto per configurare la tua rete locale (LAN) usando quell'adattatore."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11625,11 +12046,11 @@ msgstr ""
"Per favore scegliete quale adattatore di rete sarą connesso alla vostra rete "
"locale (LAN)."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "Interfaccia di rete gią configurata"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11644,15 +12065,15 @@ msgstr ""
"\n"
"Potete farlo manualmente se sapete quello che state facendo."
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "Riconfigurazione automatica"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "Mostra la configurazione dell'interfaccia corrente"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11669,7 +12090,7 @@ msgstr ""
"Attribuzione IP: %s\n"
"Driver: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11689,34 +12110,34 @@ msgstr ""
"In alternativa, posso riconfigurare la vostra interfaccia di rete e (ri)"
"configurare un server DHCP per voi.\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "Rete locale di classe C"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "IP di (questo) server DHCP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "Riconfigurazione dell'interfaccia di rete e del server DHCP"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "La rete locale non terminava con `.0', rinuncio."
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Trovato conflitto potenziale dell'indirizzo LAN nella configurazione "
"corrente di %s!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Rilevata configurazione di Firewall!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11724,21 +12145,21 @@ msgstr ""
"Attenzione! Č stata rilevata una configurazione di firewall esistente. "
"Potrebbe avere bisogno di alcuni aggiustamenti manuali dopo l'installazione."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Sto configurando..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Sto configurando gli script, installando il software, avviando i server..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi nell'installazione del pacchetto %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11748,24 +12169,24 @@ msgstr ""
"Ora puoi condividere la connessione a Internet con altri computers sulla tua "
"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "Il setup č gią stato fatto, ma č attualmente disabilitato."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "Il setup č gią stato fatto, ed č attualmente abilitato."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
"Nessuna condivisione della connessione a Internet configurata in precedenza."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "Configurazione della connessione a Internet"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11780,20 +12201,13 @@ msgstr ""
"\n"
"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "Centro di Controllo"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Scegliete l'utilitą che volete usare"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11802,106 +12216,110 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "Canada (cavo)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA (cavo)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA (cavo-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "Cina (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "Giappone (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "Giappone (cavo)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Europa Orientale"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Francia"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "Irlanda"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Europa Occidentale"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "Australia"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "Nuova Zelanda"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Sud Africa"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr "Per favore, digitate il vostro standard tv e la nazione"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "Standard TV:"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "Area:"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "Ricerca di canali TV in corso ..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "Sto cercando canali TV"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "C'č stato un errore installando i pacchetti:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11925,11 +12343,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Per favore, scegliete l'impostazione della tastiera."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Vuoi che il tasto BackSpace funzioni come Canc nella console?"
@@ -11956,7 +12374,7 @@ msgstr ""
"Il cambiamento č stato applicato, ma perché diventi effettivo dovete uscire "
"dalla sessione"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12064,22 +12482,25 @@ msgstr "calendario"
msgid "Content of the file"
msgstr "Contenuto del file"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Notifica Mail/SMS"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "aspetta, sto analizzando: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Configurazione di avvisi email/SMS"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12087,123 +12508,124 @@ msgstr ""
"\n"
"Qui potrai configurare il sistema di avvisi.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Nome dominio"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "Server NIS"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Server di posta Postfix, server di news Inn"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "Server NIS"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "Server NIS"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "Servizi"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Server della stampante"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "configurazione servizio"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Verrete avvisati se uno dei servizi selezionati non č pił in esecuzione"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "carica configurazione"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Riceverete una notifica se il carico eccede questo valore"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "configurazione avvisi"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "Configurazione del modo in cui il sistema vi avvertirą"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Per favore inserisci la tua password"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Salva con nome..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "nessun serial_usb trovato\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Emula il terzo pulsante?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Sto leggendo i dati della stampante..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "Riconoscimento periferiche ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Test delle porte"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "Trovato %s su %s, devo configurarlo?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "Scegliete uno scanner"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "Questo scanner %s non č supportato"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Dispositivo di boot"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12214,7 +12636,7 @@ msgstr ""
"Potete lanciare printerdrake dal Centro di controllo Mandrake, sezione "
"Hardware."
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12234,15 +12656,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "Configurazione del firewall!"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "Configurazione del firewall!"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12254,7 +12676,7 @@ msgstr ""
"Hai gią configurato un firewall.\n"
"Clicca su Configura per modificare o rimuovere il firewall"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12507,48 +12929,48 @@ msgstr "Non riesco ad aprire %s: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "Non riesco ad aprire %s in scrittura: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "No, il DHCP non mi serve"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "Sģ, ho bisogno del DHCP"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "No, il NTP non mi serve"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "Sģ, ho bisogno del NTP"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "Non salvare"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "Salva ed Esci"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "Assistente di configurazione del firewall"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "No (usa un firewall per schermarlo da Internet)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "Sģ (lascia che passi attraverso il firewall)"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "Per favore attendere... Sto verificando i pacchetti installati"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12557,6 +12979,10 @@ msgstr ""
"Non ho potuto installare i pacchetti richiesti: %s e Bastille.\n"
"Provate a installarli manualmente."
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Web/FTP"
@@ -12606,6 +13032,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Utilitą audio: riproduttori mp3 o midi, mixer, etc"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Libri e Howto su Linux e il software libero"
@@ -12694,10 +13124,6 @@ msgid "Office Workstation"
msgstr "Postazione di lavoro con programmi Office"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "Server"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
@@ -12762,6 +13188,10 @@ msgid "Clients for different protocols including ssh"
msgstr "Clienti per vari protocolli, incluso ssh"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "Gateway per Internet"
@@ -12793,6 +13223,199 @@ msgstr "Multimedia - Masterizzazione CD"
msgid "Scientific Workstation"
msgstr "Workstation scientifica"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Questo livello va usato con cura. Rende il sistema pił facile da usare,\n"
+#~ "ma molto delicato: non deve essere usato per una macchina connessa ad "
+#~ "altre\n"
+#~ "o a Internet. Non c'č nessun accesso con password."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Con questo livello di sicurezza, l'uso di questo sistema come server "
+#~ "diventa\n"
+#~ "possibile. La sicurezza č ora abbastanza alta per consentire l'utilizzo\n"
+#~ "del sistema come server che accetta connessioni da molti clienti. Nota: "
+#~ "se la vostra\n"
+#~ "macchina č un semplice cliente su Internet, fareste meglio a scegliere un "
+#~ "livello\n"
+#~ "pił basso."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Opzioni"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "Sicurezza"
+
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "Lista di dati da includere su CDROM."
+
+#~ msgid "Please choose your CD space"
+#~ msgstr "Per favore, scegliete lo spazio su CD"
+
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Per favore, insersci la velocitą del masterizzatore"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr ""
+#~ "Per favore inserite il numero che identifica il vostro masterizzatore "
+#~ "(es.: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Per favore scegliete i pacchetti che volete installare."
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "L'URL dovrebbe cominciare con 'ftp:'"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "Per favore, controllate se volete includere\n"
+#~ "il boot di install sul CD"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "Server NTP"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "Benvenuti nell'assistente di configurazione delle stampanti\n"
+#~ "\n"
+#~ "Questo assistente vi aiuterą a configurare le stampanti collegate a "
+#~ "questo computer.\n"
+#~ "\n"
+#~ "Per favore collegate la vostra stampante al computer e accendetela. "
+#~ "Cliccate su \"Succ\" quando siete pronti, e su \"Annulla\" se non "
+#~ "desiderate configurare le vostre stampanti adesso.\n"
+#~ "\n"
+#~ "Si noti che alcuni computer potrebbero bloccarsi durante il "
+#~ "riconoscimento automatico delle stampanti, in tal caso disabilitate "
+#~ "questa caratteristica per poter effettuare l'installazione. Usate il modo "
+#~ "Esperto di Printerdrake quando volete configurare la stampa su una "
+#~ "stampante remota se Printerdrake non la include nell'elenco "
+#~ "automaticamente."
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "Riconoscimento automatico delle stampanti"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake č in grado di riconoscere automaticamente una stampante "
+#~ "collegata localmente su una porta parallela o USB, ma si noti che su "
+#~ "alcuni sistemi il riconoscimento automatico PUŅ BLOCCARE IL SISTEMA E "
+#~ "QUESTO PUŅ CAUSARE LA CORRUZIONE DEL FILESYSTEM! Pertanto fatelo A VOSTRO "
+#~ "RISCHIO E PERICOLO!\n"
+#~ "\n"
+#~ "Volete davvero che le stampanti vengano riconosciute automaticamente?"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "Configurazione manuale della stampante"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "Le stampanti di rete possono essere installate soltanto dopo "
+#~ "l'installazione. Scegliete \"Hardware\" e poi \"Stampante\" nel Centro di "
+#~ "controllo Mandrake."
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "Per installare stampanti di rete, cliccate su \"Annulla\", passate al "
+#~ "\"Modo esperto\" e cliccate su \"Aggiungi nuova stampante\"."
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "La vostra stampante č un dispositivo multifunzione prodotto da HP "
+#~ "(OfficeJet, PSC, PhotoSmart, LaserJet 1100/1200/1220/3200/3300 con scanner)?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "Installazione del pacchetto HPOJ..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "Controllo dispositivo e configuro HPOJ ..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "Installazione del pacchetto SANE"
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "Installazione dei pacchetti ..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "Effettuo una scansione con il vostro dispositivo multifunzione HP"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "Rendo la porta della stampante disponibile per CUPS ..."
+
+#~ msgid "Control Center"
+#~ msgstr "Centro di Controllo"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "Scegliete l'utilitą che volete usare"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "Configurazione del modo in cui il sistema vi avvertirą"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "nessun serial_usb trovato\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck č fallito con codice di uscita %d o segnale %d"
@@ -12884,9 +13507,6 @@ msgstr "Workstation scientifica"
#~ msgid "Setting security level"
#~ msgstr "Sto settando il livello di sicurezza"
-#~ msgid "Graphics card"
-#~ msgstr "Scheda grafica"
-
#~ msgid "Select a graphics card"
#~ msgstr "Scegli una scheda grafica"
@@ -12973,6 +13593,3 @@ msgstr "Workstation scientifica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Percentuale dei pacchetti da installare"
-
-#~ msgid "Please choose the desired security level."
-#~ msgstr "Scegli livello di sicurezza"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index b2b71d575..b1c8cba9b 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+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"
@@ -57,11 +57,11 @@ msgstr "X „µ”¼„Š¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
msgid "X server"
msgstr "X „µ”¼„Š"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "„Ž„ė„Į„Ų„Ć„ÉĄßÄź"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +69,44 @@ msgstr ""
"¤¢¤Ź¤æ¤Ī„·„¹„Ę„ą¤Ļ„Ž„ė„Į„Ų„ƄɤĪĄßÄź¤¬¤Ē¤­¤Ž¤¹”£\n"
"¤É¤¦¤·¤Ž¤¹¤«”©"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤĪ„į„ā„ź„µ„¤„ŗ¤ņĮŖĀņ¤·¤Ę²¼¤µ¤¤"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree¤ĪĄßÄź"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "¤É¤Ī¹½Ą®¤ĪXFree ¤Ė¤·¤Ž¤¹¤«"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "„Ų„Ƅɤņ¤½¤ģ¤¾¤ģĘČĪ©¤ĖĄßÄź"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Xinerama ³ČÄ„¤ņ»Č¤¦"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "°Ź²¼¤Ī„«”¼„ɤĄ¤±¤ņĄßÄź”§ ”Č%s”É(%s)"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "„Ļ”¼„É„¦„§„¢3D„¢„Æ„»„é„ģ”¼„·„ē„ó¤Ä¤­¤ĪXFree %s"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "¤³¤Ī„«”¼„ɤĻXFree %s ¤Ē3D„¢„Æ„»„é„ģ”¼„·„ē„ó²ÄĒ½¤Ē¤¹”£"
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "¼Āø³ĆŹ³¬¤Ī„Ļ”¼„É„¦„§„¢3D„¢„Æ„»„é„ģ”¼„·„ē„ó¤Ä¤­¤ĪXFree %s"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,11 +145,57 @@ msgstr ""
"¤³¤Ī„«”¼„ɤĻXFree %s ¤Ē3D„¢„Æ„»„é„ģ”¼„·„ē„ó²ÄĒ½¤Ē¤¹”£\n"
"¤æ¤Ą¤·¤¢¤Æ¤Ž¤Ē”¢¼Āø³ÅŖ¤Ź„µ„Ż”¼„ȤĒ”¢„Ž„·„ó„Õ„ź”¼„ŗ¤Ī²ÄĒ½Ą­¤¬¤¢¤ź¤Ž¤¹”£"
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac („¤„ó„¹„Č”¼„ė„Ē„£„¹„ׄģ„¤„Ʉ鄤„Š)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "„«„¹„æ„ą"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "„ā„Ė„æ"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "²ņĮüÅŁ"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "OK"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "½ŖĪ»"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -162,32 +208,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "„ā„Ė„æ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "„ā„Ė„æ"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "„«„¹„æ„ą"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "ČĘĶŃ"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "¤ā¤Č¤ĖĢį¤¹"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -208,11 +250,11 @@ msgstr ""
"„ā„Ė„椬„Ą„į”¼„ø¤ņ¼õ¤±¤ė¤«¤āĆĪ¤ģ¤Ž¤»¤ó”£\n"
"Ź¬¤«¤é¤Ź¤¤¾ģ¹ē¤Ļ, Äć¤į¤ĪĄßÄź¤Ė¤·¤Ę²¼¤µ¤¤”£"
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "æåŹæ„ź„Õ„ģ„Ć„·„å„ģ”¼„Č"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "æāľ„ź„Õ„ģ„Ć„·„å„ģ”¼„Č"
@@ -236,57 +278,42 @@ msgstr "1600Ėüæ§ (24 bits)"
msgid "4 billion colors (32 bits)"
msgstr "40²Ææ§ (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "²ņĮüÅŁ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "²ņĮüÅŁ"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "²ņĮüÅŁ¤Čæ§æ¼ÅŁ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "„­„ć„ó„»„ė"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "OK"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "¤³¤ĪĄßÄź¤Ē»ī¤·¤Ę¤ß¤Ž¤¹¤«”©"
@@ -295,71 +322,71 @@ msgstr "¤³¤ĪĄßÄź¤Ē»ī¤·¤Ę¤ß¤Ž¤¹¤«”©"
msgid "Test of the configuration"
msgstr "ĄßÄź¤ņ»ī¤·¤Ž¤¹"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„Č: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "„Ž„¦„¹¤Ī¼ļĪą: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "„Ž„¦„¹„Ē„Š„¤„¹: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "„ā„Ė„æ: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "„ā„Ė„ææåŹæʱ“ü: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "„ā„Ė„ææāľ„ź„Õ„ģ„Ć„·„å: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "„°„é„Õ„£„Ć„Æ„į„ā„ź: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "æ§æ¼ÅŁ: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "²ņĮüÅŁ: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 „µ”¼„Š: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 „Ʉ鄤„Š: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X ¤ĪµÆĘ°"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -368,171 +395,188 @@ msgstr ""
"„³„ó„Ō„唼„æ¤ņ„Ö”¼„Ȥ·¤æ»ž”¤¼«Ę°ÅŖ¤Ė X ¤¬Ī©¤Į¾å¤¬¤ėĄßÄź¤Ė¤Ē¤­¤Ž¤¹”£\n"
"„ź„Ö”¼„Ȥ·¤æ»ž X ¤ņĪ©¤Į¾å¤²¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "¤É¤Ī¼ļĪą¤ĪISDNĄÜĀ³¤Ē¤¹¤«”©"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "„Ö”¼„Č„Ń”¼„Ę„£„·„ē„ó¤ĪŗĒ½é¤Ī„»„Æ„æ"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "„Ʉ鄤„Ö¤ĪŗĒ½é¤Ī„»„Æ„æ (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO ¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "„Ö”¼„Č„ķ”¼„Ą¤ņ¤É¤³¤Ė„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/grub ¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "„Ę„­„¹„Č„į„Ė„唼ČĒ LILO"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "„°„é„Õ„£„Ć„Æ„į„Ė„唼ČĒ LILO"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Windows¤«¤éµÆĘ° (loadlin »ČĶŃ)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī„į„¤„ó„Ŗ„ׄ·„ē„ó"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "»ČĶѤ¹¤ė„Ö”¼„Č„ķ”¼„Ą"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "„Ö”¼„Č„Ē„Š„¤„¹"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (øŤ¤ BIOS ¤Ē¤ĻĘ°¤«¤Ź¤¤)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "„³„ó„Ń„Æ„Č"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "„³„ó„Ń„Æ„Č"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "„Ó„Ē„Ŗ„ā”¼„É"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "„Ē„Õ„©„ė„Č„¤„į”¼„øµÆĘ°¤ĪĀŌ¤Į»ž“Ö"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "„Ń„¹„ļ”¼„É"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "„Ń„¹„ļ”¼„É (¤ā¤¦°ģÅŁ)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "Ą©øĀ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "³Ę„Ö”¼„Č»ž¤Ė /tmp °Ź²¼¤ņ¾Ć¤¹"
# added a \n to the translation to avoid that the dialog window
# in which it appears to be tooooo laaaaarge
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr ""
"ɬĶפŹ¤éĄµ³Ī¤ŹRAM„µ„¤„ŗ¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤\n"
"”Ź%d MB¤¬ø«¤Ä¤«¤ź¤Ž¤·¤æ”Ė"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "„Ž„ė„Į„ׄķ„Õ„”„¤„ė¤ņĶ­øś¤Ė"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Ram„µ„¤„ŗ¤ņMB¤ĒĘžĪĻ"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"”Č„³„Ž„ó„Ʉ鄤„ó„Ŗ„ׄ·„ē„ó¤ĪĄ©øĀ”É„Ŗ„ׄ·„ē„ó¤Ļ„Ń„¹„ļ”¼„ɤ¬¤Ź¤¤¤Č\n"
"Ģņ¤Ė¤æ¤Į¤Ž¤»¤ó”£"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "¤ā¤¦°ģÅŁ»ī¤·¤Ę²¼¤µ¤¤"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "„Ń„¹„ļ”¼„ɤ¬°ģĆפ·¤Ž¤»¤ó"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "½é“ü²½„į„Ć„»”¼„ø"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "„Ŗ”¼„ׄó„Õ„””¼„ą„¦„§„¢¤Ī„Ē„£„ģ„¤"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "„«”¼„Ķ„ė„Ö”¼„ȤĪ„愤„ą„¢„¦„Č"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CD ¤«¤é¤ĪµÆĘ°¤ņĶ­øś¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF ¤«¤é¤ĪµÆĘ°¤ņĶ­øś¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "„Ē„Õ„©„ė„ȤĪ OS ¤Ļ”©"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -541,7 +585,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -549,147 +593,148 @@ msgstr ""
"„Ø„ó„Č„ź¤Ļ°Ź²¼¤Ī¤Č¤Ŗ¤ź¤Ē¤¹”£\n"
"ÄÉ²Ć”¦ŹŃ¹¹¤Ē¤­¤Ž¤¹”£"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ÄɲĆ"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "½ŖĪ»"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "ŹŃ¹¹"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "¤É¤Ī„愤„פņÄÉ²Ć¤·¤Ž¤¹¤«"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Ā¾¤Ī OS (SunOS¤Ź¤É...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Ā¾¤Ī OS (MacOS¤Ź¤É...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Ā¾¤Ī OS („¦„£„ó„É„¦„ŗ¤Ź¤É...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "„¤„į”¼„ø"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "„ė”¼„Č"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "ÄɲĆ"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Ęɤ߽ń¤­"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "„Ę”¼„Ö„ė"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "“ķø±"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "„é„Ł„ė"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "„Ē„Õ„©„ė„Č"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "Initrd„µ„¤„ŗ"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "„Ó„Ē„Ŗ¤Ź¤·"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "„Ø„ó„Č„ź¤ņ¾Ć¤¹"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "¶õĒņ¤Ī„é„Ł„ė¤Ļµö¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr "„«”¼„Ķ„ė„¤„į”¼„ø¤ņ»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "root„Ń”¼„Ę„£„·„ē„ó¤Ļɬ¤ŗ»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "¤³¤Ī„é„Ł„ė¤Ļ¤¹¤Ē¤Ė»Č¤ļ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s „¤„ó„攼„Õ„§”¼„¹¤¬ø«¤Ä¤«¤ź¤Ž¤·¤æ"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "ŹĢ¤Ī¤ā¤Ī¤Ļ¤¢¤ź¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "%s „¤„ó„攼„Õ„§”¼„¹¤Ļ¤¢¤ź¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "¤¤¤¤¤Ø"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "¤Ļ¤¤"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s „«”¼„É %s ¤Ī„Ʉ鄤„Š„¤„ó„¹„Č”¼„ėĆę"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(„ā„ø„唼„ė %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -698,7 +743,7 @@ msgstr ""
"¤Ē¤Ļ„ā„ø„唼„ė %s ¤Ī„Ŗ„ׄ·„ē„ó¤ņ»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"¤Ź¤Ŗ”¢„¢„É„ģ„¹¤Ļ¤¹¤Ł¤Ę”¢Ę¬¤Ė 0x ¤ņ¤Ä¤±¤ĘĘžĪĻ¤¹¤ė¤³¤Č”£Ī攧 '0x123'"
-#: ../../any.pm_.c:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -709,17 +754,17 @@ msgstr ""
"„Ŗ„ׄ·„ē„ó¤Ī„Õ„©”¼„Ž„ƄȤĻ”ČĢ¾Į°=ĆĶ Ģ¾Į°2=ĆĶ2 ...”ɤĒ¤¹”£\n"
"Īć: ”Čio=0x300 irq=7”É"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "„ā„ø„唼„ė¤Ī„Ŗ„ׄ·„ē„ó"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "¤É¤Ī %s „Ʉ鄤„Š¤ņ»ī¤·¤Ž¤·¤ē¤¦¤«”©"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -736,15 +781,15 @@ msgstr ""
"¤µ¤»¤Ę¤ß¤Ž¤¹¤«”©””„ׄķ”¼„ÖĆę¤Ė„³„ó„Ō„唼„椬Ää»ß¤¹¤ė¤«¤āĆĪ¤ģ¤Ž¤»¤ó¤¬”¤\n"
"„Ž„·„󤬤³¤ļ¤ģ¤æ¤ź¤¹¤ė¤³¤Č¤Ļ¤¢¤ź¤Ž¤»¤ó”£"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "„Ŗ”¼„Ȅׄķ”¼„Ö"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "„Ŗ„ׄ·„ē„ó»ŲÄź"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -753,54 +798,54 @@ msgstr ""
"„ā„ø„唼„ė %s ¤Ī„ķ”¼„ɤ¬¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
"„Ń„é„į”¼„æ¤ņŹŃ¤Ø¤Ę¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤ß¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "X „ׄķ„°„é„ą¤Ų¤Ī„¢„Æ„»„¹"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "rpm „Ä”¼„ė¤Ų¤Ī„¢„Æ„»„¹"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "”Čsu”ɤņµö¤¹"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "“ÉĶż„Õ„”„¤„ė¤Ų¤Ī„¢„Æ„»„¹"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s ¤ĻÄɲĆŗѤß)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "„Ń„¹„ļ”¼„ɤ¬“ŹĆ±¤¹¤®¤Ž¤¹"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "„ę”¼„¶Ģ¾¤ņĶæ¤Ø¤Ę²¼¤µ¤¤"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "„ę”¼„¶Ģ¾¤Ė¤Ļ±Ń¾®Źø»ś”¤æō»ś”¢”Ö-”פä”Ö_”פ·¤«»Č¤Ø¤Ž¤»¤ó”£"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "¤³¤Ī„ę”¼„¶Ģ¾¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "¤³¤Ī„ę”¼„¶Ģ¾¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "„ę”¼„¶¤ņÄɲĆ"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -809,32 +854,32 @@ msgstr ""
"„ę”¼„¶Ģ¾¤ņĘžĪĻ¤·¤Ę²¼¤µ¤¤\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "¼õ¤±ÉÕ¤±¤ė„ę”¼„¶"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "¼ĀŗŻ¤Ī»įĢ¾"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "„ę”¼„¶Ģ¾"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "„·„§„ė"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "„¢„¤„³„ó"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "¼«Ę°„ķ„°„¤„ó"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -842,54 +887,54 @@ msgstr ""
"¼«Ę°ÅŖ¤ĖĘĆÄź„ę”¼„¶¤¬„ķ„°„Ŗ„󤹤ė¤č¤¦¤Ė„³„ó„Ō„唼„æ¤ņĄßÄź¤Ē¤­¤Ž¤¹”£\n"
"¤³¤Īµ”Ē½¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "„Ē„Õ„©„ė„Č„ę”¼„¶¤ĪĮŖĀņ:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "»Č¤¦„¦„£„ó„É„¦„Ž„Ķ”¼„ø„ć¤ņĮŖ¤ó¤Ē²¼¤µ¤¤”§"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "¤É¤ĪøĄøģ¤ņ»Č¤¦¤«ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤¤Ķ”£"
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "¤¼¤ó¤Ö"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "¤¹¤Ł¤Ę¤Ī„ę”¼„¶¤ņĒ§¤į¤ė"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "„Õ„”„¤„ė¶¦Ķ­¤·¤Ź¤¤"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "„Ń„Ć„±”¼„ø %s ¤¬É¬ĶפĒ¤¹”£„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "„Ø„Æ„¹„Ż”¼„ȤĖ¤Ļ NFS ¤« Samba ¤¬»Č¤Ø¤Ž¤¹”£¤É¤Į¤é¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ɬĶׄфƄ±”¼„ø %s ¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -898,11 +943,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "userdrake ¤ņµÆĘ°"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -910,31 +955,31 @@ msgstr ""
"„ę”¼„¶Ėč¤Ī¶¦Ķ­¤Ļ”¢”Čfileshare”É„°„ė”¼„פņ»Č¤¤¤Ž¤¹”£\n"
"¤³¤Ī„°„ė”¼„פĖ„ę”¼„¶¤ņÄÉ²Ć¤¹¤ė¤Ė¤Ļ”¢userdrake ¤¬»Č¤Ø¤Ž¤¹¤č”£"
-#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "°­¼Į¤Ź„Æ„é„Ć„«”¼ĶĶ¤āæÆĘž¤·¤Ū¤¦¤Ą¤¤"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "¤­¤ļ¤į¤ĘÄ椤"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Éø½ą"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "¹ā¤¤"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "¤ā¤Ć¤Č¹ā¤¤"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "æĄ·Š¼Į¤Ź¤Ū¤É¹āæå½ą"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -944,7 +989,7 @@ msgstr ""
"¤Ą¤ģ¤Ė¤Ē¤ā„¢„Æ„»„¹¤Ē¤­¤Ę¤·¤Ž¤¤¤Ž¤¹”£Ā¾¤Ī„Ž„·„ó¤ä„¤„ó„攼„Ķ„Ć„Č\n"
"¤Ė¤Ä¤Ź¤¬¤Ć¤æ„Ž„·„ó¤Ē¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”£„Ń„¹„ļ”¼„ÉĄ©øĀ¤ā¤¢¤ź¤Ž¤»¤ó”£"
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -952,7 +997,7 @@ msgstr ""
"„Ń„¹„ļ”¼„ɤ¬Ķ­øś¤Ė¤Ź¤ź¤Ž¤·¤æ¤¬”¢„Ķ„Ć„Č„ļ”¼„ƤĖ¤Ä¤Ź¤°¤Ī¤Ļ¤Ž¤Ą\n"
"¤Ŗ¾©¤į¤Ē¤­¤Ž¤»¤ó”£"
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -960,13 +1005,13 @@ msgstr ""
"¤³¤ģ¤ĻÉø½ą¤Ī„»„­„å„ź„Ę„£¤Ē”¢„Ƅ鄤„¢„ó„ȤȤ·¤Ę„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤¹¤ė„Ž„·„ó¤Ē"
"¤Īæ侩„ģ„Ł„ė¤Ē¤¹”£"
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "¤¹¤Ē¤ĖĄ©øĀ¤¬¤«¤«¤Ć¤Ę¤¤¤Ę”¢¤µ¤é¤ĖĖčČÕ¼«Ę°„Į„§„Ć„Æ¤¬¤ā¤Ć¤Č¤«¤«¤ź¤Ž¤¹”£"
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -980,7 +1025,7 @@ msgstr ""
"æå½ą¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£Ćš”§¤¢¤Ź¤æ¤Ī„Ž„·„󤬄¤„ó„攼„Ķ„Ć„Č¾å¤Ī„Ƅ鄤„¢„ó„ČĄģĶѤŹ"
"¤é”¢¤ā¤Ć¤ČÄ椤„ģ„Ł„ė¤ņĮŖ¤ó¤Ą¤Ū¤¦¤¬¤¤¤¤¤Ē¤¹¤č”£"
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -988,30 +1033,47 @@ msgstr ""
"Į°¤Ī„ģ„Ł„ė¤Ė“š¤Å¤¤¤Ę¤¤¤Ž¤¹¤¬”¢¤³¤ģ¤Ē„·„¹„Ę„ą¤Ļ“°Į“¤Ė¤Č¤ø¤æ¾õĀÖ\n"
"¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£„»„­„å„ź„Ę„£¤ĻŗĒĀē¤Ē¤¹”£"
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "„Ŗ„ׄ·„ē„ó"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "„»„­„å„ź„Ę„£¤Īæå½ą¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "„»„­„å„ź„Ę„£æå½ą"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "„µ”¼„Š¤Ėlibsafe¤ņ»Č¤¦"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"„Š„Ć„Õ„”„Ŗ”¼„Š”¼„Õ„ķ”¼¤ä„Õ„©”¼„Ž„Ć„Č„¹„Č„ź„ó„°¹¶·ā¤ņĖÉøę¤¹¤ė„鄤„Ö„é„ź”£"
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
# 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:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1035,109 +1097,205 @@ 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:912
+#: ../../bootloader.pm_.c:935
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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, 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:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "„Ē„¹„Æ„Č„Ć„×"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "„¹„攼„Č„į„Ė„唼"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ļ %s „Ń”¼„Ę„£„·„ē„ó¤Ė¤Ļ„¤„ó„¹„Č”¼„ė¤Ē¤­¤Ž¤»¤ó\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "„Ų„ė„פĻ¤Ž¤Ą¼ĀĮõ¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó”£\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "µÆĘ°Źż¼°¤ĪĄßÄź"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/„Õ„”„¤„ė(_F)"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/„Õ„”„¤„ė(F)/½ŖĪ»(_Q)"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "æ·„¹„愤„ė¤ĖŹ¬Īą¤µ¤ģ¤ė„ā„Ė„æ"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "æ·„¹„愤„ė„ā„Ė„æ"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "¤Õ¤Ä¤¦¤Ī„ā„Ė„æ"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "¤Õ¤Ä¤¦¤Ī Gtk+ „ā„Ė„æ"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "µÆĘ°»ž¤ĖAurora¤ņ¼Ā¹Ō"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "Lilo/grub „ā”¼„É"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot „ā”¼„É"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "„·„¹„Ę„ą¤ĪĘ³Ęž"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "„؄锼"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, fuzzy, c-format
+msgid "Copy %s to %s"
+msgstr "%s „³„Ō”¼Ćę"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "„Ó„Ē„Ŗ¤Ź¤·"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Ę³Ęž„Ƅ鄹¤ĪĮŖĀņ"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1146,42 +1304,69 @@ msgstr ""
"¤¤¤Ž”¢„Ö”¼„Č„Ž„Ķ”¼„ø„ć¤Ė¤Ļ %s ¤ņ¤Ŗ»Č¤¤¤Ē¤¹”£\n"
"ĄßÄź„¦„£„¶”¼„ɤņµÆĘ°¤¹¤ė¤Ė¤Ļ”ÖĄßÄź”פņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "ĄßÄź"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "„Ń„Ć„±”¼„øĮŖĀņ¤ĪŹŻĀø"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "„·„¹„Ę„ą„ā”¼„É"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "µÆĘ°»ž¤Ė X „¦„£„ó„É„¦¤ņ¼Ā¹Ō"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "¼«Ę°„ķ„°„¤„ó¤Ļ¤·¤Ź¤¤"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "¤³¤Ī („ę”¼„¶”¢„Ē„¹„Æ„Č„Ć„×”Ė¤Ē¼«Ę°„ķ„°„¤„󤹤ė"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab ¤¬ĘɤߤȤźĶѤĖ³«¤±¤Ž¤»¤ó: %s"
@@ -1225,61 +1410,112 @@ msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņÄÉ²Ć¤¹¤ė¤Ž¤Ē„¹„Æ„ź”¼„ó„·„ē„ƄȤĻ»£¤ģ¤Ž¤»¤ó"
msgid "Screenshots will be available after install in %s"
msgstr "%s ¤Ī„¤„ó„¹„Č”¼„ėøå¤Ė„¹„Æ„ź”¼„ó„·„ē„ƄȤ¬²ÄĒ½¤Ē¤¹"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "„Õ„é„ó„¹"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "„³„¹„æ„ź„«"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "„Ł„ė„®”¼"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "„Į„§„³¶¦ĻĀ¹ń"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "„É„¤„Ä"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "„®„ź„·„ć"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "„Ī„ė„¦„§”¼"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "„¹„¦„§”¼„Ē„ó"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "„Ŗ„é„ó„Ą"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "„¤„æ„ź„¢"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "„Ŗ”¼„¹„Č„ź„¢"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "„¢„į„ź„«¹ē½°¹ń"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+#, fuzzy
+msgid "Unknown Model"
+msgstr "Ģ¤ĆĪ¤Ī„ā„Ē„ė"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "æ·µ¬"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "„µ”¼„Š"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "CD„鄤„攼¤ĪĀ®ÅŁ¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "„µ”¼„Š"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "„Ŗ„ׄ·„ē„ó: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "„Ē”¼„æ¤Ī„Š„Ć„Æ„¢„Ƅפņ¼č¤Ć¤Ę²¼¤µ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "¤č¤ÆĘɤó¤Ē²¼¤µ¤¤”Ŗ"
@@ -1292,15 +1528,6 @@ msgstr ""
"¤ā¤· aboot ¤ņ»Č¤¦¤Ä¤ā¤ź¤Ź¤é”¢„Ē„£„¹„ƤĪĄčʬ¤Ė¶õ¤­ĪĪ°č (2048„»„Æ„æ¤Æ¤é¤¤)\n"
"¤ņ»Ä¤¹¤č¤¦µ¤¤ņÉÕ¤±¤Ę²¼¤µ¤¤”£"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "„؄锼"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "„¦„£„¶”¼„É"
@@ -1326,7 +1553,7 @@ msgid "Please click on a partition"
msgstr "ŹŃ¹¹¤¹¤ė„Ń”¼„Ę„£„·„ē„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "¾ÜŗŁ"
@@ -1354,13 +1581,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "„¹„ļ„Ć„×"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "¶õ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "¤½¤ĪĀ¾"
@@ -1368,12 +1595,12 @@ msgstr "¤½¤ĪĀ¾"
msgid "Filesystem types:"
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą „愤„×:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "ŗīĄ®"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "„愤„×"
@@ -1383,7 +1610,7 @@ msgstr "„愤„×"
msgid "Use ``%s'' instead"
msgstr "Āå¤ļ¤ź¤Ė”Č%s”ɤņ»Č¤Ć¤Ę²¼¤µ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "ŗļ½ü"
@@ -1391,7 +1618,7 @@ msgstr "ŗļ½ü"
msgid "Use ``Unmount'' first"
msgstr "ŗĒ½é¤Ė”Ö„¢„ó„Ž„¦„ó„Ȕפņ»Č¤Ć¤Ę²¼¤µ¤¤"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1399,72 +1626,72 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó¤Ī·æ¤ņ %s ¤ĖŹŃ¹¹¤·¤æø唢¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž"
"¤¹"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņĮŖĀņ"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "ŹĢ¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤Ö"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "½ŖĪ»"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "„Ø„­„¹„Ń”¼„Č„ā”¼„ɤĖ°Ü¤ė"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "„Ī”¼„Ž„ė„ā”¼„ɤĖ°Ü¤ė"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "¤ā¤Č¤ĖĢį¤¹"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "¤½¤ģ¤Ē¤āĀ³¤±¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "„»”¼„Ö¤»¤ŗ½ŖĪ»"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ¹¹æ·¤»¤ŗ¤Ė½ŖĪ»”©"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab ¤ĪŹŃ¹¹¤ņŹŻĀø¤·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "¼«Ę°³ä¤źÅö¤Ę"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Į“¤Ę¤ņ„Æ„ź„¢"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "¼”"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "„Ļ”¼„ɄɄ鄤„Ö¤Ī¾šŹó"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Į“¤Ę¤Ī„ׄ鄤„Ž„ź„Ń”¼„Ę„£„·„ē„󤬻Ȥļ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "¤³¤ģ°Ź¾å¤Ī„Ń”¼„Ę„£„·„ē„ó¤ĻÄÉ²Ć¤Ē¤­¤Ž¤»¤ó"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1472,31 +1699,31 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó¤ņĮż¤ä¤·¤æ¤¤¤Ź¤é”¤³ČÄ„„Ń”¼„Ę„£„·„ē„ó¤¬\n"
"ŗī¤ģ¤ė¤č¤¦¤Ė¤É¤³¤«¤Ī„Ń”¼„Ę„£„·„ē„ó¤ņ¾Ć¤·¤Ę²¼¤µ¤¤”£"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņŹŻĀø"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņŗĘĄø"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ»Ä¤¹"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņŗĘĘɹž"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "„ź„ą”¼„Š„Ö„ė„į„Ē„£„¢¼«Ę°ŗĘ„Ž„¦„ó„ČĆę"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1504,11 +1731,11 @@ msgstr ""
"„Š„Ć„Æ„¢„Ƅפ¹¤ė„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤Ī„µ„¤„ŗ¤¬°ć¤¤¤Ž¤¹\n"
"Ā³¤±¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "·Ł¹š"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1516,129 +1743,112 @@ msgstr ""
"„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö¤ĖĮŽĘž¤·¤Ę¤Æ¤Ą¤µ¤¤\n"
"„Õ„ķ„Ć„Ō”¼¾å¤ĪĮ“¤Ę¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņµß½Š¤·¤Ę¤ß¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "¾ÜŗŁ¤Ź¾šŹó"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "„Ŗ„ׄ·„ē„ó"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "„ź„µ„¤„ŗ"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "°ÜĘ°"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "„Õ„©”¼„Ž„Ć„Č"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "„Ž„¦„ó„Č"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "RAID ¤Ė²Ć¤Ø¤ė"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "LVM ¤Ė²Ć¤Ø¤ė"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "„¢„ó„Ž„¦„ó„Č"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "RAID ¤«¤é½ü¤Æ"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "LVM ¤«¤é½ü¤Æ"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAID¤ĪŹŃ¹¹"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "„ė”¼„ׄŠ„Ć„Æ¤Ī»ČĶŃ"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "æ·¤·¤¤„Ń”¼„Ę„£„·„ē„ó¤ņŗīĄ®"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "³«»Ļ„»„Æ„æ: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "MB ¤Ē¤Ī„µ„¤„ŗ: "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą„愤„×: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "„ׄź„Õ„”„ģ„ó„¹: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė¤ņŗļ½ü¤·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "„Ń”¼„Ę„£„·„ē„ó„愤„פĪŹŃ¹¹"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "¤É¤Ī„Õ„”„¤„ė„·„¹„Ę„ą¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "ext2 ¤«¤é ext3 ¤ĖŹŃ¹¹¤·¤Ę¤¤¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė %s ¤ņ¤É¤³¤Ė„Ž„¦„ó„Ȥ·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "„Ē„Š„¤„¹ %s ¤ņ¤É¤³¤Ė„Ž„¦„ó„Ȥ·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1647,130 +1857,135 @@ msgstr ""
"„Ž„¦„ó„Č„Ż„¤„ó„Ȥ«¤é¼č¤ź½¢¤Æ¤³¤Č¤¬½ŠĶ褎¤»¤ó”£\n"
"¤Ž¤ŗ„ė”¼„ׄŠ„Ć„Æ¤ņ²ņ½ü¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "„Ē„Š„¤„¹ %s ¤ņ¤É¤³¤Ė„Ž„¦„ó„Ȥ·¤Ž¤¹¤«”©"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "fat „Õ„”„¤„ė„·„¹„Ę„ą¤Ī¶­³¦¤ņ·×»»"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "„ź„µ„¤„ŗĆę"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ļ„ź„µ„¤„ŗ¤Ē¤­¤Ž¤»¤ó"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¾å¤Ī„Ē”¼„æ¤Ļ„Š„Ć„Æ„¢„Ƅפ¹¤ė¤Ł¤­¤Ē¤¹"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "„ź„µ„¤„ŗøå¤Ė¤Ļ”¢„Ń”¼„Ę„£„·„ē„ó %s ¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "æ·¤·¤¤„µ„¤„ŗ¤ņĮŖĀņ"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "MB ¤Ē¤Ī„µ„¤„ŗ: "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "¤É¤Ī„Ē„£„¹„ƤĖ°ÜĘ°¤·¤Ž¤¹¤«?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "„»„Æ„æ"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "¤É¤Ī„»„Æ„æ¤ņ°ÜĘ°¤·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "°ÜĘ°Ćę"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņ°ÜĘ°Ćę..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "ÄÉ²Ć¤¹¤ė“ūĀø¤Ī RAID ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "æ·µ¬"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "ÄÉ²Ć¤¹¤ė“ūĀø¤Ī LVM ¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM Ģ¾¤Ļ”©"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "¤³¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ļ„ė”¼„ׄŠ„Ć„Æ¤Ė¤Ļ»Č¤Ø¤Ž¤»¤ó"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "„ė”¼„ׄŠ„Ć„Æ"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ėĢ¾: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "„Õ„”„¤„ėĢ¾¤ņĘžĪĻ"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "„Õ„”„¤„ė¤Ļ¤¹¤Ē¤ĖŹĢ¤Ī„ė”¼„ׄŠ„Ć„Æ¤Ē»ČĶŃĆę”£Ā¾¤Ī¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "„Õ„”„¤„ė¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹”£¤¤¤Ž¤¢¤ė¤Ī¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "„Ž„¦„ó„Č„Ŗ„ׄ·„ē„ó"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "¤½¤ĪĀ¾"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "„Ē„Š„¤„¹"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "„ģ„Ł„ė"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "„Į„ć„ó„Æ„µ„¤„ŗ"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Ćķ°Õ: ¤³¤ĪĮąŗī¤Ļ“ķø±¤Ē¤¹”£"
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "¤É¤ó¤Ź„Ń”¼„Ę„£„·„ē„ó¤Ē¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "„Ń„Ć„±”¼„ø %s ¤¬É¬ĶפĒ¤¹”£„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1781,7 +1996,7 @@ msgstr ""
"¤½¤³¤Ė /boot ¤Ļŗī¤ģ¤Ž¤»¤ó”£/boot¤¬¤½¤³¤Ą¤Č”¢LILO ¤¬¤¦¤Ž¤ÆĘƤ«¤Ź¤¤¤·”¤\n"
"LILO ¤ņ»Č¤ļ¤Ź¤¤¤Ź¤é /boot ¤ĻĶפź¤Ž¤»¤ó¤«¤é"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1793,7 +2008,7 @@ msgstr ""
"»ż¤Ć¤Ę¤¤¤Ž¤»¤ó¤Ķ”£LILO ¤ņ„Ö”¼„Č„Ž„Ķ”¼„ø„ć¤Ė»Č¤¦¤Ź¤é”¤/boot „Ń”¼„Ę„£\n"
"„·„ē„ó¤ĪÄÉ²Ć¤ņ¤ŖĖŗ¤ģ¤Ź¤Æ”£"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1803,44 +2018,44 @@ msgstr ""
"/boot „Ń”¼„Ę„£„·„ē„óĢµ¤·¤Ē¤³¤ģ¤ņĮąŗī½ŠĶč¤ė„Ö”¼„Č„ķ”¼„Ą¤Ļ¤¢¤ź¤Ž¤»¤ó”£\n"
"¤Ē¤¹¤«¤é /boot „Ń”¼„Ę„£„·„ē„ó¤ĪÄÉ²Ć¤ņ¤ŖĖŗ¤ģ¤Ź¤Æ”£"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "„Ʉ鄤„Ö %s ¤Ī„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņ„Ē„£„¹„ƤĖ½ń¤­¹ž¤ß¤Ž¤¹”Ŗ"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "„ź„Ö”¼„Ȥ·¤Ę„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ĪŹŃ¹¹¤ņČæ±Ē¤µ¤»¤ėɬĶפ¬¤¢¤ź¤Ž¤¹"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "„Õ„©”¼„Ž„ƄȤ·¤æ¤é”¢„Ń”¼„Ę„£„·„ē„ó %s ¾å¤Ī„Ē”¼„æ¤Ļ¼ŗ¤ļ¤ģ¤Ž¤¹”£"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "„Õ„©”¼„Ž„Ć„ČĆę"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė %s ¤ņ„Õ„©”¼„Ž„Ć„ČĆę"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "„Ń”¼„Ę„£„·„ē„ó %s ¤ņ„Õ„©”¼„Ž„Ć„ČĆę"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "„Õ„”„¤„ė¤ņ±£¤¹"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "æ·¤·¤¤„Ń”¼„Ę„£„·„ē„ó¤Ė„Õ„”„¤„ė¤ņ°ÜĘ°"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1849,83 +2064,83 @@ msgstr ""
"„Ē„£„ģ„Æ„Č„ź %s ¤Ė¤Ļ¤¹¤Ē¤Ė„Ē”¼„椬¤¢¤ź¤Ž¤¹\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "æ·¤·¤¤„Ń”¼„Ę„£„·„ē„ó¤Ė„Õ„”„¤„ė¤ņ°ÜĘ°Ćę"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "%s „³„Ō”¼Ćę"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "%s ŗļ½üĆę"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr "„Ń”¼„Ę„£„·„ē„ó %s ¤Ļ¤³¤ģ¤Ē %s¤Ė¤Ź¤ź¤Ž¤·¤æ”£"
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "„Ē„Š„¤„¹: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS „Ē„Š„¤„¹„ģ„攼: %s (æäÄź)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "„愤„×: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Ģ¾Į°: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "³«»Ļ: „»„Æ„æ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "„µ„¤„ŗ: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s „»„Æ„æ"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "„·„ź„ó„Ą %d ¤«¤é„·„ź„ó„Ą %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "„Õ„©”¼„Ž„Ć„ČŗѤß\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ģ¤„Õ„©”¼„Ž„Ć„Č\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "„Ž„¦„ó„ČŗѤß\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1934,7 +2149,7 @@ msgstr ""
"„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ė:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1942,27 +2157,27 @@ msgstr ""
"„Ē„Õ„©„ė„ȤĒ„Ń”¼„Ę„£„·„ē„ó„Ö”¼„Č\n"
" (MS-DOS ¤Ī„Ö”¼„Č, lilo ¤Ē¤Ļ¤Ź¤¤)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "„ģ„Ł„ė %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "„Į„ć„ó„Æ„µ„¤„ŗ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID„Ē„£„¹„Æ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "„ė”¼„ׄŠ„Ć„Æ„Õ„”„¤„ėĢ¾: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1974,7 +2189,7 @@ msgstr ""
"„Ʉ鄤„Š”¦„Ń”¼„Ę„£„·„ē„ó¤é¤·¤¤¤Ē¤¹¤č”£\n"
"¤¤¤ø¤é¤Ź¤¤¤Ū¤¦¤¬¤¤¤¤¤Ē¤·¤ē¤¦”£\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1986,62 +2201,57 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó¤Ļ”¢\n"
"„Ē„å„¢„ė„Ö”¼„Č„·„¹„Ę„ąĶѤĒ¤¹”£\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "„µ„¤„ŗ: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "„ø„Ŗ„į„Č„ź: %s „·„ź„ó„Ą, %s „Ų„Ć„É, %s „»„Æ„æ\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "¾šŹó: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM„Ē„£„¹„Æ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė„愤„×: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "„Š„¹ %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "„Ŗ„ׄ·„ē„ó: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
msgid "Filesystem encryption key"
msgstr "„Õ„”„¤„ė°Å¹ę²½¤Īø°"
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr "„Õ„”„¤„ė„·„¹„Ę„ą°Å¹ę²½ĶѤĪø°¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "¤³¤Ī°Å¹ęø°¤Ļ“ŹĆ±¤¹¤®¤Ž¤¹”ŹŗĒÄć¤Ē¤ā %d Źø»ś»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤”Ė"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
msgid "The encryption keys do not match"
msgstr "°Å¹ęø°¤¬°ģĆפ·¤Ž¤»¤ó"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr "°Å¹ęø°"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr "°Å¹ęø°”Ź¤ā¤¦°ģÅŁĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤”Ė"
@@ -2092,23 +2302,23 @@ msgstr "NIS „É„į„¤„ó"
msgid "Search servers"
msgstr "„µ”¼„Š¤ņø”ŗ÷"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s „Õ„©”¼„Ž„Ć„Č, %s ¼ŗĒŌ"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s ¤ņ „愤„× %s ¤Ē„Õ„©”¼„Ž„ƄȤ¹¤ėŹżĖ”¤ņĆĪ¤ź¤Ž¤»¤ó"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "„Ń”¼„Ę„£„·„ē„ó %s ¤ņ„Ē„£„ģ„Æ„Č„ź %s ¤Ė„Ž„¦„ó„ȤĒ¤­¤Ž¤»¤ó¤Ē¤·¤æ"
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ¤ņ„¢„ó„Ž„¦„ó„ČĆę¤Ė„؄锼: %s"
@@ -2125,33 +2335,33 @@ msgstr "/usr ¤Ē"
msgid "server"
msgstr "„µ”¼„Š"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB°Ź²¼¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ė JFS ¤Ļ»Č¤Ø¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB°Ź²¼¤Ī„Ń”¼„Ę„£„·„ē„ó¤Ė ReiserFS ¤Ļ»Č¤Ø¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„ȤĻ / ¤Ē»Ļ¤Ž¤ėɬĶפ¬¤¢¤ź¤Ž¤¹"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "„Ń”¼„Ę„£„·„ē„ó¤Ļ„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤Ė„Ž„¦„ó„ČŗѤß\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "LVM ĻĄĶż„Ü„ź„唼„ą¤Ļ„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤Ė¤Ļ»Č¤Ø¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "¤³¤Ī„Ē„£„ģ„Æ„Č„ź¤Ļ root „Õ„”„¤„ė„·„¹„Ę„ąĘā¤Ė»Ä¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2160,25 +2370,25 @@ msgstr ""
"¤³¤Ī„Ž„¦„ó„Č„Ż„¤„ó„ȤĖ¤Ļ”¢¼Āŗߤ¹¤ė„Õ„”„¤„ė„·„¹„Ę„ą (ext2, reiserfs) \n"
"¤¬É¬ĶפĒ¤¹”£\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤Ė¤Ļ°Å¹ę²½„Õ„”„¤„ė„·„¹„Ę„ą¤Ļ»Č¤Ø¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
msgstr "¼«Ę°³ä¤źÅö¤Ę¤¬¤Ē¤­¤ė¤Ū¤É¶õ¤­ĶĘĪĢ¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "¤¹¤ė¤³¤Č¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "½ń¤­¹ž¤ß¤Ī¤æ¤į %s ¤ņ³«¤Æ¤Č¤­„؄锼¤¬ČÆĄø: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2186,258 +2396,262 @@ msgstr ""
"„؄锼ČÆĄø - æ·¤·¤¤„Õ„”„¤„ė„·„¹„Ę„ą¤ņ¹½ĆŪ¤Ē¤­¤ė¤č¤¦¤Ź„Ē„Š„¤„¹¤¬\n"
"ø«ÉÕ¤«¤ź¤Ž¤»¤ó”£¤Ź¤Ė¤¬ø¶°ų¤«”¢„Ļ”¼„É„¦„§„¢¤ņ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "„Ń”¼„Ę„£„·„ē„󤬤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "¼«Ę°ø”½Š¤ņ¤¹¤ė"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "ČĘĶŃ"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "„«”¼„É mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "ĄßÄź¤ĪĘɤ߹ž¤ßĆę"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "„愤„פĪŹŃ¹¹"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "½ŖĪ»"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/„Ų„ė„×(_H)"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/„Ų„ė„×(_H)"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/„Ų„ė„×(H)/¾šŹó(_A)..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "„ā„ø„唼„ė"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "„«”¼„É mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "„­„ć„ó„»„ė"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "„ā„ø„唼„ė"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "„ׄź„ó„æ¤ĪĄāĢĄ"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Ē§¾Ś"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "„²”¼„Č„¦„§„¤„Ē„Š„¤„¹"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2„Ü„æ„ó"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "½ŖĪ»"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/„Ų„ė„×(_H)"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/„Ų„ė„×(_H)"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/„Ų„ė„×(H)/¾šŹó(_A)..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "„Ŗ”¼„Ȅׄķ”¼„Ö"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "„Ē„£„¹„ƤĪø”½Š"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "„Ļ”¼„É„¦„§„¢¤Ī¾šŹó¤ņø«¤Ę²¼¤µ¤¤"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "„Ž„¦„¹¤ĪĄßÄź"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "¾šŹó¤ņɽ¼Ø"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "„Ž„¦„¹¤ĪĄßÄź"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "„Ż”¼„Č %s ¤Ēø”½Š¤·¤Ž¤·¤æ"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "¤ŖĀŌ¤Į²¼¤µ¤¤"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "¤¢¤Č %d ÉĆ"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "„ׄź„ó„æ \"%s\" ¤ņŗļ½üĆę..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "¼«Ę°ø”½Š¤ņ¤¹¤ė"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "ČĘĶŃ"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "„Ŗ”¼„Ȅׄķ”¼„Ö"
+msgid "Card model :"
+msgstr "„«”¼„É mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "„愤„פĪŹŃ¹¹"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "ĄßÄź¤ĪĘɤ߹ž¤ßĆę"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -4170,7 +4384,7 @@ msgstr ""
"¤³¤ĪĮąŗī¤ņ¼č¤ź¤ä¤į¤Ę”¢„Ļ”¼„É„Ē„£„¹„ƾå¤Ī„Ē”¼„æ¤ä„Ń”¼„Ę„£„·„ē„ó¤ņ\n"
"¤½¤Ī¤Ž¤Ž¤Ė¤·¤Ę¤Ŗ¤Æ¤Ė¤Ļ”Ö„­„ć„ó„»„ė”פņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£"
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4178,7 +4392,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "%s ¤ā„Õ„©”¼„Ž„ƄȤ·¤Ę¤Æ¤Ą¤µ¤¤"
@@ -4207,20 +4421,20 @@ msgstr ""
"\n"
"ĖÜÅö¤Ė¤³¤Ī„µ”¼„Š¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ę¤¤¤¤¤Ē¤¹¤Ķ”©\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS „É„į„¤„󤬤Ź¤¤¤Ī¤Ē„Ö„ķ”¼„É„­„ć„¹„Ȥ¬»Č¤Ø¤Ž¤»¤ó"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "FAT·Į¼°¤Ī„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "¤³¤Ī„Õ„ķ„Ć„Ō”¼¤Ļ FAT„Õ„©”¼„Ž„ƄȤø¤ć¤¢¤ź¤Ž¤»¤ó"
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4228,7 +4442,7 @@ msgstr ""
"¤³¤ĪŹŻĀø¤·¤æ„Ń„Ć„±”¼„øĮŖĀņ¤ņ»Č¤¦¤Ė¤Ļ”¢„¤„ó„¹„Č”¼„ė¤ĪµÆĘ°»ž¤Ė”Ölinux "
"defcfg=floppy”פȻŲÄź¤·¤Ž¤¹”£"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "„Õ„”„¤„ė %s ¤ĪĘɤߤȤź„؄锼¤Ē¤¹"
@@ -4266,7 +4480,7 @@ msgstr ""
"\n"
"¹½¤ļ¤ŗ¤ĖĀ³¤±¤Ž¤¹¤«”©"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "/boot/efi ¤Ė FAT „Ń”¼„Ę„£„·„ē„ó¤ņ„Ž„¦„ó„Ȥ·¤Ę¤Æ¤Ą¤µ¤¤"
@@ -4445,12 +4659,12 @@ msgstr ""
"„؄锼ČÆĄø”¤¤¦¤Ž¤Æ½čĶż¤¹¤ėŹżĖ”¤¬¤ļ¤«¤ź¤Ž¤»¤ó”£\n"
"¼«Ź¬¤ĪĄÕĒ¤¤ĒĀ³¤±¤Ę²¼¤µ¤¤”£"
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„Č %s ¤¬½Å¤Ź¤Ć¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4463,12 +4677,12 @@ msgstr ""
"¤·¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤”§\n"
"”Ö rpm -qpl Mandrake/RPMS/*.rpm ”×\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "%s ¤Ų¤č¤¦¤³¤½"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó"
@@ -4478,7 +4692,7 @@ msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó"
msgid "Entering step `%s'\n"
msgstr "„¹„Ę„Ć„× ”Ö%s”פņ»Ļ¤į¤Ž¤¹\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4491,77 +4705,77 @@ msgstr ""
"¤³¤ģ¤ņ¤¹¤ė¤Ė¤Ļ”¢CDROM ¤«¤é„Ö”¼„Ȥ·¤æ¤Č¤­”¢”ÖF1”פņ²”¤·”¢”Ötext”פČĘžĪĻ¤·¤Ę\n"
"¤Æ¤Ą¤µ¤¤”£"
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "„¤„ó„¹„Č”¼„ė„Ƅ鄹"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
msgstr "°Ź²¼¤Ī„¤„ó„¹„Č”¼„ė„Ƅ鄹¤ņ¤É¤ģ¤«ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "„Ń„Ć„±”¼„ø„°„ė”¼„פņĮŖĀņ"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "øÄŹĢ„Ń„Ć„±”¼„ø¤ĪĮŖĀņ"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "¹ē·×„µ„¤„ŗ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "„Ń„Ć„±”¼„ø¤¬²õ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Ģ¾Į°: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "„Š”¼„ø„ē„ó: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "„µ„¤„ŗ: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "½ÅĶ×: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻĮŖĀņ¤Ē¤­¤Ž¤»¤ó”£„Ē„£„¹„ƤĪ¶õ¤­ĶĘĪĢ¤¬ÉŌĀ­¤Ē¤¹”£"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "°Ź²¼¤Ī„Ń„Ć„±”¼„ø¤¬„¤„ó„¹„Č”¼„ė¤µ¤ģ¤Ž¤¹"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "°Ź²¼¤Ī„Ń„Ć„±”¼„ø¤¬¼č¤ź½ü¤«¤ģ¤Ž¤¹"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻĮŖĀņ”¦ČóĮŖĀņ¤Ē¤­¤Ž¤»¤ó"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "¤³¤ģ¤ĻÉŌ²Ä·ē¤Ź„Ń„Ć„±”¼„ø¤Ē¤¹”£ČóĮŖĀņ¤Ė¤Ļ¤Ē¤­¤Ž¤»¤ó"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻČóĮŖĀņ¤Ė¤Ē¤­¤Ž¤»¤ó”£¤¹¤Ē¤Ė„¤„ó„¹„Č”¼„ėŗѤߤĒ¤¹"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4569,74 +4783,74 @@ msgstr ""
"¤³¤Ī„Ń„Ć„±”¼„ø¤Ļ„¢„Ƅׄ°„ģ”¼„ɤ¬É¬ĶפĒ¤¹”£\n"
"ĖÜÅö¤ĖĮŖĀņ²ņ½ü¤·¤Ę¤¤¤¤¤ó¤Ē¤¹¤«”©"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻĮŖĀņ²ņ½ü¤Ē¤­¤Ž¤»¤ó”£„¢„Ƅׄ°„ģ”¼„ɤ¬É¬ĶפĒ¤¹"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "¼«Ę°ĮŖĀņ¤µ¤ģ¤æ„Ń„Ć„±”¼„ø¤ņɽ¼Ø"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "„¤„ó„¹„Č”¼„ė"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤Ė„»”¼„Ö/„ķ”¼„ɤ¹¤ė"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "„Ń„Ć„±”¼„øĮŖĀņ¤Ī¹¹æ·"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "ŗĒ¾®„¤„ó„¹„Č”¼„ė"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "„¤„ó„¹„Č”¼„ėĆę"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "»ī»»¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "»Ä¤ź»ž“Ö "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "„¤„ó„¹„Č”¼„ė¤Ī½ąČ÷Ćę”¢¾Æ”¹¤ŖĀŌ¤Į¤ņ"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d „Ń„Ć„±”¼„ø"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "„Ń„Ć„±”¼„ø %s ¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ē§¤į¤ė"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "µńČŻ"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4649,17 +4863,17 @@ msgstr ""
"”Ö %s ”פȤ¤¤¦ Cd-Rom ¤ņ„Ʉ鄤„Ö¤Ė¤¤¤ģ¤Ę”¢ Ok ¤ņ²”¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"CD¤¬¤Ź¤±¤ģ¤Š”¢Cancel ¤ņ²”¤·¤Ę¤³¤Ī Cd-Rom ¤«¤é¤Ī„¤„ó„¹„Č”¼„ė¤ņ²óČņ¤·¤Ę²¼¤µ¤¤”£"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "¤«¤Ž¤ļ¤ŗĄč¤ĖæŹ¤ß¤Ž¤¹¤«”©"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "„Ń„Ć„±”¼„ø¤ĪĄ°Īó¤Ē„؄锼¤¬ČÆĄø:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ė¤Ē„؄锼¤¬ČÆĄø:"
@@ -4970,104 +5184,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "„­”¼„Ü”¼„É"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„ȤĻ²æ¤Ē¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "»Č¤Ø¤ė„­”¼„Ü”¼„É„ģ„¤„¢„¦„ȤĪ°ģĶ÷¤ņɽ¼Ø¤·¤Ž¤¹”£"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "¤É¤Ī„¤„ó„¹„Č”¼„ė„Ƅ鄹¤ņĖ¾¤ß¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "„¤„ó„¹„Č”¼„ė/¹¹æ·"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "„¤„ó„¹„Č”¼„ė¤Ē¤¹¤«”¤¹¹æ·¤Ē¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "æ侩"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "„Ø„­„¹„Ń”¼„Č"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
msgstr "¹¹æ·"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
msgstr "„Ń„Ć„±”¼„ø¤Ą¤±¤ņ¹¹æ·"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
msgstr "„Ž„¦„¹¤Ī·æ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "„Ž„¦„¹„Ż”¼„Č"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "„Ž„¦„¹¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "„Ü„æ„ó„Ø„ß„å„ģ”¼„·„ē„ó"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "„Ü„æ„ó2¤Ī„Ø„ß„å„ģ”¼„·„ē„ó"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "„Ü„æ„ó3¤Ī„Ø„ß„å„ģ”¼„·„ē„ó"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA„«”¼„ɤĪĄßÄźĆę..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE ¤ĪĄßÄź"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "»Č¤Ø¤ė„Ń”¼„Ę„£„·„ē„󤬤¢¤ź¤Ž¤»¤ó"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņ„¹„­„ć„󤷤ʄŽ„¦„ó„Č„Ż„¤„ó„ȤņƵ¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "„Ž„¦„ó„Č„Ż„¤„ó„ȤĪĮŖĀņ"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -5085,7 +5299,7 @@ msgstr ""
"\n"
"Į“„Ń”¼„Ę„£„·„ē„ó¤ņ¾Ćµī¤·¤Ę¤č¤ķ¤·¤¤¤Ē¤¹¤Ķ”©\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5093,7 +5307,7 @@ msgstr ""
"DiskDrake ¤Ļ„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ņĄµ¤·¤ÆĘɤį¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
"¤³¤³¤«¤éĄč¤Ļ²æ¤¬µÆ¤­¤Ę¤ā¤·¤ź¤Ž¤»¤ó¤č”Ŗ"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5102,69 +5316,69 @@ msgstr ""
"¤¬”¢„·„¹„Ę„ą¤ĪµÆĘ°¤Ė¤Ļ DiskDrake ¤Ē„Ö”¼„Ä„¹„Č„é„Ƅׄє¼„Ę„£„·„ē„ó¤ņŗī¤Ć¤Ę¤Æ¤Ą"
"¤µ¤¤."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "¹¹æ·¤Ē¤­¤ė„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "„·„¹„Ę„ą¤Ī„ė”¼„Č„Ń”¼„Ę„£„·„ē„ó(/) ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤ĪŹŃ¹¹¤ņČæ±Ē¤¹¤ė¤Ė¤Ļ„ź„Ö”¼„Ȥ·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "„Õ„©”¼„Ž„ƄȤ¹¤ė„Ń”¼„Ę„£„·„ē„ó¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "ÉŌĪÉ„Ö„ķ„Ć„Æ¤ņø”ŗŗ¤·¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "„Ń”¼„Ę„£„·„ē„ó¤ņ„Õ„©”¼„Ž„Ć„Č"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "„Õ„”„¤„ė %s ¤ĪŗīĄ®¤Č„Õ„©”¼„Ž„Ć„Č"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "„¤„ó„¹„Č”¼„ė¤Ė½½Ź¬¤Ź„¹„ļ„Ƅפ¬¤¢¤ź¤Ž¤»¤ó”¤„¹„ļ„Ƅפņ²Ć¤Ø¤Ę²¼¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "¼ź»ż¤Į¤Ī„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "¼ź»ż¤Į¤Ī„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "„¢„Ƅׄ°„ģ”¼„ɤ¹¤ė„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "¤³¤Ī„Ń„Ć„±”¼„ø¤ĻČóĮŖĀņ¤Ė¤Ē¤­¤Ž¤»¤ó”£¤¹¤Ē¤Ė„¤„ó„¹„Č”¼„ėŗѤߤĒ¤¹"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "„¢„Ƅׄ°„ģ”¼„ɤ¹¤ė„Ń„Ć„±”¼„ø¤ņ¤µ¤¬¤·¤Ę¤¤¤Ž¤¹"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
@@ -5172,7 +5386,7 @@ msgid ""
msgstr ""
"„¤„ó„¹„Č”¼„ė¤ä„¢„Ƅׄ°„ģ”¼„ɤĖɬĶפŹ„Ē„£„¹„ƤĪ¶õ¤­ĶĘĪĢ¤¬ÉŌĀ­¤Ē¤¹”£ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5180,35 +5394,35 @@ msgstr ""
"„Õ„ķ„Ć„Ō”¼¤Ų¤Ī„Ń„Ć„±”¼„øĮŖĀņ¤ĪŹŻĀø¤«Ęɤ߹ž¤ß¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£\n"
"·Į¼°¤Ļ auto_install ¤ĒĄøĄ®¤·¤æ„Õ„ķ„Ć„Ō”¼¤Čʱ¤ø¤Ē¤¹”£"
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤«¤éĘɤ߹ž¤ą"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤«¤éĘɤ߹ž¤ßĆę"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "„Ń„Ć„±”¼„ø¤ņĮŖĀņ"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "„Ń„Ć„±”¼„øĮŖĀņ¤ĪĘž¤Ć¤æ„Õ„ķ„Ć„Ō”¼¤ņĮŽĘž"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "„Õ„ķ„Ć„Ō”¼¤Ė„»”¼„Ö¤¹¤ė"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "ĮŖ¤ó¤Ą¤ā¤Ī¤Ī„µ„¤„ŗ¤Ļ¶õ¤­„¹„Ś”¼„¹¤ņ±Ū¤Ø¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr "„¤„ó„¹„Č”¼„ė¤Ī¼ļĪą"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5217,15 +5431,15 @@ msgstr ""
"„Ń„Ć„±”¼„ø„°„ė”¼„פ¬ĮŖ¤Š¤ģ¤Ę¤¤¤Ž¤»¤ó”£\n"
"ŗĒÄćøĀĶߤ·¤¤„¤„ó„¹„Č”¼„ė¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr "X ¤ņ»Č¤¦"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr "“šĖÜÅŖ¤Ź„É„­„å„į„ó„Ę”¼„·„ē„ó¤ņĘž¤ģ¤ė”Źæ侩”Ŗ”Ė"
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr "ĖÜÅö¤ĖŗĒÄćøĀ¤Ī„¤„ó„¹„Č”¼„ė”Źurpmi ¤ā¤Ź¤·”Ė"
@@ -5244,11 +5458,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "”Ö %s ”פȤ¤¤¦Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "„¤„ó„¹„Č”¼„ė¤Ī½ąČ÷"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -5257,21 +5471,21 @@ msgstr ""
"„Ń„Ć„±”¼„ø %s ¤ņ„¤„ó„¹„Č”¼„ė\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "„¤„ó„¹„Č”¼„ėĄßÄź¤ņ³ĪÄź"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "»Č¤Ć¤æµÆĘ°„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "¹¹æ·„ā„ø„唼„ė„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž¤·¤Ę²¼¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5335,7 +5549,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5355,179 +5569,188 @@ msgstr ""
"\n"
"¹¹æ·„Ń„Ć„±”¼„ø¤ņ„¤„ó„¹„Č”¼„ė¤·¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux „µ„¤„ȤĖĄÜĀ³¤·¤Ę„߄锼°ģĶ÷¤ņ¼čĘĄ¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "¤É¤Ī„µ„¤„Ȥ«¤é„Ń„Ć„±”¼„ø¤ņ»ż¤Ć¤Ę¤Æ¤ė¤«¤ņĮŖĀņ"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "„µ„¤„ȤĖĄÜĀ³¤·¤Ę„Ń„Ć„±”¼„ø°ģĶ÷¤ņ¼čĘĄ¤·¤Ę¤¤¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "¤¢¤Ź¤æ¤Ī»ž“ÖĀÓ¤Ļ¤É¤ģ¤Ē¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "„Ļ”¼„É„¦„§„¢„Æ„ķ„Ć„Æ¤Ļ GMT ¤Ė„»„ƄȤ·¤Ę¤¢¤ź¤Ž¤¹"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "¼«Ę°»ž“Ö¤¢¤ļ¤»”ŹNTP¤ņ»Č¤¦”Ė"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP „µ”¼„Š"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "„ź„ā”¼„ČCUPS „µ”¼„Š"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "„ׄź„ó„æ¤Ź¤·"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
msgstr "ISA „µ„¦„ó„É„«”¼„ɤĻ¤¢¤ź¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"„¤„ó„¹„Č”¼„ėøå¤Ė”Ösndconfig”פņ¼Ā¹Ō¤·¤Ę„µ„¦„ó„É„«”¼„ɤņĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"„µ„¦„ó„É„«”¼„ɤ¬ø”½Š¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
"„¤„ó„¹„Č”¼„ėøå¤Ė”Öharddrake”פņ»ī¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "¤Ž¤Č¤į"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "„Ž„¦„¹"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "»ž“ÖĀÓ"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "„ׄź„ó„æ"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN„«”¼„É"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "„µ„¦„ó„É„«”¼„É"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "„Ę„ģ„Ó„«”¼„É"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Windows (FAT32)"
+msgid "Windows Domain"
+msgstr "„¦„£„ó„É„¦„ŗ¤Ī„Õ„©„ó„Ȥņ¼č¤Ć¤Ę¤Æ¤ė"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "„ķ”¼„«„ė„Õ„”„¤„ė"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "„ė”¼„Č„Ń„¹„ļ”¼„É"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "„Ń„¹„ļ”¼„ɤŹ¤·"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "¤³¤Ī„Ń„¹„ļ”¼„ɤĻ“ŹĆ±¤¹¤®¤Ž¤¹”ŹŗĒÄć¤Ē¤ā %d Źø»ś»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤”Ė"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ē§¾Ś"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "Ē§¾ŚLDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP„Ł”¼„¹dn"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP„µ”¼„Š"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "Ē§¾ŚNIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS „É„į„¤„ó"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS „µ”¼„Š"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Ē§¾ŚLDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "„¦„£„ó„É„¦„ŗ¤Ī„Õ„©„ó„Ȥņ¼č¤Ć¤Ę¤Æ¤ė"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP „µ”¼„Š"
+msgid "Authentication Windows Domain"
+msgstr "Ē§¾ŚLDAP"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "„É„į„¤„óĢ¾"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5554,19 +5777,19 @@ msgstr ""
"„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ė¤Ź¤é¤Š”¢„Õ„ķ„Ć„Ō„£„Ē„£„¹„Ƥņ„Ʉ鄤„Ö¤ĖĮŽĘž¤·”¢\n"
"”ÖOK”פņ²”¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "ŗĒ½é¤Ī„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "ĘóČÖĢܤĪ„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "„¹„­„Ć„×"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5590,7 +5813,7 @@ msgstr ""
"Éüµģ¤¹¤ė¤Ī¤¬³Ś¤Ė¤Ź¤ź¤Ž¤¹”£„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ź¤Ž¤¹¤«”©\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5604,28 +5827,28 @@ msgstr ""
"1.44 Mb „Õ„ķ„Ć„Ō”¼¤ĒµÆĘ°„Ē„£„¹„Ƥņŗī¤ė¤Ī¤Ļ¤æ¤Ö¤óĢµĶż¤Ē¤¹”£\n"
"XFS ¤Ļ¤Č¤Ę¤āĀē¤­¤Ź„Ʉ鄤„Š¤¬É¬ĶפĄ¤«¤é¤Ē¤¹)."
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó”¤¤“¤į¤ó¤Ź¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "„Ö”¼„Č„Ē„£„¹„Ƥņŗī¤ź¤æ¤¤„Õ„ķ„Ć„Ō„£„Ʉ鄤„Ö¤ņĮŖĀņ"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, c-format
msgid "Insert a floppy in %s"
msgstr "„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "„Ö”¼„Č„Ē„£„¹„ƤĪŗīĄ®"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī½ąČ÷"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5637,11 +5860,11 @@ msgstr ""
"„¤„ó„¹„Č”¼„ė¤ĻĀ³¤±¤Ž¤¹¤¬”¢„Ž„·„ó¤ĪµÆĘ°¤Ė¤Ļ\n"
"BootX ¤ņ»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "aboot ¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5649,15 +5872,15 @@ msgstr ""
"aboot „¤„ó„¹„Č”¼„ė»ž¤Ė„؄锼ČÆĄø”£\n"
"ĢµĶż¤Ė„¤„ó„¹„Č”¼„ė¤·¤Ę¤ß¤Ž¤¹¤«”©””¤æ¤Ą¤·ŗĒ½é¤Ī„Ń”¼„Ę„£„·„ē„ó¤¬ĒĖ²õ¤µ¤ģ¤Ž¤¹”£"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "„Ö”¼„Č„ķ”¼„Ą„¤„ó„¹„Č”¼„ėĆę"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "„Ö”¼„Č„ķ”¼„Ą¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ”£°Ź²¼¤Ī„؄锼¤¬ČÆĄø:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5674,17 +5897,17 @@ msgstr ""
" ¤½¤ģ¤«¤é¤³¤¦„愤„פ·¤Ž¤¹: shut-down\n"
"¼”¤ĪµÆĘ°»ž¤Ė¤Ļ„Ö”¼„Č„ķ”¼„Ą¤Ī„ׄķ„ó„ׄȤ¬½Š¤ė¤Ļ¤ŗ¤Ē¤¹”£"
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "¶õ¤Ī„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž¤·¤Ę²¼¤µ¤¤"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "„¤„ó„¹„Č”¼„ė„Õ„ķ„Ć„Ō”¼¤Ī¼«Ę°ŗīĄ®"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5694,7 +5917,7 @@ msgstr ""
"\n"
"ĖÜÅö¤Ė½ŖĪ»¤·¤Ž¤¹¤«”©"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5725,16 +5948,16 @@ msgstr ""
"„¤„ó„¹„Č”¼„ėøå¤ĪĄßÄź¤Ė¤Ä¤¤¤Ę¤Ļ„ę”¼„¶„¬„¤„ɤĪ”Ö„¤„ó„¹„Č”¼„ė¤·¤æøå”פĪ\n"
"¾Ļ¤ņ»²¾Č¤·¤Ę²¼¤µ¤¤”£"
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "„¤„ó„¹„Č”¼„ė„Õ„ķ„Ć„Ō”¼¤Ī¼«Ę°ŗīĄ®"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5747,15 +5970,15 @@ msgstr ""
"(¤³¤ģ¤ĻŹĢ¤Ī„Ž„·„ó¤Ų¤Ī„¤„ó„¹„Č”¼„ėĶѤĪ¤ā¤Ī¤Ē¤¹).\n"
"\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Į“¼«Ę°"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "ŗĘĄø"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "„Ń„Ć„±”¼„øĮŖĀņ¤ĪŹŻĀø"
@@ -5781,24 +6004,35 @@ msgstr "consolehelper ¤¬¤¢¤ź¤Ž¤»¤ó"
msgid "Choose a file"
msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "¹āÅŁ¤ŹĮŖĀņ"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr "“šĖÜ"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- ¤ā¤É¤ė"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "¼”"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "ÉŌĄµ¤ŹĮŖĀņ”¤¤ā¤¦°ģÅŁ»ī¤·¤Ę²¼¤µ¤¤\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©”Ź„Ē„Õ„©„ė„ȤĻ %s”Ė"
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5807,35 +6041,35 @@ msgstr ""
"°Ź²¼¤Ī„Ø„ó„Č„ź¤āĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©”Ź0/1, „Ē„Õ„©„ė„ȤĻ %s”Ė"
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "„Ü„æ„ó”Ö%s”×: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
msgstr "¤³¤Ī„Ü„æ„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤¹¤«”©"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©”Ź„Ē„Õ„©„ė„ȤĻ `%s'%s”Ė"
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> ĮŖĀņ»č¤Ļ¤¤¤ķ¤¤¤ķ¤¢¤ź¤Ž¤¹ (%s).\n"
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5845,7 +6079,7 @@ msgstr ""
"¤¢¤ė¤¤¤ĻƱ¤Ė Enter ¤ņ²”¤»¤ŠĄč¤ĖæŹ¤ß¤Ž¤¹”£\n"
"¤É¤ģ¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5854,327 +6088,379 @@ msgstr ""
"=> Ćķ°Õ”¢„é„Ł„ė¤¬ŹŃ¤ļ¤ź¤Ž¤·¤æ:\n"
"%s"
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "ÅŠĻ椷¤Ź¤Ŗ¤·"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "„Į„§„³ (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "„É„¤„Ä"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "„¹„Ś„¤„ó"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "„Õ„£„ó„é„ó„É"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "„Õ„é„ó„¹"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "„Ī„ė„¦„§”¼"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "„Ż”¼„é„ó„É"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "„ķ„·„¢"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "„¹„¦„§”¼„Ē„ó"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "„¤„®„ź„¹¼°„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "„¢„į„ź„«¼°„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "„¢„ė„Š„Ė„¢"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "„¢„ė„į„Ė„¢”ŹøŤ¤”Ė"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "„¢„ė„į„Ė„¢”Ź„愤„ׄ鄤„攼”Ė"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "„¢„ė„į„Ė„¢”ŹČƲ»µ­¹ę”Ė"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "„¢„¼„ė„Š„¤„ø„ć„ó(„é„Ę„ó)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "„Ł„ė„®”¼"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Ķ­øś¤Ė"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "„¢„ė„į„Ė„¢”ŹČƲ»µ­¹ę”Ė"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "„Ö„ė„¬„ź„¢ (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "„Ö„é„ø„ė"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "„Ø„¹„Č„Ė„¢"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "„Ł„é„ė”¼„·"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "„¹„¤„¹”Ź„É„¤„ļ°ĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "„¹„¤„¹”Ź„Õ„é„ó„¹¼°ĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "„Į„§„³ (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "„É„¤„Ä”Ź„Ē„Ć„É„­”¼¤Ź¤·”Ė"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "„Ē„ó„Ž”¼„Æ"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorak („Ī„ė„¦„§”¼)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "Dvorak („¹„¦„§”¼„Ē„ó)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "„Ø„¹„Č„Ė„¢"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "„°„ė„ø„¢”Ź”Ö„ķ„·„¢¼°”×ĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "„°„ė„ø„¢”Ź”Ö„é„Ę„ó”×ĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "„®„ź„·„ć"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "„Ļ„󄬄ź”¼"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "„Æ„ķ„¢„Į„¢"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "„¤„¹„é„Ø„ė"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "„¤„¹„é„Ø„ė”ŹČƲ»µ­¹ę”Ė"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "„¤„é„ó"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "„¢„¤„¹„é„ó„É"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "„¤„æ„ź„¢"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "ĘüĖÜøģ106„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "Ä«ĮƼ°„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "„é„Ę„ó„¢„į„ź„«"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "„é„Č„ō„£„¢"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "„ź„Č„¢„Ė„¢ AZERTY (µģ)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "„ź„Č„¢„Ė„¢ AZERTY (æ·)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "„ź„Č„¢„Ė„¢ ”Öæō»śĪó”× QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "„ź„Č„¢„Ė„¢ ”ÖČƲ»”× QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "„é„Č„ō„£„¢"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "„Ž„±„É„Ė„¢"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "„»„ė„Ó„¢(cyrillic)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "„Ŗ„é„ó„Ą"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "„Ż”¼„é„ó„É”Źqwerty ĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "„Ż”¼„é„ó„É”ŹqwertzĒŪĪó”Ė"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "„Ż„ė„Č„¬„ė"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "„«„Ź„Ą”Ź„±„Ł„Ć„Æ”Ė"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "„ė”¼„Ž„Ė„¢”Źqwertz”Ė"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "„ė”¼„Ž„Ė„¢”Źqwerty”Ė"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "„ķ„·„¢”ŹYawerty”Ė"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "„¹„ķ„Ł„Ė„¢"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "„¹„ķ„Š„­„¢ (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "„¹„ķ„Š„­„¢ (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "„»„ė„Ó„¢(cyrillic)"
-#: ../../keyboard.pm_.c:249
-msgid "Tamil"
-msgstr "„æ„ß„ė"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr "„æ„ß„ė (Unicode)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr "„æ„ß„ė (TSCII)"
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "„愤””„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "„æ„ø„Æ””„­”¼„Ü”¼„É"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "„Č„ė„³”ŹÅĮÅżÅŖ”Ö£Ę”×„ā„Ē„ė”Ė"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "„Č„ė„³”Źø½Āå”Ö£Ń”×„ā„Ē„ė”Ė"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "„¦„Ƅ鄤„Ź"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "„¢„į„ź„«¼°„­”¼„Ü”¼„É”Ź¹ńŗŻ¼°”Ė"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "„Ł„Č„Ź„ą ”Öæō»śĪó”× QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "„ę”¼„“„¹„é„Ó„¢”Ź„é„Ę„ó”Ė"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr "±¦ Alt „­”¼"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr "ŗø±¦¤Ī„·„Õ„Č„­”¼¤ņʱ»ž¤Ė"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr "Control ¤Č„·„Õ„Č¤ņʱ»ž¤Ė"
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr "CapsLock „­”¼"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl ¤Č Alt „­”¼¤ņʱ»ž¤Ė"
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr "Alt ¤Č„·„Õ„Č„­”¼¤ņʱ»ž¤Ė"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr "”Ö„į„Ė„唼”ׄ­”¼"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr "ŗø”Ö„¦„£„ó„É„¦„ŗ”ׄ­”¼"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr "±¦”Ö„¦„£„ó„É„¦„ŗ”ׄ­”¼"
@@ -6183,37 +6469,37 @@ msgstr "±¦”Ö„¦„£„ó„É„¦„ŗ”ׄ­”¼"
msgid "Circular mounts %s\n"
msgstr "½ä²ó„Ž„¦„ó„Č %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "¤Ž¤ŗĻĄĶż„Ü„ź„唼„ą¤ņŗļ½ü¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "ÅÅĻĆČÖ¹ę"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "„Õ„©”¼„Ž„Ć„Č"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"2.2„«”¼„Ķ„ėĶѤĪ PCMCIA „µ„Ż”¼„ȤĻ¤ā¤¦“Ž¤Ž¤ģ¤Ę¤¤¤Ž¤»¤ó”£\n"
"2.4””„«”¼„Ķ„ė¤ņ»Č¤Ć¤Ę¤Æ¤Ą¤µ¤¤”£"
@@ -6318,53 +6604,43 @@ msgstr "¤Ź¤·"
msgid "No mouse"
msgstr "„Ž„¦„¹¤Ź¤·"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "„Ž„¦„¹¤ņ„Ę„¹„Ȥ·¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "„Ž„¦„¹¤ņĶ­øś¤Ė¤¹¤ė¤Ė¤Ļ”¢"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "„Ū„¤”¼„ė¤ņĘ°¤«¤·¤Ę¤Æ¤Ą¤µ¤¤”Ŗ"
-#: ../../my_gtk.pm_.c:688
-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-"
-"normal--24-*-100-100-c-*-jisx0208.1983-0,*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "“°Ī»"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "¼” ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- ¤ā¤É¤ė"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ąµ¤·¤Æɽ¼Ø½ŠĶ褎¤·¤æ¤«”©"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "¾šŹó"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "„Ä„ź”¼¤ņ¤Ī¤Š¤¹"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "„Ä„ź”¼¤ņ½Ģ¤į¤ė"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "¤½¤Ī¤Ž¤Ž¤Č„°„ė”¼„׏Ģ¤ņĄŚ¤źĀŲ¤Ø"
@@ -6387,6 +6663,10 @@ msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "dhcp¤ņ»Č¤¦"
@@ -6414,7 +6694,7 @@ msgstr ""
"„·„¹„Ę„ą¾å¤Ė„¤”¼„µ„Ķ„Ć„Č„¢„Ą„ׄ椬ø«¤Ä¤«¤ź¤Ž¤»¤ó”£¤³¤Ī¼ļĪą¤Ī\n"
"ĄÜĀ³¤ĻĄßÄź¤Ē¤­¤Ž¤»¤ó”£"
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„¤„ó„攼„Õ„§„¤„¹¤ĪĮŖĀņ"
@@ -6427,7 +6707,7 @@ msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤Ė»Č¤¦„Ķ„Ć„Č„ļ”¼„Æ„¢„Ą„ׄæ¤ņĮŖ¤Ó¤Ž¤·¤ē¤¦"
msgid "no network card found"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„«”¼„ɤ¬ø«ÉÕ¤«¤ź¤Ž¤»¤ó"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤĪĄßÄź"
@@ -6442,7 +6722,7 @@ msgstr ""
"¤¤¤Æ¤Ä¤«¤ĪDHCP„µ”¼„Š¤ĻĘ°ŗī¤¹¤ė¤Ī¤Ė„Ū„¹„ČĢ¾¤ņɬĶפȤ·¤Ž¤¹”£\n"
"„Ū„¹„ČĢ¾¤Ļ”Čmybox.mylab.myco.com”ɤĪ¤č¤¦¤ĖĄ©øĀ¤·¤Ę²¼¤µ¤¤”£"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "„Ū„¹„ČĢ¾:"
@@ -6470,7 +6750,7 @@ msgstr "¤É¤Ī¼ļĪą¤ĪISDNĄÜĀ³¤Ē¤¹¤«”©"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6595,43 +6875,43 @@ msgstr "„ā„Ē„ą¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
msgid "Dialup options"
msgstr "„Ą„¤„¢„ė„¢„ƄׄŖ„ׄ·„ē„ó"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "ĄÜĀ³Ģ¾"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "ÅÅĻĆČÖ¹ę"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "„ķ„°„¤„ó ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "„¹„Æ„ź„ׄȤņ»Č¤¦Ē§¾Ś"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "„攼„ß„Ź„ė¤«¤é¤ĪĒ§¾Ś"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "„É„į„¤„óĢ¾"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "DNS „µ”¼„Š”Ź„Ŗ„ׄ·„ē„ó”Ė"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "„»„«„ó„É DNS „µ”¼„Š”Ź„Ŗ„ׄ·„ē„ó”Ė"
@@ -6743,13 +7023,13 @@ msgstr "ĄßÄź¤¹¤ė„ׄķ„Õ„£”¼„ė¤ĪĮŖĀņ"
msgid "Use auto detection"
msgstr "¼«Ę°ø”½Š¤ņ»Č¤¦"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "„Ø„­„¹„Ń”¼„Č„ā”¼„É"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "„Ē„Š„¤„¹¤Īø”½ŠĆę¤Ē¤¹”Ä”Ä"
@@ -6865,7 +7145,7 @@ msgstr ""
"net_monitor ¤« mcc¤ĒĄÜĀ³¤ņ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£ĄÜĀ³¤¬¤Ē¤­¤Ę¤¤¤Ź¤±¤ģ¤ŠĄßÄź¤ņ"
"ŗʵÆĘ°¤·¤æ¤Ū¤¦¤¬¤¤¤¤¤«¤ā¤·¤ģ¤Ž¤»¤ó"
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6876,7 +7156,7 @@ msgstr ""
"¤ā¤Č¤ĪĄßÄź¤ņ»Ä¤·¤æ¤±¤ģ¤Š”¢¤³¤Ī¤Ž¤Ž OK ¤ņ²”¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"°Ź²¼¤Ī„Õ„£”¼„ė„ɤņŹŃ¹¹¤¹¤ė¤Č”¢ĄßÄź¤¬ŹŃ¤ļ¤Ć¤Ę¤·¤Ž¤¤¤Ž¤¹”£"
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6886,43 +7166,43 @@ msgstr ""
"³Ę”¹¤Ī¹ąĢܤĖ¤Ļ„ɄƄȤĒ¶čĄŚ¤é¤ģ¤æ½½æŹæō(Ī攤1.2.3.4)¤¬IP „¢„É„ģ„¹¤Č¤·¤ĘĘžĪĻ¤µ"
"¤ģ¤Ž¤¹”£"
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„Ē„Š„¤„¹ %s ¤ĪĄßÄź"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " („Ʉ鄤„Š %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP „¢„É„ģ„¹:"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "„Ķ„Ć„Č„Ž„¹„Æ:"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP ¤Ī¼«Ę°ĄßÄź"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "µÆĘ°»ž¤Ė³«»Ļ"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP „¢„É„ģ„¹¤Ļ 1.2.3.4 ¤Ī¤č¤¦¤ĖĘžĪĻ¤·¤Ę²¼¤µ¤¤"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6933,40 +7213,40 @@ msgstr ""
"„Ū„¹„ČĢ¾¤Ļ”Čmybox.mylab.myco.com”ɤĪ¤č¤¦¤Ė¤·¤Ę²¼¤µ¤¤”£\n"
"¤ā¤·„²”¼„Č„¦„§„¤¤¬¤¢¤ģ¤Š”¤¤½¤Ī IP „¢„É„ģ„¹¤āĘžĪĻ¤·¤Ę²¼¤µ¤¤”£"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS „µ”¼„Š"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "„²”¼„Č„¦„§„¤ (Īć %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "„²”¼„Č„¦„§„¤„Ē„Š„¤„¹"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "„ׄķ„­„·¤ĪĄßÄź"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„«”¼„ɤĪid¤ņÄɥהŹ„é„ƄׄȄƄפĒŹŲĶų”Ė"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy ¤Ļ http://... ¤Ē¤¹"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy ¤Ļ ftp://... ¤Ē¤¹"
@@ -6978,7 +7258,7 @@ msgstr "„¤„ó„攼„Ķ„ƄȤĪĄßÄź"
msgid "Do you want to try to connect to the Internet now?"
msgstr "ŗ£„¤„ó„攼„Ķ„ƄȤĖĄÜĀ³¤·¤Ž¤¹¤«”©"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "ĄÜĀ³¤ņ„Ę„¹„Ȥ·¤Ę¤¤¤Ž¤¹..."
@@ -7006,43 +7286,43 @@ msgstr "ĄÜĀ³¤ĪĄßÄź"
msgid "Please fill or check the field below"
msgstr "²¼¤Ī„Õ„£”¼„ė„ɤņĖä¤į¤ė¤«„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "„«”¼„É IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "„«”¼„É mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "„«”¼„É IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "„«”¼„É IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "„«”¼„É IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "¤¢¤Ź¤æ¤ĪÅÅĻĆČÖ¹ę"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "„ׄķ„Š„¤„Ą¤ĪĢ¾Į° (Īć provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "„ׄķ„Š„¤„Ą¤ĪÅÅĻĆČÖ¹ę"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "„ׄķ„Š„¤„Ą¤Ī dns 1 („Ŗ„ׄ·„ē„ó)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "„ׄķ„Š„¤„Ą¤Ī dns 2 („Ŗ„ׄ·„ē„ó)"
@@ -7050,28 +7330,28 @@ msgstr "„ׄķ„Š„¤„Ą¤Ī dns 2 („Ŗ„ׄ·„ē„ó)"
msgid "Choose your country"
msgstr "¹ń¤ĪĮŖĀņ"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "„Ą„¤„¢„ė„ā”¼„É"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "ĄÜĀ³¤ĪĀ®ÅŁ: "
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "ĄÜĀ³¤Ī„愤„ą„¢„¦„Č”ŹÉĆ”Ė"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "„¢„«„¦„ó„Č„ķ„°„¤„ó”Ź„ę”¼„¶Ģ¾”Ė"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "„¢„«„¦„ó„Č„Ń„¹„ļ”¼„É"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -7107,7 +7387,7 @@ msgstr "„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė¤¬²õ¤ģ¤Ę¤¤¤Ž¤¹"
msgid "Error writing to file %s"
msgstr "„Õ„”„¤„ė %s ¤Ų¤Ī½ń¤­¹ž¤ß„؄锼"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7153,7 +7433,7 @@ msgstr "LPD - „鄤„ó„ׄź„ó„æ„Ē”¼„ā„ó"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue”Ź„­„唼¤Ź¤·¤Ē°õŗž”Ė"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -7181,7 +7461,7 @@ msgstr "„ź„ā”¼„Ȅׄź„ó„æ"
msgid "Printer on remote CUPS server"
msgstr "„ź„ā”¼„ČCUPS „µ”¼„Š¾å¤Ī„ׄź„ó„æ"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "„ź„ā”¼„Č lpd„µ”¼„Š¾å¤Ī„ׄź„ó„æ"
@@ -7197,7 +7477,7 @@ msgstr "SMB/„¦„£„ó„É„¦„ŗ 95/98/NT„µ”¼„Š¾å¤Ī„ׄź„ó„æ"
msgid "Printer on NetWare server"
msgstr "NetWare „µ”¼„Š¾å¤Ī„ׄź„ó„æ"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "„ׄź„ó„æ„Ē„Š„¤„¹¤ĪURI¤ņĘžĪĻ"
@@ -7205,110 +7485,110 @@ msgstr "„ׄź„ó„æ„Ē„Š„¤„¹¤ĪURI¤ņĘžĪĻ"
msgid "Pipe job into a command"
msgstr "„ø„ē„Ö¤ņ„³„Ž„ó„ɤŲ„Ń„¤„×"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "Ģ¤ĆĪ¤Ī„ā„Ē„ė"
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "„ķ”¼„«„ė„ׄź„ó„æ"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "„ź„ā”¼„Ȅׄź„ó„æ"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr " °Ź²¼¤Ī„Ń„é„ģ„ė„Ż”¼„Č¾å \\/*%s"
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB „ׄź„ó„æ \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", „Ń„é„ģ„ė„Ż”¼„Č¾å¤ĪĀæµ”Ē½„Ē„Š„¤„¹ \\/*%s"
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr "USB ¾å¤ĪĀæµ”Ē½„Ē„Š„¤„¹"
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ", HP JetDirect¾å¤ĪĀæµ”Ē½„Ē„Š„¤„¹"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ", Āæµ”Ē½„Ē„Š„¤„¹"
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr "%s ¤Ų°õŗž½ŠĪĻĆę"
-#: ../../printer.pm_.c:564
-#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:544
+#, fuzzy, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD „µ”¼„Š ”Ö%s”×¾å¤Ī, „ׄź„ó„æ”Ö%s”×"
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP „Ū„¹„Č”Ö%s”×, „Ż”¼„Č %s"
-#: ../../printer.pm_.c:570
-#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+#: ../../printer.pm_.c:550
+#, fuzzy, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "„¦„£„ó„É„¦„ŗ„µ”¼„Š ”Ö%s”×¾å¤Ī, ¶¦Ķ­”Ö%s”×"
-#: ../../printer.pm_.c:574
-#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+#: ../../printer.pm_.c:554
+#, fuzzy, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell „µ”¼„Š ”Ö%s”×¾å¤Ī, „ׄź„ó„æ”Ö%s”×"
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ", „³„Ž„ó„É”Ö%s”פņ»ČĶŃ"
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "Ąø¤Ī„ׄź„ó„æ”Ź„Ʉ鄤„Š¤Ź¤·”Ė"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(%s¾å¤Ē)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "”Ź¤³¤Ī„Ž„·„ó¾å¤Ē”Ė"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS „µ”¼„Š”Ö%s”×¾å¤Ē"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " („Ē„Õ„©„ė„Č)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "„ׄź„ó„æ¤ĪĄÜĀ³¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "„ׄź„ó„æ¤Ļ¤É¤¦¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
msgid ""
"\n"
"Printers on remote CUPS servers you do not have to configure here; these "
@@ -7318,15 +7598,19 @@ msgstr ""
"„ź„ā”¼„Č CUPS „µ”¼„Š¾å¤Ī„ׄź„ó„æ¤Ļ”¢¤³¤³¤Ē¤ĻĄßÄźÉŌĶפĒ¤¹”£\n"
"„ׄź„ó„æ¤Ļ¼«Ę°ø”½Š¤µ¤ģ¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS ĄßÄź"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "CUPS „µ”¼„Š¤ņ»ŲÄź"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -7347,7 +7631,7 @@ msgstr ""
"„Š\n"
"¤«¤é„ׄź„ó„澚Źó¤ņ¤ā¤é¤¦¤«”¢¤¢¤ė¤¤¤Ļ¤³¤³¤ņ¶õĒņ¤Ė¤·¤Ę¤Ŗ¤­¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -7364,32 +7648,32 @@ msgstr ""
"½Ŗ¤ļ¤Ć¤æ¤é”¢CUPS ¤ņŗʵÆĘ°¤¹¤ė¤Ī¤ņ¤ŖĖŗ¤ģ¤Ź¤Æ”Ŗ\n"
"”Ź„³„Ž„ó„É: ”Öservice cups restart”×)."
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP „¢„É„ģ„¹¤Ļ 192.168.1.20 ¤Ī¤č¤¦¤ĖĘžĪĻ¤·¤Ę²¼¤µ¤¤"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "„Ż”¼„ČČÖ¹ę¤ĻĄµæō¤Ē¤¹”Ŗ"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS „µ”¼„Š¤ĪIP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "„Ż”¼„Č"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "¼«Ę° CUPS ĄßÄź"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "„ׄź„ó„æÄɲĆ"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7410,48 +7694,67 @@ msgstr ""
"„ׄź„ó„æĄßÄź¤ĖɬĶפŹ³Ę¼ļ¾šŹó¤ņĖ¬¤Ķ¤Ę”¢³Ę¼ļ„ׄź„ó„æ„Ʉ鄤„Š¤ä\n"
"¤½¤Ī„Ŗ„ׄ·„ē„󔢄ׄź„ó„æĄÜĀ³Źż¼°¤ņĮŖ¤Ł¤ė¤č¤¦¤Ė¤·¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "„ķ”¼„«„ė„ׄź„ó„æ"
-
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:193
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
+
+#: ../../printerdrake.pm_.c:202
+msgid ""
"\n"
-"„ׄź„ó„æĄßÄź„¦„£„¶”¼„ɤŲ¤¤¤é¤Ć¤·¤ć”Į¤¤\n"
+"Welcome to the Printer Setup Wizard\n"
"\n"
-"¤³¤Ī„¦„£„¶”¼„ɤĻ”¢ĄÜĀ³¤µ¤ģ¤æ„ׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤ņ¤Ŗ¼źÅĮ¤¤¤·¤Ž¤¹”£\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
"\n"
-"„ׄź„ó„æ¤ņ„³„ó„Ō„唼„æ¤Ė¤Ä¤Ź¤¤¤ĒÅÅø»¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤”£½ąČ÷¤¬¤Ē¤­¤æ¤é”Ö¼””×"
-"¤ņ\n"
-"„Æ„ź„Ć„Æ¤¹¤ė¤«”¢¤¤¤Ž¤ĻĄßÄź¤·¤æ¤Æ¤Ź¤±¤ģ¤Š \"„­„ć„ó„»„ė\" ¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤¹”£\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"¤Ź¤Ŗ”¢°ģÉō¤Ī„³„ó„Ō„唼„æ¤Ļ„ׄź„ó„æ¼«Ę°ø”½ŠĆę¤Ė„Æ„é„Ć„·„夷¤Ž¤¹”£\n"
-"¼«Ę°ø”½Š¤Ź¤·¤Ē„ׄź„ó„æĄßÄź¤ņ¤¹¤ė¤Ė¤Ļ”¢”քׄź„ó„æ¼«Ę°ø”½Š”פņ„Ŗ„Õ¤Ė¤·¤Ž¤¹”£\n"
-"¤Ž¤æprinterdrake ¤¬¼«Ę°ÅŖ¤Ė„ź„ā”¼„Ȅׄź„ó„æ¤ņø”½Š¤·¤Ź¤±¤ģ¤Š”¢\n"
-"”Ö„Ø„­„¹„Ń”¼„Č„ā”¼„ɔפņ»Č¤Ć¤ĘĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "„ׄź„ó„æ¼«Ę°ø”½Š"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "„ķ”¼„«„ė„ׄź„ó„æ"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7475,56 +7778,50 @@ msgstr ""
"¤·¤æ¤±¤ģ¤Š”¢Mandrake „³„ó„Č„ķ”¼„ė„»„ó„攼¤Ī”Ö„Ļ”¼„É„¦„§„¢”פĪĆę¤Ī\n"
"”քׄź„ó„æ”פņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "„ׄź„ó„æ¤Ī¼«Ę°ø”½Š"
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-"Printerdrake ¤Ļ„ķ”¼„«„ė„ׄź„ó„æ¤ņ¼«Ę°ø”½Š¤Ē¤­¤Ž¤¹¤¬”¢°ģÉō¤Ī„·„¹„Ę„ą¤Ē¤Ļ\n"
-"„·„¹„Ę„ą¤ņ„Õ„ź”¼„ŗ¤µ¤»¤Ę”¢„Õ„”„¤„ė„·„¹„Ę„ą¤ņ²õ¤·¤Ž¤¹”£²æ¤¬µÆ¤­¤Ę¤āĆĪ¤ź¤Ž¤»¤ó"
-"¤č”Ŗ\n"
-"\n"
-"¤Ē”¢ĖÜÅö¤Ė„ׄź„ó„æ¤Ī¼«Ę°ø”½Š¤ņ¤·¤Ž¤¹¤«”©"
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Printer auto-detection"
msgstr "¼«Ę°ø”½Š¤ņ¤¹¤ė"
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "„ׄź„ó„æ¤ņ¼źĘ°¤ĒĄßÄź"
+#: ../../printerdrake.pm_.c:305
+#, fuzzy, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", TCP/IP „Ū„¹„Č”Ö%s”×, „Ż”¼„Č %s"
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "„Ż”¼„ȤĪ„Ę„¹„Č"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/„¦„£„ó„É„¦„ŗ 95/98/NT„µ”¼„Š¾å¤Ī„ׄź„ó„æ"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "%s ¤ņø”½Š"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "„Ń„é„ģ„ė„Ż”¼„Č¾å¤Ī„ׄź„ó„æ \\/*%s"
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB „ׄź„ó„æ \\/*%s"
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "„Ķ„Ć„Č„ļ”¼„Ƅׄź„ó„æ”ŹTCP/„½„±„Ć„Č”Ė"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/„¦„£„ó„É„¦„ŗ 95/98/NT„µ”¼„Š¾å¤Ī„ׄź„ó„æ"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7536,37 +7833,23 @@ msgstr ""
"¤¬ LPT1:, LPT2:, ..., ¤ĖĀŠ±ž¤·¤Ę”¢1ČÖĢܤĪ USB „ׄź„ó„æ: /dev/usb/lp0, 2ČÖĢÜ"
"¤Ī USB „ׄź„ó„æ: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
msgstr "„Ē„Š„¤„¹¤«„Õ„”„¤„ėĢ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:390
-msgid ""
-"No local printer found!\n"
-"\n"
+#: ../../printerdrake.pm_.c:475
+#, fuzzy
+msgid "No printer found!"
msgstr ""
"„ķ”¼„«„ė„ׄź„ó„椬ø«¤Ä¤«¤ź¤Ž¤»¤ó”Ŗ\n"
"\n"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-"„Ķ„Ć„Č„ļ”¼„Ƅׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤Ļ”¢OS „¤„ó„¹„Č”¼„ėøå¤Ė¤·¤«¤Ē¤­¤Ž¤»¤ó”£\n"
-"„¤„ó„¹„Č”¼„ėøå¤ĖMandrake „³„ó„Č„ķ”¼„ė„»„ó„æ¤Ē”Ö„Ļ”¼„É„¦„§„¢”פĪĆę¤Ī\n"
-"”քׄź„ó„æ”פņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
-"„Ķ„Ć„Č„ļ”¼„Ƅׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¤Ļ”Ö„­„ć„ó„»„ė”פņ„Æ„ź„Ć„Æ¤·¤Ę\n"
-"”Ö„Ø„­„¹„Ń”¼„Č„ā”¼„ɔפĖŹŃ¹¹¤·¤Ę¤«¤é”Öæ·µ¬„ׄź„ó„æ¤ĪÄÉ²Ć”×¤ņ„Æ„ź„Ć„Æ\n"
-"¤·¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "„ķ”¼„«„ė„ׄź„ó„æ"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7574,7 +7857,7 @@ msgstr ""
"°Ź²¼¤Ī„ׄź„ó„椬¼«Ę°ø”½Š¤µ¤ģ¤Ž¤·¤æ”£¤ā¤·¤³¤ģ¤¬ĄßÄź¤·¤æ¤¤¤ā¤Ī¤Ē¤Ź¤±¤ģ¤Š”¢\n"
"ĘžĪĻ¹Ō¤Ė”¢„Ē„Š„¤„¹Ģ¾/„Õ„”„¤„ėĢ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7582,7 +7865,7 @@ msgstr ""
"°Ź²¼¤Ī„ׄź„ó„椬¼«Ę°ø”½Š¤µ¤ģ¤Ž¤·¤æ”£¤ā¤·ĄßÄź¤·¤æ¤¤¤ā¤Ī¤¬¤³¤³¤Ė¤Ź¤±¤ģ¤Š”¢\n"
"ĘžĪĻ¹Ō¤Ė”¢„Ē„Š„¤„¹Ģ¾/„Õ„”„¤„ėĢ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7593,7 +7876,7 @@ msgstr ""
"ø”½Š¤µ¤ģ¤Ę¤¤¤Ź¤«¤Ć¤æ¤ź”¢„«„¹„æ„ąĄßÄź¤ņ¤·¤æ¤±¤ģ¤Š”Ö¼źĘ°ĄßÄź”פņĶ­øś¤Ė¤·¤Ę¤Æ¤Ą"
"¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7604,7 +7887,7 @@ msgstr ""
"„ׄź„ó„æ¤Ļ“°Į“¤Ė¼«Ę°¤ĒĄßÄź¤µ¤ģ¤Ž¤¹”£ø”½Š¤µ¤ģ¤Ę¤¤¤Ź¤«¤Ć¤æ¤ź”¢„«„¹„æ„ąĄßÄź\n"
"¤·¤æ¤±¤ģ¤Š”Ö¼źĘ°ĄßÄź”פņĶ­øś¤Ė¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7612,11 +7895,11 @@ msgstr ""
"„ׄź„ó„椬ĄÜĀ³¤µ¤ģ¤Ę¤¤¤ė„Ż”¼„ȤņĮŖ¤Ö¤«”¢ĘžĪĻ¹Ō¤Ė„Ē„Š„¤„¹Ģ¾/„Õ„”„¤„ėĢ¾¤ņ\n"
"ĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
msgstr "„ā„Ē„ą¤Ļ¤É¤Ī„·„ź„¢„ė„Ż”¼„ȤĖ¤Ä¤Ź¤¬¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7624,65 +7907,19 @@ msgstr ""
"(„Ń„é„ģ„ė„Ż”¼„ȤŹ¤é: /dev/lp0, /dev/lp1,... ¤¬ LPT1:, LPT2:, ..., ¤ĖĀŠ±ž”¢1ČÖ"
"ĢܤĪ USB „ׄź„ó„æ: /dev/usb/lp0, 2ČÖĢܤĪ USB „ׄź„ó„æ: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
msgstr "„ׄź„ó„椫„Ē„Š„¤„¹¤ņĘžĪĻ”¦ĮŖĀņ"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
msgstr "„Ž„Ė„å„¢„ėĄßÄź"
-#: ../../printerdrake.pm_.c:463
-#, fuzzy
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-"¤¢¤Ź¤æ¤Ī„ׄź„ó„æ¤Ļ”¢HPĄ½Āæµ”Ē½„Ē„Š„¤„¹ (OfficeJet, PSC, PhotoSmart, LaserJet "
-"1100/1200/1220/3200/3300 ¤Ī„¹„­„ć„Ź¤Ä¤­) ¤Ē¤¹¤«?"
-
-#: ../../printerdrake.pm_.c:480
-msgid "Installing HPOJ package..."
-msgstr "HPOJ „Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr "„Ē„Š„¤„¹¤ņ„Į„§„Ć„Æ¤·¤ĘHPOJ ¤ņ„¤„ó„¹„Č”¼„ėĆę..."
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "SANE „Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr "HP „Ž„ė„Įµ”Ē½„Ē„Š„¤„¹¤Ē„¹„­„ć„óĆę"
-
-#: ../../printerdrake.pm_.c:541
-#, fuzzy
-msgid "Photo memory card access on your HP multi-function device"
-msgstr "HP „Ž„ė„Įµ”Ē½„Ē„Š„¤„¹¤Ē„¹„­„ć„óĆę"
-
-#: ../../printerdrake.pm_.c:558
-msgid "Making printer port available for CUPS..."
-msgstr "„ׄź„ó„æ„Ż”¼„Ȥņ CUPS ĶѤĖÄó¶”Ćę..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "„ׄź„ó„æ„Ē”¼„æ„Ł”¼„¹¤ņĘɤó¤Ē¤¤¤Ž¤¹..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "„ź„ā”¼„Člpd„ׄź„ó„æ„Ŗ„ׄ·„ē„ó"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7690,27 +7927,47 @@ msgstr ""
"„ź„ā”¼„ȤĪ lpd ¤Ī „ׄź„ó„æ¤ņ»Č¤¦¤Ė¤Ļ”¤„ׄź„ó„愵”¼„Š¤Ī\n"
"„Ū„¹„ČĢ¾¤Č„µ”¼„Š¾å¤Ī„ׄź„ó„æĢ¾¤¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "„ź„ā”¼„Č„Ū„¹„ČĢ¾"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "„ź„ā”¼„Ȅׄź„ó„æĢ¾"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "„ź„ā”¼„Č„Ū„¹„ČĢ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "„ź„ā”¼„Ȅׄź„ó„æĢ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "%s ¤ņø”½Š"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "„Ķ„Ć„Č„ļ”¼„ƵÆĘ°Ćę..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, fuzzy, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr "„¦„£„ó„É„¦„ŗ„µ”¼„Š ”Ö%s”×¾å¤Ī, ¶¦Ķ­”Ö%s”×"
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "°Ź²¼¤Ī„ׄź„ó„æ¤Ē°õŗžĆꔧ \"%s\""
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB („¦„£„ó„É„¦„ŗ 9x/NT) „ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7721,35 +7978,46 @@ msgstr ""
"ĀæŹ¬„ׄź„ó„Č„µ”¼„Š¤Ī IP „¢„É„ģ„¹”¤„¢„Æ„»„¹¤·¤æ¤¤„ׄź„ó„æ¤Ī¶¦Ķ­Ģ¾”¤\n"
"ŬĄŚ¤Ź„ę”¼„¶Ģ¾”¤„Ń„¹„ļ”¼„ɤŖ¤č¤Ó„ļ”¼„Æ„°„ė”¼„פĪ¾šŹó¤¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB„µ”¼„Š„Ū„¹„Č"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB„µ”¼„Š¤ĪIP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "„·„§„¢Ģ¾"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "„ļ”¼„Æ„°„ė”¼„×"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "¼«Ę°ø”½Š¤ņ¤¹¤ė"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "„µ”¼„ŠĢ¾¤«”¢„µ”¼„Š¤ĪIP¤Ļ¤É¤¦¤·¤Ę¤āĶפź¤Ž¤¹”Ŗ"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "Samba„·„§„¢Ģ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7773,7 +8041,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7782,7 +8050,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7790,11 +8058,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "Netware „ׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7805,51 +8073,70 @@ msgstr ""
"¤Č”¤„¢„Æ„»„¹¤·¤æ¤¤„ׄź„ó„æ¤Ī„ׄź„ó„Č„­„唼Ģ¾”¤Å¬ĄŚ¤Ź„ę”¼„¶Ģ¾¤Ŗ¤č¤Ó\n"
"„Ń„¹„ļ”¼„ɤ¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "„ׄź„ó„愵”¼„Š"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "°õŗž„­„唼¤ĪĢ¾Į°"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP „µ”¼„ŠĢ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP „­„唼Ģ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, fuzzy, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", TCP/IP „Ū„¹„Č”Ö%s”×, „Ż”¼„Č %s"
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, fuzzy, c-format
+msgid "Host \"%s\", port %s"
+msgstr ", TCP/IP „Ū„¹„Č”Ö%s”×, „Ż”¼„Č %s"
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/„½„±„ƄȄׄź„ó„æ¤Ī„Ŗ„ׄ·„ē„ó"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
+
+#: ../../printerdrake.pm_.c:978
+#, 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"
"ø«¤Ž¤·¤ē¤¦”£"
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "„ׄź„ó„æ„Ū„¹„ČĢ¾"
-
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
+#: ../../printerdrake.pm_.c:983
+#, fuzzy
+msgid "Printer host name or IP missing!"
msgstr "„ׄź„ó„æ„Ū„¹„ČĢ¾¤¬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1005
+#, fuzzy
+msgid "Printer host name or IP"
+msgstr "„ׄź„ó„æ„Ū„¹„ČĢ¾"
+
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "„ׄź„ó„æ„Ē„Š„¤„¹¤ĪURI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7859,11 +8146,11 @@ msgstr ""
"¤³¤ĪURI¤ĻCUPS»ÅĶĶ¤«Foomatic»ÅĶĶ¤Ē»ŲÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"¤Ź¤Ŗ”¢¤¹¤Ł¤Ę¤ĪURI„愤„פ¬Į“„¹„×”¼„é¤Ē„µ„Ż”¼„Ȥµ¤ģ¤Ę¤¤¤ė¤ļ¤±¤ø¤ć¤Ź¤¤¤Ē¤¹”£"
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "Ķ­øś¤ŹURI¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤”Ŗ"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7872,23 +8159,27 @@ msgstr ""
"ĄāĢĄ¤ä¾ģ½ź¤ĪĶó¤Ļ¶õĶó¤Ē¤ā¤«¤Ž¤¤¤Ž¤»¤ó”£\n"
"¤³¤ģ¤Ļ„ę”¼„¶¤Ė¤ļ¤«¤ź¤ä¤¹¤Æ¤¹¤ė¤æ¤į¤Ī¤ā¤Ī¤Ē¤¹”£"
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "„ׄź„ó„æ¤ĪĢ¾Į°"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "„ׄź„ó„æ¤Ī¾ģ½ź"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "„ׄź„ó„æ„Ē”¼„æ„Ł”¼„¹¤ņĘɤó¤Ē¤¤¤Ž¤¹..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "„ׄź„ó„æ„Ē”¼„æ„Ł”¼„¹¤ņ½ąČ÷Ćę..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "„ׄź„ó„æ¤Īµ”¼ļ"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7913,24 +8204,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "¤³¤Ī„ā„Ē„ė¤ņ»Č¤¦"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "¼źĘ°¤ĒĮŖ¤Ö"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "„ׄź„ó„æ¤Īµ”¼ļ¤ņĮŖ¤Ö"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "¤É¤Īµ”¼ļ¤Ī„ׄź„ó„æ¤ņ»Č¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7944,7 +8235,7 @@ msgstr ""
"„«”¼„½„ė¤¬¤Ž¤Į¤¬¤Ć¤æ„ā„Ē„ė²½”Ö„Ź„Ž¤Ī„ׄź„ó„æ”ŹRaw Printer)”פņ»Ų¤·¤Ę\n"
"¤¤¤æ¤é”¢°ģĶ÷¤«¤éĄµ¤·¤¤µ”¼ļ¤ņƵ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7952,11 +8243,11 @@ msgstr ""
"¤¢¤Ź¤æ¤Ī„ׄź„ó„椬¤Ź¤±¤ģ¤Š”¢øß“¹Ą­¤Ī¤¢¤ė„ׄź„ó„æ”Ź„ׄź„ó„æ¤Ī„Ž„Ė„å„¢„ė¤«\n"
"Īą»÷„ׄź„ó„æ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI win„ׄź„ó„æ¤ĪĄßÄź"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7973,11 +8264,11 @@ msgstr ""
"„Ę„¹„Č„Ś”¼„ø°õŗž¤ĪĮ°¤Ė”¢ŗĒ½é¤Ī„Ń„é„ģ„ė„Ż”¼„ȤĖ¤Ä¤Ź¤®¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"¤µ¤ā¤Ź¤¤¤Č»Č¤Ø¤Ž¤»¤ó”£ĄÜĀ³¼ļĪą¤ĪĄßÄź¤ĻĢµ»ė¤µ¤ģ¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "Lexmark„¤„ó„Æ„ø„§„ƄȤĪĄßÄź"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7988,7 +8279,7 @@ msgstr ""
"„µ„Ż”¼„Ȥ·¤Ž¤»¤ó”£„ź„ā”¼„Č„Ž„·„ó¤ä„ׄź„ó„愵”¼„Š¾å¤Ī„ׄź„ó„æ¤Ļ»Č¤Ø¤Ž¤»¤ó”£\n"
"„ׄź„ó„æ¤ņ„ķ”¼„«„ė„Ż”¼„ȤĖ¤Ä¤Ź¤°¤«ĄÜĀ³¤µ¤ģ¤Ę¤¤¤ė„Ž„·„ó¤ĒĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -8009,7 +8300,7 @@ msgstr ""
"¤«¤é°õŗž„Ų„ƄɤĪ„¢„鄤„ó„į„ó„Č„Ś”¼„ø¤ņ\"lexmarkmaintain\" ¤Ē°õŗž¤·¤Ę”¢¤³¤Ī„×"
"„ķ„°„é„ą¤Ē„Ų„ƄɤĪ„¢„鄤„ó„į„ó„ȤņÄ“Ą°¤·¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -8023,22 +8314,22 @@ msgstr ""
"„Ś”¼„ø¤ĪĀē¤­¤µ¤Č„¤„ó„ƤĪ¼ļĪą”Ź³ŗÅö¤¹¤ė¾ģ¹ē¤Ī¤ß”Ė¤¬Ąµ¤·¤ÆĄßÄź¤µ¤ģ¤Ę¤¤¤ė¤«¤ņ³Ī"
"Ē§¤·¤Ž¤·¤ē¤¦”£¤Ź¤Ŗ”¢Ä¶¹āÉŹ¼Į°õŗž¤Ļ¤¹¤“¤Æ»ž“Ö¤¬¤«¤«¤ė¤³¤Č¤¬¤¢¤ź¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "„Ŗ„ׄ·„ē„ó %s ¤ĻĄ°æō¤Ē¤¹”Ŗ"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "„Ŗ„ׄ·„ē„ó %s ¤Ļæō»ś¤Ē¤¹”Ŗ"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "„Ŗ„ׄ·„ē„ó %s ČĻ°Ļ³°¤Ē¤¹!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -8047,11 +8338,11 @@ msgstr ""
"¤³¤Ī„ׄź„ó„æ (\"%s\") ¤ņ\n"
"„Ē„Õ„©„ė„Ȅׄź„ó„æ¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "„Ę„¹„Č„Ś”¼„ø"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8063,39 +8354,39 @@ msgstr ""
"¤Ź¤¤„ģ”¼„¶„ׄź„ó„æ¤Ē¤Ļ½ŠĪĻ¤Ē¤­¤Ź¤¤¤³¤Č¤ā¤¢¤ź¤Ž¤¹”£Āæ¤Æ¤Ī¾ģ¹ē¤ĻÉø½ą„Ś”¼„ø¤¬°õ"
"ŗž¤Ē¤­¤ģ¤ŠĀē¾ęÉפĒ¤¹”£"
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "„Ę„¹„Č„Ś”¼„ø¤Ź¤·"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "°õŗž"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Éø½ą„Ę„¹„Č„Ś”¼„ø"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "ŹĢ¤Ī„Ę„¹„Č„Ś”¼„ø („ģ„攼)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "ŹĢ¤Ī„Ę„¹„Č„Ś”¼„ø (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "¼Ģææ„Ę„¹„Č„Ś”¼„ø"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "„Ę„¹„Č„Ś”¼„ø¤ņ°õŗž¤·¤Ź¤¤"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "„Ę„¹„Č„Ś”¼„ø°õŗžĆę”Ä”Ä"
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8110,7 +8401,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8118,15 +8409,15 @@ msgstr ""
"„Ę„¹„Č„Ś”¼„ø¤ņ„ׄź„ó„æ„Ē”¼„ā„ó¤ĖĮ÷¤ź¤Ž¤·¤æ”£\n"
"„ׄź„ó„æ¤¬Ę°¤­½Š¤¹¤Ž¤Ē”¢¤Į¤ē¤Ć¤Č»ž“Ö¤¬¤«¤«¤ź¤Ž¤¹”£\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "¤¦¤Ž¤ÆĘ°¤­¤Ž¤·¤æ¤«”©"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "Ąø¤Ī„ׄź„ó„æ"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8139,7 +8430,7 @@ msgstr ""
"”Ökprinter <file>”פņ»Č¤¤¤Ž¤¹”£„°„é„Õ„£„Ć„Æ„Ä”¼„ė¤Ļ”¢\n"
"„ׄź„ó„æĮŖĀņ¤Č„Ŗ„ׄ·„ē„óĄßÄź¤ņ“ŹĆ±¤Ė¤·¤Ę¤Æ¤ģ¤Ž¤¹”£\n"
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8150,8 +8441,8 @@ msgstr ""
"¤ó”£\n"
"°õŗž¤¹¤ė„Õ„”„¤„ė¤Ļ„¢„ׄź„±”¼„·„ē„󤫤é¤Æ¤ė¤«¤é¤Ē¤¹”£\n"
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -8164,7 +8455,7 @@ msgstr ""
"„³„Ž„ó„Ʉ鄤„ó¤Ė“õĖ¾¤ĪĄßÄź¤ņÄÉ²Ć¤¹¤ė¤Ą¤±¤Ē¤¹”£\n"
"¤æ¤Č¤Ø¤Š”Ö%s <file>”פȤ¤¤¦¶ń¹ē¤Ē¤¹”£ "
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -8175,7 +8466,7 @@ msgstr ""
"¤¢¤ė¤¤¤Ļ”Ö„Ŗ„ׄ·„ē„ó°ģĶ÷¤ņ°õŗž”ׄ܄æ„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8183,7 +8474,7 @@ msgstr ""
"¤¤¤Ž¤Ī„ׄź„ó„æ¤Ē»Č¤Ø¤ė°õŗž„Ŗ„ׄ·„ē„ó°ģĶ÷¤Ļ°Ź²¼¤ĪÄĢ¤ź¤Ē¤¹:\n"
"\n"
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8192,8 +8483,8 @@ msgstr ""
"„³„Ž„ó„Ʉ鄤„ó”Ź„æ”¼„ß„Ź„ė„¦„£„ó„É„¦”Ė¤«¤é„Õ„”„¤„ė¤ņ°õŗž¤¹¤ė¤Ė¤Ļ”¢\n"
"„³„Ž„ó„É”Ö%s <file>”פņ»Č¤¤¤Ž¤¹”£\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8204,7 +8495,7 @@ msgstr ""
"¤ó”£\n"
"°õŗž¤¹¤ė„Õ„”„¤„ė¤Ļ„¢„ׄź„±”¼„·„ē„󤫤é¤Æ¤ė¤«¤é¤Ē¤¹”£\n"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8212,7 +8503,7 @@ msgstr ""
"¤¤¤Ž¤Ī„ׄź„ó„æ¤Ē»Č¤Ø¤ė„Ŗ„ׄ·„ē„ó°ģĶ÷¤ņø«¤ė¤Ė¤Ļ”¢”Ö„Ŗ„ׄ·„ē„ó°ģĶ÷¤ņ°õŗž”ׄ܄æ"
"„ó¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£"
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8221,7 +8512,7 @@ msgstr ""
"„³„Ž„ó„Ʉ鄤„ó”Ź„æ”¼„ß„Ź„ė„¦„£„ó„É„¦”Ė¤«¤é„Õ„”„¤„ė¤ņ°õŗž¤¹¤ė¤Ė¤Ļ”¢\n"
"„³„Ž„ó„É”Ö%s <file>”פŽ¤æ¤Ļ”Ö%s <file>”פņ»Č¤¤¤Ž¤¹”£\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8236,7 +8527,7 @@ msgstr ""
"¤¢¤ė¤Ē¤·¤ē¤¦”£¤³¤ģ¤ņ„Æ„ź„Ć„Æ¤¹¤ė¤Č”¢°õŗž„ø„ē„Ö¤¬Į“Éō¤¹¤°¤Ė»ß¤Ž¤ź¤Ž¤¹”£\n"
"¤³¤ģ¤Ļ¤æ¤Č¤Ø¤Š»ęµĶ¤Ž¤ź¤Ī¤Č¤­¤ĖŹŲĶų¤Ē¤¹”£\n"
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -8249,45 +8540,45 @@ msgstr ""
"ŹŃ¤Ø¤µ¤»¤Ę¤Æ¤ģ¤Ž¤¹”£„³„Ž„ó„Ʉ鄤„ó¤Ė“õĖ¾¤ĪĄßÄź¤ņÄÉ²Ć¤¹¤ė¤Ą¤±¤Ē¤¹”£\n"
"¤æ¤Č¤Ø¤Š”Ö%s <file>”פȤ¤¤¦¶ń¹ē¤Ē¤¹”£\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "°Ź²¼¤Ē°õŗžĆę/„¹„­„ć„ó”§ \"%s\""
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "°Ź²¼¤Ē°õŗžĆę/„¹„­„ć„ó”§ \"%s\""
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "°Ź²¼¤Ē°õŗžĆę/„¹„­„ć„ó”§ \"%s\""
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "°Ź²¼¤Ī„ׄź„ó„æ¤Ē°õŗžĆꔧ \"%s\""
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "ŹÄ¤ø¤ė"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "„ׄź„ó„æ„Ŗ„ׄ·„ē„ó°ģĶ÷"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, fuzzy, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -8304,9 +8595,9 @@ msgstr ""
"\n"
"¤³¤Ī„Ē„Š„¤„¹¤Ē¤Ļ\"scannerdrake\" ¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤!"
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -8317,17 +8608,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "„ׄź„ó„æ¤Ī¾šŹó¤ņĘɤó¤Ē¤¤¤Ž¤¹..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "„ׄź„ó„æ¤ĪĄßÄź¤ņ°ÜĘ°"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8341,7 +8632,7 @@ msgstr ""
"¤Ļ¤½¤Į¤é¤Ė¼č¤é¤ģ¤Ž¤¹¤¬”¢„ø„ē„Ö¤Ļ°ÜĘ°¤·¤Ž¤»¤ó”£°Ź²¼¤ĪĶżĶ³¤Ē”¢°ÜĘ°¤Ē¤­¤Ź¤¤"
"„­„唼¤ā¤¢¤ź¤Ž¤¹”§\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8349,7 +8640,7 @@ msgstr ""
"CUPS ¤Ļ Novell „µ”¼„Š¤Ī„ׄź„ó„æ¤ä”¢¼«Ķ³·Į¼°¤Ī„³„Ž„ó„ɤĖ„Ē”¼„æ¤ņĮ÷¤ė„ׄź„ó„æ¤Ļ"
"„µ„Ż”¼„Ȥ·¤Ž¤»¤ó”£\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8357,11 +8648,11 @@ msgstr ""
"PDQ ¤Ļ„ķ”¼„«„ė„ׄź„ó„æ¤Č„ź„ā”¼„ȤĪ LPD „ׄź„ó„攢„½„±„Ć„Č/TCP „ׄź„ó„椷¤«„µ"
"„Ż”¼„Ȥ·¤Ž¤»¤ó”£\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD ¤Č LPRng ¤ĻIPP „ׄź„ó„æ¤ņ„µ„Ż”¼„Ȥ·¤Ž¤»¤ó”£\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8369,7 +8660,7 @@ msgstr ""
"¤µ¤é¤Ė¤³¤Ī„ׄķ„°„é„ą¤ä\"foomatic-configure\" ¤Ēŗī¤Ć¤Ę¤¤¤Ź¤¤„­„唼¤Ļ°ÜĘ°¤Ē¤­¤Ž"
"¤»¤ó”£"
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8379,7 +8670,7 @@ msgstr ""
"¤Ž¤æ„į”¼„«”¼Ä󶔤Ī PPD „Õ„”„¤„ė¤ä„Ķ„¤„Ę„£„Ö¤Ī CUPS „Ʉ鄤„Š¤ĒĄßÄź¤µ¤ģ¤æ„ׄź„ó"
"„æ¤Ļ°ÜĘ°¤Ē¤­¤Ž¤»¤ó”£"
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8388,15 +8679,15 @@ msgstr ""
"\n"
"°ÜĘ°¤·¤æ¤¤„ׄź„ó„æ¤ņĮŖ¤ó¤Ē \"T°ÜĘ°\"¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "„ׄź„ó„æ¤ņ°ÜĘ°¤·¤Ź¤¤"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "°ÜĘ°"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8407,11 +8698,11 @@ msgstr ""
"¾å½ń¤­¤¹¤ė¤Ė¤Ļ \"°ÜĘ°\" ¤ņ²”¤·¤Ę¤Æ¤Ą¤µ¤¤”£\n"
"æ·¤·¤¤Ģ¾Į°¤ņ„愤„פ¹¤ė¤«”¢¤³¤Ī„ׄź„ó„æ¤ņ¤Č¤Š¤¹¤³¤Č¤ā¤Ē¤­¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "„ׄź„ó„æĢ¾¤Ļ”¢Źø»ś¤Čæō»ś¤Č„¢„ó„Ą”¼„¹„³„¢ (_)¤·¤«»Č¤Ø¤Ž¤»¤ó"
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8420,16 +8711,16 @@ msgstr ""
"„ׄź„ó„æ \"%s\" ¤Ļ¤¹¤Ē¤ĖĀøŗߤ·¤Ž¤¹”£\n"
"¤¤¤Ž¤ĪĄßÄź¤ņ¾å½ń¤­¤·¤Ę¤·¤Ž¤¤¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "æ·¤·¤¤„ׄź„ó„æ¤ĪĢ¾Į°"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s °ÜĘ°Ćę”Ä”Ä"
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8438,29 +8729,29 @@ msgstr ""
"Į°¤Ī„Ē„Õ„©„ė„Ȅׄź„ó„æ (\"%s\")¤ņ°ÜĘ°¤·¤Ž¤·¤æ”£æ·¤·¤¤°õŗž„·„¹„Ę„ą%s¤Ē¤ā¤³¤ģ¤ņ"
"„Ē„Õ„©„ė„ȤĪ„ׄź„ó„æ¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "„ׄź„ó„æ„Ē”¼„æ¹¹æ·Ćę..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "„ź„ā”¼„Ȅׄź„ó„æ¤ĪĄßÄź"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "„Ķ„Ć„Č„ļ”¼„ƵÆĘ°Ćę..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "ŗ£¤¹¤°„Ķ„Ć„Č„ļ”¼„ÆĄßÄź¤ņ¤¹¤ė"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "„Ķ„Ć„Č„ļ”¼„Ƶ”Ē½¤¬ĄßÄź¤µ¤ģ¤Ę¤Ž¤»¤ó"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -8471,11 +8762,11 @@ msgstr ""
"¤¬”¢¤¢¤Ź¤æ¤Ī„Ķ„Ć„Č„ļ”¼„ÆĄßÄź¤Ļ¤¹¤ó¤Ē¤¤¤Ž¤»¤ó”£„Ķ„Ć„Č„ļ”¼„ÆĄßÄź¤Ź¤·¤ĒæŹ¤ą¤Č”¢"
"¤¤¤ŽĄßÄźĆę¤Ī„ׄź„ó„æ¤Ļ»Č¤Ø¤Ž¤»¤ó”£¤µ¤Ę¤É¤¦æŹ¤į¤Ž¤·¤ē¤¦¤«”©"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "„Ķ„Ć„Č„ļ”¼„ƤĪĄßÄź¤ņ¤Č¤Š¤·¤ĘĄč¤ĖæŹ¤ą"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8490,7 +8781,7 @@ msgstr ""
"¤ø¤ÆMandrake„³„ó„Č„ķ”¼„ė„»„ó„æ¤Ī”Ö„Ļ”¼„É„¦„§„¢/„ׄź„ó„æ”פĪÉōŹ¬¤Ē„ׄź„ó„æ¤ĪĄß"
"Äź¤ņ¤·¤Ž¤·¤ē¤¦”£"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 "
@@ -8499,24 +8790,24 @@ msgstr ""
"„Ķ„Ć„Č„ļ”¼„Æ„¢„Æ„»„¹¤¬Ķī¤Į¤Ę¤¤¤Ę”¢µÆĘ°¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£„Ļ”¼„É„¦„§„¢¤äĄßÄź¤ņ"
"„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£¤½¤ģ¤«¤é„ź„ā”¼„Ȅׄź„ó„æ¤ĪĄßÄź¤ņ¤ä¤ź¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "„ׄź„ó„æ„·„¹„Ę„ąŗʵÆĘ°Ćę..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "¹ā¤¤"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "æĄ·Š¼Į¤Ź¤Ū¤É¹āæå½ą"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "°õŗž„·„¹„Ę„ą¤ņ„»„­„å„ź„Ę„£æå½ą %s ¤Ē„¤„ó„¹„Č”¼„ėĆę"
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8540,11 +8831,11 @@ msgstr ""
"\n"
"¤³¤Ī„Ž„·„ó¤Ē°õŗž¤ĪĄßÄź¤ņĖÜÅö¤Ė¤ä¤Ć¤Ę¤¤¤¤¤Ē¤¹¤Ķ”©"
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "µÆĘ°»ž¤Ė°õŗž„·„¹„Ę„ą¤ņ„¹„攼„Č"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8564,63 +8855,63 @@ msgstr ""
"\n"
"°õŗž„·„¹„Ę„ą¤Ī¼«Ę°„¹„攼„Ȥņ¤ā¤¦°ģÅŁĶ­øś¤Ė¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "„¤„ó„¹„Č”¼„ėŗѤ߄½„Õ„Č¤ņ„Į„§„Ć„ÆĆę”Ä”Ä"
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "LPRng ŗļ½üĆę”Ä”Ä"
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "LPD ŗļ½üĆę”Ä”Ä"
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "„ׄź„ó„æ¤Ī„¹„×”¼„é¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "¤É¤Ī°õŗž„·„¹„Ę„ą”Ź„¹„×”¼„é”Ė¤ņ»Č¤¤¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "„ׄź„ó„æ \"%s\" ¤ĪĄßÄźĆę..."
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
msgstr "Foomatic ¤Ī„¤„ó„¹„Č”¼„ėĆę..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "„ׄź„ó„æ„Ŗ„ׄ·„ē„ó"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "PrinterDrake½ąČ÷Ćę..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
msgstr "„¢„ׄź„±”¼„·„ē„ó¤ĪĄßÄźĆę..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "°õŗž¤ĪĄßÄź¤ņ¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "°õŗž„·„¹„Ę„ą:"
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8631,7 +8922,7 @@ msgstr ""
"¤Ę¤Æ¤Ą¤µ¤¤”£„Ē„Õ„©„ė„Ȅׄź„ó„æ¤Ė¤·¤æ¤ź”¢¤½¤Ī¾šŹó¤ņø«¤æ¤ź”¢„ź„ā”¼„ȤĪCUPS „µ”¼"
"„Š¾å¤Ī„ׄź„ó„æ¤ņ Star Office/OpenOffice.org¤Ē»Č¤Ø¤ė¤č¤¦¤Ė¤¹¤ė¾ģ¹ē¤ā¤½¤¦¤Ē¤¹”£"
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8640,32 +8931,28 @@ msgstr ""
"°Ź²¼¤Ī„ׄź„ó„椬ĄßÄź¤µ¤ģ¤Ę¤¤¤Ž¤¹”£ŹŃ¹¹”¢„Ē„Õ„©„ė„Č²½”¢¾šŹó¤Ī»²¾Č¤Ė¤Ļ”¢\n"
"¤½¤Ī„ׄź„ó„æ¤ņ„Ą„Ö„ė„Æ„ź„Ć„Æ¤·¤Ž¤¹”£"
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "„ׄź„ó„æ°ģĶ÷¹¹æ·”Ź„ź„ā”¼„Č CUPS„ׄź„ó„æ¤ņ¤¹¤Ł¤Ęɽ¼Ø)"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "°õŗž„·„¹„Ę„ą¤ņŹŃ¹¹"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "„Ī”¼„Ž„ė„ā”¼„É"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "½ŖĪ»"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "ŹĢ¤Ī„ׄź„ó„æ¤ņĄßÄź¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "„ׄź„ó„æĄßÄź¤ĪŹŃ¹¹"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, c-format
msgid ""
"Printer %s\n"
@@ -8674,100 +8961,100 @@ msgstr ""
"„ׄź„ó„æ %s\n"
"¤³¤Ī„ׄź„ó„æ¤Ī²æ¤ņŹŃ¹¹¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "¤ä¤ģ”Ŗ"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "„ׄź„ó„æĄÜĀ³¤Ī¼ļĪą"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "„ׄź„ó„æ¤ĪĢ¾Į°”¢ĄāĢĄ”¢¾ģ½ź"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "„ׄź„ó„æ¤Ī„į”¼„«”¼”¢µ”¼ļ”¢„Ʉ鄤„Š"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "„ׄź„ó„æ¤Ī„į”¼„«”¼”¢µ”¼ļ"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "¤³¤Ī„ׄź„ó„æ¤ņ„Ē„Õ„©„ė„ȤĖ¤¹¤ė"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "¤³¤Ī„ׄź„ó„æ¤ņ Star Office/OpenOffice.org ¤ĖÄɲĆ"
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "¤³¤Ī„ׄź„ó„æ¤ņ Star Office/OpenOffice.org ¤«¤éŗļ½ü"
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "„Ę„¹„Č„Ś”¼„ø°õŗž"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "¤³¤Ī„ׄź„ó„æ¤Ī»Č¤¤Źż¤ņÄ“¤Ł¤ė"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "„ׄź„ó„æŗļ½ü"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "øŤ¤„ׄź„ó„æ \"%s\" ¤ņŗļ½üĆę..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "„Ē„Õ„©„ė„Ȅׄź„ó„æ"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "„ׄź„ó„æ %s ¤¬„Ē„Õ„©„ė„Ȅׄź„ó„æ¤Ė¤Ź¤ź¤Ž¤·¤æ”£"
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "„ׄź„ó„æ¤ņ Star Office/OpenOffice.org ¤ĖÄɲĆĆę"
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "„ׄź„ó„æ %s ¤ņ Star Office/OpenOffice.org ¤ĖÄÉ²Ć¤·¤Ž¤·¤æ”£"
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "„ׄź„ó„æ %s ¤ņ Star Office/OpenOffice.org ¤ĖÄÉ²Ć¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£"
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "„ׄź„ó„æ¤ņ Star Office/OpenOffice.org ¤«¤éŗļ½üĆę"
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "„ׄź„ó„æ %s ¤ņ Star Office/OpenOffice.org ¤«¤éŗļ½ü¤·¤Ž¤·¤æ”£"
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "„ׄź„ó„æ %s ¤ņ Star Office/OpenOffice.org ¤«¤éŗļ½ü¤Ē¤­¤Ž¤»¤ó¤Ē¤·¤æ”£"
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "„ׄź„ó„æ %s ¤ņĖÜÅö¤Ėŗļ½ü¤·¤Ž¤¹¤«”©"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "„ׄź„ó„æ \"%s\" ¤ņŗļ½üĆę..."
@@ -8822,8 +9109,9 @@ msgstr ""
"ftp proxy¤ņ»Č¤ļ¤Ź¤¤¤Ź¤é¶õĶó¤Ė¤·¤Ę¤Ŗ¤¤¤Ę¤Æ¤Ą¤µ¤¤"
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "Url ¤Ļ ftp://... ¤Ē¤Ļ¤ø¤Ž¤ź¤Ž¤¹"
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url ¤Ļ http://... ¤Ē¤Ļ¤ø¤Ž¤ź¤Ž¤¹"
#: ../../proxy.pm_.c:79
msgid ""
@@ -8872,42 +9160,6 @@ msgstr "mkraid ¤Ė¼ŗĒŌ (raidtools ¤¬Ęž¤Ć¤Ę¤Ź¤¤¤Ī¤«¤ā?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID „ģ„Ł„ė %d ¤Ī¤æ¤į¤Ė¤Ļ„Ń”¼„Ę„£„·„ē„ó¤¬ÉŌĀ­¤Ē¤¹\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"¤³¤Ī„ģ„Ł„ė¤ņ»Č¤¦¤Ź¤éĆķ°Õ¤¬É¬ĶפĒ¤¹”£„·„¹„Ę„ą¤ņ»Č¤¦¤Ī¤Ļ“ŹĆ±¤Ė¤Ź¤ź¤Ž¤¹¤¬”¢\n"
-"¤Ą¤ģ¤Ė¤Ē¤ā„¢„Æ„»„¹¤Ē¤­¤Ę¤·¤Ž¤¤¤Ž¤¹”£Ā¾¤Ī„Ž„·„ó¤ä„¤„ó„攼„Ķ„Ć„Č\n"
-"¤Ė¤Ä¤Ź¤¬¤Ć¤æ„Ž„·„ó¤Ē¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”£„Ń„¹„ļ”¼„ÉĄ©øĀ¤ā¤¢¤ź¤Ž¤»¤ó”£"
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"¤³¤Ī„»„­„å„ź„Ę„£„ģ„Ł„ė¤Ą¤Č”¢„·„¹„Ę„ą¤ņ„µ”¼„Š¤Č¤·¤Ę»Č¤Ø¤ė¤č¤¦¤Ė¤Ź¤ź¤Ž¤¹”£\n"
-"Āææō¤Ī„Ƅ鄤„¢„ó„Ȥ«¤éĄÜĀ³¤ņ¼õ¤±¤ė„µ”¼„Š¤Č¤·¤Ę¤ā»Č¤Ø¤ė¤Ą¤±¤Ī„»„­„å„ź„Ę„£\n"
-"æå½ą¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£Ćš”§¤¢¤Ź¤æ¤Ī„Ž„·„󤬄¤„ó„攼„Ķ„Ć„Č¾å¤Ī„Ƅ鄤„¢„ó„ČĄģĶѤŹ"
-"¤é”¢¤ā¤Ć¤ČÄ椤„ģ„Ł„ė¤ņĮŖ¤ó¤Ą¤Ū¤¦¤¬¤¤¤¤¤Ē¤¹¤č”£"
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-msgid "Advanced Options"
-msgstr "¾åµé„Ŗ„ׄ·„ē„ó"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "„Ŗ„ׄ·„ē„ó"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (ĄčæŹLinux „µ„¦„ó„É„¢”¼„­„Ę„Æ„Į„ć) „µ„¦„ó„É„·„¹„Ę„ąµÆĘ°"
@@ -9203,7 +9455,7 @@ msgstr "„¤„ó„攼„Ķ„Ć„Č"
msgid "File sharing"
msgstr "„Õ„”„¤„ė¶¦Ķ­"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "„·„¹„Ę„ą"
@@ -9332,7 +9584,7 @@ msgstr ""
"¤į”¢ŗĒ¹ā¤Ī„Ŗ”¼„ׄ󄽔¼„¹³«ČƓĶ­¤Ī°ŅĪĻ¤ņČÆø«¤·¤Ž¤·¤ē¤¦”£"
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake „³„ó„Č„ķ”¼„ė„»„ó„攼"
@@ -9450,20 +9702,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "„ķ„°„¢„¦„Ȥ·¤æ¾å¤Ē Ctrl-Alt-BackSpace ¤ņ²”¤·¤Ę²¼¤µ¤¤"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ŹŃ¹¹¤ņĶ­øś¤Ė¤¹¤ė¤Ė¤Ļ %s ¤Ė„ķ„°„¤„ó¤·¤Ź¤Ŗ¤·¤Ę²¼¤µ¤¤"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -9471,174 +9723,174 @@ msgstr ""
"„Ń”¼„Ę„£„·„ē„ó„Ę”¼„Ö„ė¤¬Ęɤį¤Ž¤»¤ó”¤²õ¤ģ¤Ę¤¤¤ė¤č¤¦¤Ē¤¹:(\n"
"ÉŌĄµ¤Ź„Ń”¼„Ę„£„·„ē„ó¤ņ¶õĒņ¤ĒĖä¤į¤č¤¦¤Č¤·¤Ž¤¹"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "„ׄź„ó„æ¤ĪĄßÄź¤ņ°ÜĘ°"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "„Ē”¼„æ„Ł”¼„¹„µ”¼„Š"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "„Ē”¼„æ„Ł”¼„¹„µ”¼„Š"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS „µ”¼„Š"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS „µ”¼„Š"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "„ę”¼„¶¤ņÄɲĆ"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP „Ƅ鄤„¢„ó„Č"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
msgstr "„Ų„ė„×"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "ĄÜĀ³¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "ŗļ½ü"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "¤¹¤Ł¤Ę¤ņĮŖĀņ"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "„ę”¼„¶¤ņÄɲĆ"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP „Ƅ鄤„¢„ó„Č"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "ĄßÄźĆę..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "ŗĘĄßÄź"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "»Č¤Ć¤æµÆĘ°„Õ„ķ„Ć„Ō”¼¤ņ„Ʉ鄤„Ö %s ¤ĖĮŽĘž"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ķ­øś¤Ź„Õ„ķ„Ć„Ō”¼„Ʉ鄤„Ö¤¬¤¢¤ź¤Ž¤»¤ó"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "„؄锼”Ŗ"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "ɬĶפŹ²čĮü„Õ„”„¤„ė %s ¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó”£"
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "¼«Ę°„¤„ó„¹„Č”¼„ėĄßÄź"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9663,23 +9915,23 @@ msgstr ""
"\n"
"Ā³¤±¤Ž¤¹¤«”©"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "µÆĘ°„¹„ʄƄץßÄź"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
"³Ę„¹„ʄƄפĒ”¢¤¢¤Ź¤æ¤Ī„¤„ó„¹„Č”¼„ė¤Čʱ¤ø¤Ė¤¹¤ė¤«”¢¼źĘ°ĄßÄź¤¹¤ė¤«¤ņĮŖ¤Ó¤Ž¤¹”£"
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "„¤„ó„¹„Č”¼„ė„Õ„ķ„Ć„Ō”¼¤Ī¼«Ę°ŗīĄ®"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9691,12 +9943,12 @@ msgstr ""
"\n"
"¼«Ę°„¤„ó„¹„Č”¼„ė¤Ī„Ń„é„į”¼„椬ŗø¤Ėɽ¼Ø¤µ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "¤Ŗ¤į¤Ē¤Č¤¦¤“¤¶¤¤¤Ž¤¹”Ŗ"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9704,19 +9956,32 @@ msgstr ""
"„Õ„ķ„Ć„Ō”¼¤¬Ąµ¤·¤Æŗī¤é¤ģ¤Ž¤·¤æ”£\n"
"¤³¤ģ¤Ē„¤„ó„¹„Č”¼„ė¤¬ŗĘø½¤Ē¤­¤Ž¤¹”£"
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "¼«Ę°„¤„ó„¹„Č”¼„ė"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "„¢„¤„Ę„ąÄɲĆ"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "ŗĒøå¤Ī„¢„¤„Ę„ą¤ņŗļ½ü"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9726,7 +9991,7 @@ msgstr ""
" DrakBackup Źó¹š \n"
"\n"
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9738,7 +10003,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9750,31 +10015,95 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
msgstr "æŹ¹Ō¾õ¶·"
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr "„·„¹„Ę„ą„Õ„”„¤„ė¤Ī„Š„Ć„Æ„¢„Ć„×..."
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
msgstr "„Ļ”¼„É„Ē„£„¹„ƤĪ„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė..."
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
msgstr "„ę”¼„¶„Õ„”„¤„ė¤Ī„Š„Ć„Æ„¢„Ć„×..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr "„Ļ”¼„É„Ē„£„¹„Æ„Š„Ć„Æ„¢„ƄפĪæŹ¹Ō..."
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
msgstr "Ā¾¤Ī„Õ„”„¤„ė¤ņ„Š„Ć„Æ„¢„Ć„×..."
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "„Ę”¼„פĖ„Š„Ć„Æ„¢„Ć„×"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9782,7 +10111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, fuzzy, c-format
msgid ""
"file list sent by FTP : %s\n"
@@ -9791,7 +10120,7 @@ msgstr ""
"FTP ¤ĒĮ÷¤ė„Õ„”„¤„ė¤Ī„ź„¹„Č: %s\n"
" "
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
#, fuzzy
msgid ""
"\n"
@@ -9801,35 +10130,39 @@ msgstr ""
"\n"
"(!) FTP ĄÜĀ³¤Ī„Č„é„Ö„ė: FTP¤Ē„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė¤ņĮ÷¤ģ¤Ž¤»¤ó¤Ē¤·¤æ”£\n"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) „į”¼„ėĮ÷æ®Ćę¤Ė„؄锼”£\n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr "„Õ„”„¤„ė¤ä„Ē„£„ģ„Æ„Č„ź¤ņĮŖ¤ó¤Ē”ÖÄÉ²Ć”×¤ņ„Æ„ź„Ć„Æ¤·¤Ž¤¹"
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9837,26 +10170,27 @@ msgstr ""
"\n"
"ɬĶפŹ„Ŗ„ׄ·„ē„ó¤Ė„Į„§„Ć„Æ¤ņ¤Ä¤±¤Ę¤Æ¤Ą¤µ¤¤”£\n"
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"¤³¤Ī„Ŗ„ׄ·„ē„ó¤Ļ /etc „Ē„£„ģ„Æ„Č„ź¤Ī„Õ„”„¤„ė¤ņ¤¹¤Ł¤Ę„Š„Ć„Æ„¢„Ƅה¦Éüøµ¤Ē¤­¤Ž"
"¤¹”£\n"
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
msgstr "„·„¹„Ę„ą„Õ„”„¤„ė¤Ī„Š„Ć„Æ„¢„ƄהŹ/etc„Ē„£„ģ„Æ„Č„ź)"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr "„¤„ó„Æ„ź„į„ó„æ„ė„Š„Ć„Æ„¢„ƄהŹøŤ¤„Š„Ć„Æ„¢„ƄפĻ»Ä¤¹)"
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "½ÅĶׄՄ”„¤„ė (passwd, group, fstab) ¤Ļ“Ž¤į¤Ź¤¤"
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9864,40 +10198,61 @@ msgstr ""
"¤³¤Ī„Ŗ„ׄ·„ē„ó¤Ē¤Ļ”¢¹„¤­¤Ź„Š”¼„ø„ē„ó¤Ī /etc „Ē„£„ģ„Æ„Č„ź¤ņ\n"
"Éüøµ¤Ē¤­¤Ž¤¹”£"
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
msgstr "„Š„Ć„Æ„¢„ƄפĖ“Ž¤į¤æ¤¤„ę”¼„¶¤ņĮ“°÷ĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr "„ք鄦„¶¤Ī„­„ć„Ć„·„å¤Ļ“Ž¤į¤Ź¤¤"
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "„¤„ó„Æ„ź„į„ó„æ„ė„Š„Ć„Æ„¢„ƄהŹøŤ¤„Š„Ć„Æ„¢„ƄפĻ»Ä¤¹)"
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ĮŖ¤ó¤Ą¤ā¤Ī¤ņŗļ½ü"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
msgstr "„ę”¼„¶Ģ¾"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "„Š„Ć„Æ„¢„ƄפĖ FTP ĄÜĀ³¤ņ»ČĶŃ"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "°ÜĘ°"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
msgstr "„Ū„¹„ČĢ¾¤« IP ¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -9906,43 +10261,68 @@ msgstr ""
"¤³¤Ī„Ū„¹„Č¾å¤Ē¤½¤Ī„Ē„£„ģ„Æ„Č„ź¤Ė\n"
"„Š„Ć„Æ„¢„ƄפņŹŻĀø¤·¤Ž¤¹¤«”©"
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
msgstr "„ķ„°„¤„óĢ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
msgstr "„Ń„¹„ļ”¼„ɤņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
msgstr "¤³¤Ī„Ń„¹„ļ”¼„ɤņµ­²±¤¹¤ė"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr "CD/DVDROM ¤Ė„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
-msgid "Please choose your CD space"
+#: ../../standalone/drakbackup_.c:1844
+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:1849
+#, fuzzy
+msgid "Please choose your CD/DVD media size"
msgstr "CD „¹„Ś”¼„¹¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "CDRW¤ņ»Č¤Ć¤Ę¤¤¤ė¾ģ¹ē¤Ļ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
msgstr "CDRW¤ņ»Č¤Ć¤Ę¤¤¤ė¾ģ¹ē¤Ļ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "¤Ž¤ŗ CDRW ¤ņ¾Ćµī¤¹¤ė¾ģ¹ē¤Ė¤Ļ¤³¤³¤ņ„Æ„ź„Ć„Æ"
-#: ../../standalone/drakbackup_.c:1382
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr ""
-"CD ¤ĖµÆĘ°ĶѤĪboot¤ņ“Ž¤į¤ė¤Ź¤é\n"
-"„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+#: ../../standalone/drakbackup_.c:1868
+#, fuzzy
+msgid " Erase Now "
+msgstr "°ÜĘ°"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "CDRW¤ņ»Č¤Ć¤Ę¤¤¤ė¾ģ¹ē¤Ļ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "CDRW¤ņ»Č¤Ć¤Ę¤¤¤ė¾ģ¹ē¤Ļ„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9950,21 +10330,36 @@ msgstr ""
"CD „鄤„攼¤Ī„Ē„Š„¤„¹Ģ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤\n"
"Īć: 0,1,0"
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "„Õ„”„¤„ė¤ņĮŖĀņ"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
msgstr "„Ę”¼„פĖ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr "„Š„Ć„Æ„¢„Ć„×ĶŃ„Ē„Š„¤„¹Ģ¾¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "¤Ž¤ŗ CDRW ¤ņ¾Ćµī¤¹¤ė¾ģ¹ē¤Ė¤Ļ¤³¤³¤ņ„Æ„ź„Ć„Æ"
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "¤Ž¤ŗ CDRW ¤ņ¾Ćµī¤¹¤ė¾ģ¹ē¤Ė¤Ļ¤³¤³¤ņ„Æ„ź„Ć„Æ"
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "¤Ž¤ŗ CDRW ¤ņ¾Ćµī¤¹¤ė¾ģ¹ē¤Ė¤Ļ¤³¤³¤ņ„Æ„ź„Ć„Æ"
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9972,63 +10367,63 @@ msgstr ""
"Drakbackup¤Ėµö¤µ¤ģ¤ėŗĒĀē„µ„¤„ŗ¤ņ\n"
"ĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "ŹŻĀø¤¹¤ė„Ē„£„ģ„Æ„Č„ź¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤:"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
msgstr "„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė¤Ī„Æ„©”¼„æ¤ņ»Č¤¦"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr "„Ļ”¼„ɄɄ鄤„Ö / NFS"
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "„愤„×"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr "Ė軞“Ö"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr "ĖčĘü"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr "Ėč½µ"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr "Ėč·ī"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
msgstr "„Ē”¼„ā„ó¤ņ»Č¤¦"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "„Š„Ć„Æ„¢„ƄפĪ“Ö³Ö¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
@@ -10036,7 +10431,7 @@ msgstr ""
"„Š„Ć„Æ„¢„ƄפĪ„į„Ē„£„¢¤ņ\n"
"ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤¤Ķ”£"
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10044,59 +10439,71 @@ msgid ""
"Note that currently all 'net' medias also use the hard drive."
msgstr "„µ”¼„Ó„¹¤Ė cron „Ē”¼„ā„󤬓Ž¤Ž¤ģ¤Ę¤¤¤ė¤³¤Č¤ņ³ĪĒ§¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr "„Š„Ć„Æ„¢„Ć„×Ėč¤ĪŹó¹š„į”¼„ėĮ÷¤źĄč: "
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
msgstr "²æ¤ņ"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
msgstr "¤½¤³¤Ė"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
msgstr "¤¤¤Ä"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
msgstr "¤½¤ĪĀ¾„Ŗ„ׄ·„ē„ó"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
msgstr "Drakbackup ĄßÄź"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
msgstr "„Š„Ć„Æ„¢„Ƅץč¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr "„Ļ”¼„ɄɄ鄤„Ö¤Ų"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ·ŠĶ³¤Ē"
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
msgstr "„Š„Ć„Æ„¢„Ƅפ·¤æ¤¤¤ā¤Ī¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
msgstr "„·„¹„Ę„ą¤ņ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr "„ę”¼„¶¤ņ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr "„ę”¼„¶¤ņ¼źĘ°¤ĒĮŖ¤Ö"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
@@ -10104,7 +10511,7 @@ msgstr ""
"\n"
"„Š„Ć„Æ„¢„Ć„×øµ: \n"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
@@ -10112,7 +10519,7 @@ msgstr ""
"\n"
"- „·„¹„Ę„ą„Õ„”„¤„ė:\n"
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
@@ -10120,7 +10527,7 @@ msgstr ""
"\n"
"- „ę”¼„¶„Õ„”„¤„ė:\n"
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
@@ -10128,7 +10535,7 @@ msgstr ""
"\n"
"- ¤½¤ĪĀ¾„Õ„”„¤„ė:\n"
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
@@ -10137,22 +10544,32 @@ msgstr ""
"\n"
"- „Ļ”¼„ɄɄ鄤„Ö¾å¤ĪŹŻĀø„Ń„¹ : %s\n"
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "„Ž„¦„¹„Ē„Š„¤„¹: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, fuzzy, c-format
msgid ""
"\n"
@@ -10161,12 +10578,12 @@ msgstr ""
"\n"
"- FTP ¤Ē¤ĪŹŻĀøĄč„Ū„¹„Č : %s\n"
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, fuzzy, c-format
msgid ""
"\n"
@@ -10175,7 +10592,7 @@ msgstr ""
"\n"
"- FTP ¤Ē¤ĪŹŻĀøĄč„Ū„¹„Č : %s\n"
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10184,7 +10601,7 @@ msgstr ""
"\t\t „ę”¼„¶Ģ¾: %s\n"
"\t\t „Ń„¹: %s \n"
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
msgid ""
"\n"
"- Options:\n"
@@ -10192,19 +10609,19 @@ msgstr ""
"\n"
"- „Ŗ„ׄ·„ē„ó:\n"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr "\t„·„¹„Ę„ą„Õ„”„¤„ė¤Ļ“Ž¤į¤Ź¤¤\n"
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr "\t„Š„Ć„Æ„¢„ƄפĒ tar ¤Č bzip2¤ņ»ČĶŃ\n"
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr "\t„Š„Ć„Æ„¢„ƄפĒ tar ¤Č gzip¤ņ»ČĶŃ\n"
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
@@ -10213,41 +10630,41 @@ msgstr ""
"\n"
"- „Ē”¼„ā„ó (%s) ¤¬“Ž¤ą¤ā¤Ī :\n"
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr "\t-„Ļ”¼„ɄɄ鄤„Ö”£\n"
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr "\t-„Ķ„Ć„Č„ļ”¼„ƤĒ FTP.\n"
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr "\t-„Ķ„Ć„Č„ļ”¼„ƤĒ SSH.\n"
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-„Ķ„Ć„Č„ļ”¼„ƤĒ FTP.\n"
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-„Ķ„Ć„Č„ļ”¼„ƤĒ FTP.\n"
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "ĄßÄź¤¬¤¢¤ź¤Ž¤»¤ó”£„¦„£„¶”¼„ɤ«¾åµé¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤\n"
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
@@ -10255,7 +10672,7 @@ msgstr ""
"Éüøµ¤¹¤ė„Ē”¼„æ¤Ī°ģĶ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10263,133 +10680,130 @@ msgstr ""
"²õ¤ģ¤Ę¤¤¤ė„Ē”¼„æ°ģĶ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
msgstr "¼”²ó¤Ė„Į„§„Ć„Æ¤ņ¤Ļ¤ŗ¤¹¤«ŗļ½ü¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr "„Š„Ć„Æ„¢„Ć„×„Õ„”„¤„ė¤¬²õ¤ģ¤Ę¤¤¤Ž¤¹"
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+#, fuzzy
+msgid " All of your selected data have been "
msgstr " ĮŖĀņ¤·¤æ„Ē”¼„æ¤Ļ¤¹¤Ł¤Ę "
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s ¾å¤ĖÉüøµ¤µ¤ģ¤Ž¤·¤æ "
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
msgstr " ĄßÄźÉüøµ "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr "Ā¾¤Ī„Õ„”„¤„ėÉüøµ¤Ė¤ĻOK¤ņ"
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Éüøµ¤¹¤ė„ę”¼„¶¤Ī°ģĶ÷”Ź³Ę„ę”¼„¶¤ĪŗĒæ·¤ĪĘüÉÕ¤Ą¤±¤¬½ÅĶפĒ¤¹”Ė"
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
msgstr "„·„¹„Ę„ą„Õ„”„¤„ė¤Ī„Š„Ć„Æ„¢„ƄדüøĀ:"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
msgstr "Éüøµ¤¹¤ėĘüÉÕ¤ņĮŖĀņ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
msgstr "„Š„Ć„Æ„¢„ƄפĖ„Ļ”¼„É„Ē„£„¹„Ƥņ»ČĶŃ"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
msgstr "ŹŻĀø¤¹¤ė„Ē„£„ģ„Æ„Č„ź¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤:"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
msgstr "FTP ĄÜĀ³"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
msgstr "„»„­„å„¢ĄÜĀ³"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
msgstr "„Ļ”¼„É„Ē„£„¹„Ƥ«¤éÉüøµ¤¹¤ė"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr "„Š„Ć„Æ„¢„ƄפĪŹŻĀø„Ē„£„ģ„Æ„Č„ź¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
msgstr "Éüøµøµ¤Ī„į„Ē„£„¢¤ņĮŖ¤Ó¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
msgstr "¤½¤ĪĀ¾„į„Ē„£„¢"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
msgstr "„·„¹„Ę„ąÉüøµ"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
msgstr "„ę”¼„¶Éüøµ"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
msgstr "¤½¤ĪĀ¾„Õ„”„¤„ė¤ņÉüøµ"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
msgstr "Éüøµ„Ń„¹¤ņĮŖ¤Ö”Ź/°Ź³°)"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "ÉüøµĮ°¤Ėæ·µ¬„Š„Ć„Æ„¢„ƄהŹ„¤„ó„Æ„ź„į„ó„æ„ė„Š„Ć„Æ„¢„ƄפĪ¤ß”Ė"
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr "ÉüøµĮ°¤Ė„ę”¼„¶„Ē„£„ģ„Æ„Č„ź¤ņŗļ½ü"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr "Į“„Š„Ć„Æ„¢„ƄפĪÉüøµ"
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
msgstr "„«„¹„æ„ąÉüøµ"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
msgstr "¤ā¤É¤ė"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ŹŻĀø"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
msgstr "„Š„Ć„Æ„¢„Ć„×¹½ĆŪ"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
msgstr "Éüøµ"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "¼”"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10397,9 +10811,9 @@ msgstr ""
"Éüøµ¤¹¤ė¤Ė¤Ļ„Š„Ć„Æ„¢„Ƅפņ¤Ž¤ŗ¹½ĆŪ¤·¤Ę¤Æ¤Ą¤µ¤¤...\n"
"¤¢¤ė¤¤¤ĻŹŻĀøĄč„Ń„¹¤ĻĄµ¤·¤¤¤Ē¤¹¤«”©"
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
@@ -10407,14 +10821,14 @@ msgstr ""
" Źó¹š„į”¼„ė¤ĻĮ÷殤Ē¤­¤Ž¤»¤ó\n"
" sendmail¤ņĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "°Ź²¼¤Ī„Ń„Ć„±”¼„ø¤¬„¤„ó„¹„Č”¼„ė¤µ¤ģ¤Ž¤¹"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10423,19 +10837,19 @@ msgstr ""
"FTP¤Ē¤Ī„Õ„”„¤„ėžĮ÷Ćę¤Ė„؄锼.\n"
"FTP ĄßÄź¤ņ¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
msgstr "Éüøµ„Ē”¼„æ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤¤Ķ”£"
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
msgstr "„Š„Ć„Æ„¢„Ć„×ĶŃ„į„Ē„£„¢¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤¤Ķ”£"
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
msgstr "„Š„Ć„Æ„¢„Ƅפ¹¤ė„Ē”¼„æ¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10443,75 +10857,60 @@ msgstr ""
"ĄßÄź„Õ„”„¤„ė¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó\n"
"„¦„£„¶”¼„ɤ«¾åµé¤ņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr "¤Ž¤Ą³«ČÆĆę...ĀŌ¤Ć¤Ę¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
msgstr "„·„¹„Ę„ą„Õ„”„¤„ė¤ņ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
msgstr "„ę”¼„¶„Õ„”„¤„ė¤ņ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
msgstr "¤½¤ĪĀ¾„Õ„”„¤„ė¤ņ„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr "Į“ĀĪ¤ĪæŹ¹Ō¾õ¶·"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr "FTP¤Ē„Õ„”„¤„ėĮ÷æ®Ćę"
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
msgstr "„Õ„”„¤„ėĮ÷æ®Ćę..."
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr "CDROM¤Ė“Ž¤į¤ė„Ē”¼„æ°ģĶ÷"
-
-#: ../../standalone/drakbackup_.c:3305
-msgid "Please enter the cd writer speed"
-msgstr "CD„鄤„攼¤ĪĀ®ÅŁ¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr "CD„鄤„æ¤Ī„Ē„Š„¤„¹Ģ¾¤ņĘžĪĻ”ŹĪć: 0,1,0)"
-
-#: ../../standalone/drakbackup_.c:3329
-msgid "Please check if you want to include install boot on your CD."
-msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
msgstr "ĄßÄź„Õ„”„¤„ė¤«¤éŗ£¤¹¤°„Š„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
msgstr "„Š„Ć„Æ„¢„ƄץßÄź¤ņø«¤ė"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
msgstr "„¦„£„¶”¼„ÉĄßÄź"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
msgstr "¾åµéĄßÄź"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
msgstr "ŗ£¤¹¤°„Ń„Ć„Æ„¢„Ć„×"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
+#, fuzzy
msgid ""
"options description:\n"
"\n"
@@ -10522,7 +10921,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10571,7 +10970,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10585,7 +10984,7 @@ msgstr ""
" /etc/postfix/main.cf¤Ī myhostname ¤« mydomain ¤ņĄßÄź¤·¤Ž¤¹”£\n"
"\n"
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10609,7 +11008,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10661,21 +11060,21 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10712,18 +11111,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
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:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10753,7 +11152,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
" Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10830,7 +11229,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10847,7 +11246,7 @@ msgstr ""
"Į°¤Ė”¢¤Ž¤ŗ„Ļ”¼„ɄɄ鄤„Ö¾å¤Ė„Š„Ć„Æ„¢„Ć„×¹½ĆŪ¤¬É¬ĶפĖ¤Ź¤ź¤Ž¤¹”£\n"
"\n"
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10868,7 +11267,7 @@ msgstr ""
"¤¹¤ė¤Ī¤Ē”¢¤¤¤Ž¤Ī„Ē”¼„æ¤ĻĮ“Éō¾Ć¤Ø¤Ž¤¹”£¤Ē¤¹¤«¤é”¢„Š„Ć„Æ\n"
"„¢„ƄׄĒ”¼„æ¤Ī„Õ„”„¤„ė¤Ļ¼ź¤Ē²žŹŃ¤·¤Ź¤¤¤Ū¤¦¤¬ø­ĢĄ¤Ē¤¹”£\n"
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10941,96 +11340,123 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ”£°Ź²¼¤Ī„؄锼¤¬ČÆĄø:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "„³„ó„½”¼„ė„Ä”¼„ė"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
#, fuzzy
msgid "HardDrake"
msgstr "„Ļ”¼„ɄɄ鄤„Ö¤Ų"
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Mandrake „³„󄵄ė„Ę„£„ó„°"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "MandrakeStore"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "„Ž„¦„¹"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "„ź„ā”¼„Ȅׄź„ó„æ"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "„·„§„¢Ģ¾"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "„Ķ„Ć„Č„ļ”¼„ÆĄßÄź„¦„£„¶”¼„É"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Ē§¾Ś"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "„Ń„Ć„±”¼„ø¤ņĮŖĀņ"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "¤ŖĀŌ¤Į²¼¤µ¤¤"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -11042,141 +11468,141 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "„¢„ó„¤„ó„¹„Č”¼„ėøå¤Īŗī¶Č"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "„Ż”¼„Č"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "„¢„ó„¤„ó„¹„Č”¼„ėøå¤Īŗī¶Č"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "%s ¤Ī„¤„ó„¹„Č”¼„ėøå¤Ė„¹„Æ„ź”¼„ó„·„ē„ƄȤ¬²ÄĒ½¤Ē¤¹"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "„Ķ„Ć„Č„ļ”¼„ÆĄßÄź (%d „¢„Ą„ׄæ)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "„ׄķ„Õ„£”¼„ė: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "„ׄķ„Õ„£”¼„ėŗļ½ü”Ä”Ä"
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "ŗļ½ü¤·¤æ¤¤„ׄķ„Õ„£”¼„ė”§"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "æ·µ¬„ׄķ„Õ„£”¼„ė”Ä”Ä"
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr "ŗīĄ®¤¹¤ė„ׄķ„Õ„£”¼„ė¤ĪĢ¾Į°”Źæ·„ׄķ„Õ„”„¤„ė¤Ļø½ŗߤĪ¤ā¤Ī¤Ī„³„Ō”¼¤Ē¤¹”Ė”§"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "„Ū„¹„ČĢ¾:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "„¤„ó„攼„Ķ„Ć„Č"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "„愤„×: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "„²”¼„Č„¦„§„¤:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "„¤„ó„攼„Õ„§”¼„¹:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "„¹„Ę”¼„愹: "
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "¾Æ”¹¤ŖĀŌ¤Į¤ņ"
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "„¤„ó„攼„Ķ„Ć„Č„¢„Æ„»„¹¤ĪĄßÄź"
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN¤ĪĄßÄź"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "„Ʉ鄤„Š"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "„¤„ó„攼„Õ„§”¼„¹"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "„ׄķ„Č„³„ė"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "¾õĀÖ"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "LAN ĄßÄź”Ä”Ä"
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "„¦„£„¶”¼„ɤĪµÆĘ°¤Ė¤Ļ¤³¤Į¤é¤ņ„Æ„ź„Ć„Æ -->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "„¦„£„¶”¼„É..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "ŬĶŃ"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "¾Æ”¹¤ŖĀŌ¤Į¤ņ”ĔĥßÄź¤ņŬĶѤ·¤Ę¤¤¤Ž¤¹"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "ĄÜĀ³“°Ī»"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "ĄÜĀ³¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "ĄÜĀ³”Ä”Ä"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "ĄÜĀ³¤ņĄŚĆĒ”Ä”Ä"
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
@@ -11184,7 +11610,7 @@ msgstr ""
"·Ł¹š”¢ŹĢ¤Ī„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤¬ø”½Š¤µ¤ģ¤Ž¤·¤æ”£„Ķ„Ć„Č„ļ”¼„ƤĻ»ČĶŃĆ꤫¤ā¤·¤ģ¤Ž"
"¤»¤ó"
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -11192,36 +11618,36 @@ msgstr ""
"ĄßÄźŗѤߤĪ„¤„ó„攼„Õ„§”¼„¹¤¬¤¢¤ź¤Ž¤»¤ó”£\n"
"”ÖĄßÄź”פņ„Æ„ź„Ć„Æ¤·¤Ę¤Ž¤ŗ¤½¤ģ¤é¤ņĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN¤ĪĄßÄź"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "„¢„Ą„ׄæ %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "„Ö”¼„Ȅׄķ„Č„³„ė"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "µÆĘ°»ž¤Ė³«»Ļ"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP „Ƅ鄤„¢„ó„Č"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "¤¤¤Ž¤¹¤°Ķ­øś¤Ė"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "¤¤¤Ž¤¹¤°Ģµøś¤Ė"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
@@ -11229,7 +11655,7 @@ msgstr ""
"¤³¤Ī„¤„ó„攼„Õ„§”¼„¹¤Ļ¤Ž¤ĄĄßÄź¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó”£\n"
"¼ē„¦„£„ó„É„¦¤ĒĄßÄź„¦„£„¶”¼„ɤņµÆĘ°¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -11237,123 +11663,123 @@ msgstr ""
"„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤¬¤¢¤ź¤Ž¤»¤ó”£\n"
"”ÖĄßÄź”פņ„Æ„ź„Ć„Æ¤·¤ĘŗīĄ®¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³ĄßÄź"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³ĄßÄź"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "ĄÜĀ³¤Ī¼ļĪą: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "„Ń„é„į”¼„æ"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "„²”¼„Č„¦„§„¤"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "„¤”¼„µ„Ķ„Ć„Č„«”¼„É"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP „Ƅ鄤„¢„ó„Č"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "»Č¤¤Źż”§drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
"-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,-misc-fixed-medium-r-normal--14-*-"
"75-75-c-*-jisx0208.1983-0,*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "„ā„ø„唼„ėĢ¾"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "„µ„¤„ŗ"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "„Ö”¼„Č„Ē„£„¹„ÆŗīĄ®"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "„Ē„Õ„©„ė„Č"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy„؄锼”§ %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "„«”¼„Ķ„ė„Š”¼„ø„ē„ó"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "°ģČĢ"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "„Ø„­„¹„Ń”¼„Čøž¤±"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrd ÄÉ²Ć¤Ī°śæō"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "„ā„ø„唼„ėÄɲĆ"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "¶ÆĄ©"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ɬĶפŹ¾ģ¹ē¤Ī¤ß"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "scsi „ā„ø„唼„ė¤ĻČō¤Š¤¹"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "raid „ā„ø„唼„ė¤ĻČō¤Š¤¹"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "„ā„ø„唼„ė¤Īŗļ½ü"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "½ŠĪĻ"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "„Ē„£„¹„ƤņŗīĄ®"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "„Ē„Š„¤„¹ %s ¤Ė„į„Ē„£„¢¤ĻĘž¤Ć¤Ę¤¤¤Ž¤¹¤«”©"
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11362,12 +11788,12 @@ msgstr ""
"„Ē„Š„¤„¹ %s¤Ī„į„Ē„£„¢¤¬¤¢¤ź¤Ž¤»¤ó”£\n"
"„»„ƄȤ·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "%s ¤ņ„Õ„©”¼„ƤĒ¤­¤Ž¤»¤ó"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11378,99 +11804,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr "„¤„ó„¹„Č”¼„ėŗŃ¤ß„Õ„©„ó„Ȥņø”ŗ÷"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr "„¤„ó„¹„Č”¼„ėŗŃ¤ß„Õ„©„ó„ȤņĮŖĀņ¤·¤Ź¤¤"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr "¤¹¤Ł¤Ę¤Ī„Õ„©„ó„Ȥņ„Į„§„Ć„Æ"
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
msgstr "„Õ„©„ó„Ȥ¬ø«¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "“°Ī»"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr "„Ž„¦„ó„Ȥµ¤ģ¤æ„Ń”¼„Ę„£„·„ē„ó¤Ė¤Ļ„Õ„©„ó„Ȥ¬ø«¤Ä¤«¤ź¤Ž¤»¤ó"
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr "Ąµ¤·¤¤„Õ„©„ó„ȤņĮŖ¤Óľ¤¹"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr "„Õ„©„ó„Ȥ¬ø«¤Ä¤«¤ź¤Ž¤»¤ó”£\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr "„¤„ó„¹„Č”¼„ėŗѤ߰ģĶ÷¤«¤é„Õ„©„ó„ȤņƵ¤¹"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
msgstr "„Õ„©„ó„Ȥņ„³„Ō”¼"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
msgstr "True Type „Õ„©„ó„ȤĪ„¤„ó„¹„Č”¼„ė"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr "ttmkfdir Ćꤏ¤Ī¤Ē¾Æ”¹¤ŖĀŌ¤Į¤ņ..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr "True Type „¤„ó„¹„Č”¼„ė“°Ī»"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr "„Õ„©„ó„ČŹŃ“¹"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr "type1inst ¹½ĆŪĆę"
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr "Ghostscript »²¾ČĆę"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr "ttf „Õ„©„ó„ČŹŃ“¹"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr "pfm „Õ„©„ó„ČŹŃ“¹"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr "°ģ»ž„Õ„”„¤„ė¤ņŗī¤é¤Ź¤¤"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
msgstr "XFS ŗʵÆĘ°"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr "„Õ„©„ó„Č„Õ„”„¤„ė¤ņŗī¤é¤Ź¤¤"
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
msgstr "xfs ŗʵÆĘ°"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -11484,107 +11910,111 @@ msgstr ""
"-„Õ„©„ó„ȤņÄĢ¾ļ¤Ī¤ä¤źŹż¤Ē„¤„ó„¹„Č”¼„ė¤Ē¤­¤Ž¤¹”£¤Č¤­¤É¤­”¢¤Ŗ¤«¤·¤Ź„Õ„©„ó„ȤĒ "
"X „µ”¼„Š¤¬„Ļ„ó„°¤¹¤ė¾ģ¹ē¤¬¤¢¤ź¤Ž¤¹”£"
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
msgstr "„Õ„©„ó„ČĘɤ߹ž¤ß"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr "„¦„£„ó„É„¦„ŗ¤Ī„Õ„©„ó„Ȥņ¼č¤Ć¤Ę¤Æ¤ė"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
msgstr "„Õ„©„ó„ȤĪ„¢„ó„¤„ó„¹„Č”¼„ė"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "¾åµé„Ŗ„ׄ·„ē„ó"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
msgstr "„Õ„©„ó„Č°ģĶ÷"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
msgstr "¤³¤Ī„Õ„©„ó„Ȥņ„µ„Ż”¼„Ȥ¹¤ė„¢„ׄź„±”¼„·„ē„ó¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤:"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "°ģČĢ„ׄź„ó„æ"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr "„Õ„©„ó„Č„Õ„”„¤„ė¤«„Ē„£„ģ„Æ„Č„ź¤ņĮŖ¤ó¤Ē”ÖÄÉ²Ć”×¤ņ„Æ„ź„Ć„Æ"
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "°ģĶ÷¤Ī„¤„ó„¹„Č”¼„ė"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr "¤Ž¤Į¤¬¤¤¤Ź¤±¤ģ¤Š„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr "„Ą„į¤Ź¤é¤³¤Į¤é¤ņ"
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr "¤¹¤Ł¤Ę¤ņČóĮŖĀņ¤Ė"
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
msgstr "¤¹¤Ł¤Ę¤ņĮŖĀņ"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "°ģĶ÷¤ņŗļ½ü"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr "„¤„Ė„·„ć„ė„Ę„¹„Č"
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
msgstr "„·„¹„Ę„ą¾å¤Ī„Õ„©„ó„Ȥņ„³„Ō”¼"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr "„Õ„©„ó„ȤĪ„¤„ó„¹„Č”¼„ė¤ČŹŃ“¹"
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
msgstr "„¤„ó„¹„Č”¼„ėøå¤Īŗī¶Č"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
msgstr "„·„¹„Ę„ą¤«¤é„Õ„©„ó„Ȥņŗļ½ü"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
msgstr "„¢„ó„¤„ó„¹„Č”¼„ėøå¤Īŗī¶Č"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤Ī¶¦Ķ­"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¶¦Ķ­¤Ļø½ŗßĶ­øś"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -11596,31 +12026,31 @@ msgstr ""
"\n"
"¤É¤¦¤·¤Ž¤¹¤«”©"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "Ģµøś¤Ė"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Ģµ»ė"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "ŗĘĄßÄź"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "„µ”¼„Š¤ņĢµøś¤Ė¤·¤Ę¤¤¤Ž¤¹”Ä”Ä"
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¶¦Ķ­¤ĻĢµøś¤Ė¤Ź¤ź¤Ž¤·¤æ”£"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¶¦Ķ­¤Ļø½ŗßĢµøś¤Ē¤¹"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -11632,19 +12062,19 @@ msgstr ""
"\n"
"¤É¤¦¤·¤Ž¤¹¤«”©"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "Ķ­øś¤Ė"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "„µ”¼„Š¤ņĶ­øś¤Ė¤·¤Ę¤¤¤Ž¤¹”Ä”Ä"
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¶¦Ķ­¤¬Ķ­øś¤Ē¤¹”£"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -11659,21 +12089,21 @@ msgstr ""
"Ćķ”§„ķ”¼„«„ė„Ø„ź„¢„Ķ„Ć„Č„ļ”¼„Æ (LAN) ¤ņ¤Ä¤Æ¤ė¤Ė¤Ļ”¢ĄģĶѤĪ„Ķ„Ć„Č„ļ”¼„Æ„¢„Ą„ׄæ"
"¤¬Ķפź¤Ž¤¹”£"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "„¤„ó„攼„Õ„§”¼„¹ %s („ā„ø„唼„ė %s ¤ņ»ČĶŃ)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "„¤„ó„攼„Õ„§”¼„¹ %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„¢„Ą„ׄ椬¤¢¤ź¤Ž¤»¤ó”Ŗ"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -11681,11 +12111,11 @@ msgstr ""
"„·„¹„Ę„ą¾å¤Ė„¤”¼„µ„Ķ„Ć„Č„¢„Ą„ׄ椬ø«¤Ä¤«¤ź¤Ž¤»¤ó”£ „Ļ”¼„É„¦„§„¢ĄßÄź„Ä”¼„ė¤ņ¼Ā"
"¹Ō¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„¤„ó„攼„Õ„§„¤„¹"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -11700,7 +12130,7 @@ msgstr ""
"\n"
"¤³¤Ī„¢„Ą„ׄæ¤Ē LAN ¤ĖĄÜĀ³¤·¤Ž¤¹¤Ķ”£"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -11708,11 +12138,11 @@ msgstr ""
"„ķ”¼„«„ė„Ø„ź„¢„Ķ„Ć„Č„ļ”¼„ƤĖ¤Ä¤Ź¤¬¤ė„Ķ„Ć„Č„ļ”¼„Æ„¢„Ą„ׄæ¤ņ\n"
"ĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
msgstr "„Ķ„Ć„Č„ļ”¼„Æ„¤„ó„攼„Õ„§”¼„¹¤ĻĄßÄźŗѤߤĒ¤¹ĄßÄź¤µ¤ģ¤Ę¤Ž¤»¤ó"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -11727,15 +12157,15 @@ msgstr ""
"\n"
"¼źĘ°¤Ē¤ä¤ė¤³¤Č¤ā¤Ē¤­¤Ž¤¹¤¬”¢¤½¤ģ¤Ź¤ź¤ĪĆĪ¼±¤¬É¬ĶפĒ¤¹¤č”£"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
msgstr "¼«Ę°ŗĘĄßÄź"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
msgstr "ø½ŗߤĪ„¤„ó„攼„Õ„§”¼„¹ĄßÄź¤ņɽ¼Ø"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11752,7 +12182,7 @@ msgstr ""
"IP Ā°Ą­: %s\n"
"„Ʉ鄤„Š: %s"
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11770,32 +12200,32 @@ msgstr ""
"¤¢¤ė¤¤¤Ļ”¢¤³¤Į¤é¤Ē„¤„ó„攼„Õ„§”¼„¹¤ČDHCP„µ”¼„Š¤ĪĄßÄź¤ņ¤ä¤ė¤³¤Č¤ā¤Ē¤­¤Ž¤¹”£\n"
"\n"
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr "C„Ƅ鄹„ķ”¼„«„ė„Ķ„Ć„Č„ļ”¼„Æ"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
msgstr "”Ź¤³¤Ī”ĖDHCP „µ”¼„Š¤Ī IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr "„¤„ó„攼„Õ„§”¼„¹¤ČDHCP„µ”¼„Š¤ĪŗĘĄßÄź"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "„ķ”¼„«„ė„Ķ„Ć„Č„ļ”¼„Ƥ¬”Ö.0”פĒ½Ŗ¤ļ¤Ć¤Ę¤¤¤Ž¤»¤ó”£ĆęĆĒ¤·¤Ž¤¹”£"
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "ø½ŗߤĪ %s ¤ĪĄßÄź¤Ē¤ĻLAN„¢„É„ģ„¹¤¬¾×ĘĶ¤¹¤ė¤«¤ā¤·¤ģ¤Ž¤»¤ó”Ŗ\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "„Õ„”„¤„¢„¦„©”¼„ė¤ĪĄßÄź¤ņø”½Š”Ŗ"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11803,20 +12233,20 @@ msgstr ""
"·Ł¹š”Ŗ“ūĀø„Õ„”„¤„䄦„©”¼„ė¤ĪĄßÄź¤ņø”½Š”£\n"
"„¤„ó„¹„Č”¼„ėøå¤Ė”¢¼źĘ°¤Ē½¤Ąµ¤¬Ķפė¤«šā¤·¤ģ¤Ž¤»¤ó”£"
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "ĄßÄźĆę..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "„¹„Æ„ź„ׄȤĪĄßÄź”¢„½„Õ„Č„¦„§„¢¤Ī„¤„ó„¹„Č”¼„ė”¢„µ”¼„Š¤ĪµÆĘ°..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "„Ń„Ć„±”¼„ø %s ¤Ī„¤„ó„¹„Č”¼„ė¤ĒĢäĀźČÆĄø"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11826,23 +12256,23 @@ msgstr ""
"¤³¤ģ¤Ē¼«Ę°„Ķ„Ć„Č„ļ”¼„ÆĄßÄź”Źdhcp) ¤ņ»Č¤Ć¤Ę”¢LAN ¾å¤ĪĀ¾¤Ī„Ž„·„ó¤Č„¤„ó„攼„Ķ„Ć"
"„ČĄÜĀ³¤ņ¶¦Ķ­¤Ē¤­¤Ž¤¹”£"
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "ĄßÄź¤Ļ¤¹¤ó¤Ē¤¤¤Ž¤¹¤¬”¢¤¤¤Ž¤ĻĢµøś¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "ĄßÄź¤Ļ¤¹¤ó¤Ē¤¤¤Ę”¢¤¤¤Ž¤ĻĶ­øś¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£"
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¶¦Ķ­¤Ļ¤Ž¤Ć¤æ¤ÆĄßÄź¤µ¤ģ¤Ę¤¤¤Ž¤»¤ó”£"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "„¤„ó„攼„Ķ„Ć„ČĄÜĀ³¤ĪĄßÄź"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11857,20 +12287,13 @@ msgstr ""
"\n"
"ĄßÄź„¦„£„¶”¼„ɤņµÆĘ°¤¹¤ė¤Ė¤Ļ”ÖĄßÄź”פņ„Æ„ź„Ć„Æ¤·¤Ž¤·¤ē¤¦”£"
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "„³„ó„Č„ķ”¼„ė„»„ó„攼"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "»ČĶѤ¹¤ė„Ä”¼„ė¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11879,71 +12302,75 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "„«„Ź„Ą”Ź„±”¼„Ö„ė”Ė"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "USA („±”¼„Ö„ė)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "USA („±”¼„Ö„ė-hrc)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "China (broadcast)"
msgstr "Ćę¹ń (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
#, fuzzy
msgid "Japan (broadcast)"
msgstr "ĘüĖÜ (bcast)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "ĘüĖÜ („±”¼„Ö„ė)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "Åģ„č”¼„ķ„Ć„Ń"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "„Õ„é„ó„¹"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "„¢„¤„ė„é„ó„É"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "Ą¾„č”¼„ķ„Ć„Ń"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "„Ŗ”¼„¹„Č„é„ź„¢"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "„Ė„唼„ø”¼„é„ó„É"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "Ęī„¢„Õ„ź„«"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "„¢„ė„¼„ó„Į„ó"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11951,36 +12378,36 @@ msgstr ""
"¤Ē¤Ļ\n"
"„Ę„ģ„ÓŹż¼°¤Č¹ń¤ņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr "„Ę„ģ„ÓŹż¼°”§"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "ĆĻ°č”§"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr "„Ę„ģ„Ó„Į„ć„ó„Ķ„ė¤ņƵ¤·¤Ę¤¤¤Ž¤¹..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr "„Ę„ģ„Ó„Į„ć„ó„Ķ„ė¤ņƵ¤·¤Ę¤¤¤Ž¤¹"
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ė¤Ē„؄锼¤¬ČÆĄø:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -12004,11 +12431,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "»Č¤¤Źż: keyboarddrake [--expert] [„­”¼„Ü”¼„É]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "„­”¼„Ü”¼„É„ģ„¤„¢„¦„ȤĻ²æ¤Ē¤¹¤«”©"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "BackSpace„­”¼¤¬„³„ó„½”¼„ė¤Ē¾Ćµī¤ņ¤¹¤ė¤č¤¦¤Ė¤·¤Ž¤¹¤«”©"
@@ -12032,7 +12459,7 @@ msgstr "„鄤„Ö„¢„Ƅׄ°„ģ”¼„ɤņ³«»Ļ¤Ē¤­¤Ž¤»¤ó!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "ŹŃ¹¹¤¬“°Ī»¤·¤Ž¤·¤æ¤¬”¢Ķ­øś¤Ė¤¹¤ė¤Ė¤Ļ¤¤¤Ć¤æ¤ó„ķ„°„¢„¦„Ȥ·¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "logdrake"
@@ -12144,22 +12571,25 @@ msgstr "„«„ģ„ó„Ą"
msgid "Content of the file"
msgstr "„Õ„”„¤„ė¤ĪĘāĶĘ"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+#, fuzzy
+msgid "Mail alert"
msgstr "Mail/SMS ·Ł¹š"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "¾Æ”¹¤ŖĀŌ¤Į¤ņ”¢„Õ„”„¤„ė %s ¤ņƵ¤·¤Ę¤¤¤Ž¤¹”£"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
+#: ../../standalone/logdrake_.c:408
+#, fuzzy
+msgid "Mail alert configuration"
msgstr "Mail/SMS ·Ł¹š¤ĪĄßÄź"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
+#, fuzzy
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
@@ -12167,122 +12597,123 @@ msgstr ""
"\n"
"¤³¤³¤Ē¤Ļ·Ł¹š„·„¹„Ę„ą¤ņĄßÄź¤·¤Ž¤¹”£\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "„É„į„¤„óĢ¾"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS „µ”¼„Š"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Postfix „į”¼„ė„µ”¼„Š, Inn „Ė„唼„¹„µ”¼„Š"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS „µ”¼„Š"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS „µ”¼„Š"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "„µ”¼„Ó„¹"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "„ׄź„ó„愵”¼„Š"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "„µ”¼„Ó„¹ĄßÄź"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "°Ź²¼¤ĒĮŖ¤ó¤Ą„µ”¼„Ó„¹¤¬»ß¤Ž¤Ć¤æ¤é·ŁŹó¤¬½Š¤Ž¤¹”£"
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "ĄßÄź¤ĪĘɤ߹ž¤ßĆę"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr "Éé²Ł¤¬¤³¤ĪĆĶ¤ņ¾å²ó¤Ć¤æ¤é·ŁŹó¤¬½Š¤Ž¤¹"
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "·Ł¹š¤ĪĄßÄź"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr "„·„¹„Ę„ą¤Ī·Ł¹šŹżĖ”¤ņĄßÄź"
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "„Ń„¹„ļ”¼„ɤņĘžĪĻ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Ģ¾Į°¤ņ¤Ä¤±¤ĘŹŻĀø..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "„Ž„¦„¹¤Ī·æ¤Ļ¤Ź¤ó¤Ē¤¹¤«”©"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_usb¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "ææĆę„Ü„æ„ó¤ņ„Ø„ß„å„ģ”¼„Ȥ·¤Ž¤¹¤«”©"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "„ׄź„ó„æ¤Ī¾šŹó¤ņĘɤó¤Ē¤¤¤Ž¤¹..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "„Ē„Š„¤„¹¤Īø”½ŠĆę¤Ē¤¹”Ä”Ä"
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "„Ż”¼„ȤĪ„Ę„¹„Č"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr "%s ¤¬ %s ¤Ēø«¤Ä¤«¤ź¤Ž¤·¤æ”£ĄßÄź¤·¤Ž¤¹¤«?"
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
msgstr "„¹„­„ć„Ź¤ņĮŖĀņ¤·¤Ę²¼¤µ¤¤"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr "¤³¤Ī %s „¹„­„ć„Ź¤Ļ„µ„Ż”¼„Ȥµ¤ģ¤Ę¤¤¤Ž¤»¤ó"
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "„Ö”¼„Č„Ē„Š„¤„¹"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, fuzzy, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -12292,7 +12723,7 @@ msgstr ""
"printerdrake ¤ĪµÆĘ°¤Ļ”¢Mandrake „³„ó„Č„ķ”¼„ė„»„ó„攼¤Ī„Ļ”¼„É„¦„§„¢¤Ī¹ą¤Ē¹Ō¤Ć"
"¤Ę¤Æ¤Ą¤µ¤¤”£"
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -12312,15 +12743,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "„Õ„”„¤„¢„¦„©”¼„ė¤ĪĄßÄź"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "„Õ„”„¤„¢„¦„©”¼„ė¤ĪĄßÄź"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -12332,7 +12763,7 @@ msgstr ""
"¤¹¤Ē¤Ė„Õ„”„¤„¢”¼„¦„©”¼„ė¤ĻĄßÄźŗѤߤĒ¤¹”£\n"
"¤½¤ģ¤ņŹŃ¹¹”¦ŗļ½ü¤¹¤ė¤Ė¤Ļ”ÖĄßÄź”פņ„Æ„ź„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤"
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -12578,48 +13009,48 @@ msgstr "%s ¤¬³«¤±¤Ž¤»¤ó: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "½ń¤­¹ž¤ßĶѤĖ %s ¤¬³«¤±¤Ž¤»¤ó: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr "DHCP ¤Ļ»Č¤ļ¤Ź¤¤"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr "DHCP ¤ņ»Č¤¦"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr "NTP ¤Ļ¤¤¤é¤Ź¤¤"
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr "NTP¤ņ»Č¤¦"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr "ŹŻĀø¤·¤Ź¤¤"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr "ŹŻĀø¤·¤Ę½ŖĪ»"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
msgstr "„Õ„”„¤„¢”¼„¦„©”¼„ėĄßÄź„¦„£„¶”¼„É"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr "¤¤¤¤¤Ø”Ź¤³¤ģ¤ņ„¤„ó„攼„Ķ„ƄȤ«¤éĖÉøę”Ė"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr "¤Ļ¤¤”Ź„Õ„”„¤„¢”¼„¦„©”¼„ė¤ņÄĢ¤¹”Ė"
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
msgstr "¾Æ”¹¤ŖĀŌ¤Į¤ņ...„¤„ó„¹„Č”¼„ėŗѤ߄Š„Ć„±”¼„ø¤ņ³ĪĒ§Ćę"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
@@ -12628,6 +13059,12 @@ msgstr ""
"ɬĶׄфƄ±”¼„ø¤Ī„¤„ó„¹„Č”¼„ė¤Ė¼ŗĒŌ¤·¤Ž¤·¤æ : %s ¤Č Bastille.\n"
"¼źĘ°¤Ē„¤„ó„¹„Č”¼„ė¤·¤Ę¤ß¤Ę¤Æ¤Ą¤µ¤¤”£"
+#: ../../ugtk.pm_.c:619
+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-"
+"normal--24-*-100-100-c-*-jisx0208.1983-0,*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "„µ”¼„Š”¢Web/FTP"
@@ -12677,6 +13114,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "„Ŗ”¼„Ē„£„Ŗ“ŲĻ¢„Ä”¼„ė”§mp3, midi, „ß„­„µ”¼¤Ź¤É"
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Linux ¤ä„Õ„ź”¼„½„Õ„Č“ŲĻ¢¤ĪĖܤä„Ļ„¦„Ä”¼Źø½ń"
@@ -12763,10 +13204,6 @@ msgid "Office Workstation"
msgstr "„Ŗ„Õ„£„¹„ļ”¼„Æ„¹„Ę”¼„·„ē„ó"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "„µ”¼„Š"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm ¤Ź¤É"
@@ -12828,6 +13265,10 @@ msgid "Clients for different protocols including ssh"
msgstr "ssh ¤Ź¤É³Ę¼ļ„ׄķ„Č„³„ėĶŃ„Æ„é„¤„¢„ó„Č"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "„¤„ó„攼„Ķ„Ć„Č„²”¼„Č„¦„§„¤"
@@ -12859,6 +13300,194 @@ msgstr "„Ž„ė„Į„į„Ē„£„¢””CD ¤ņ¾Ę¤Æ"
msgid "Scientific Workstation"
msgstr "²Ź³Ų„ļ”¼„Æ„¹„Ę”¼„·„ē„ó"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "¤³¤Ī„ģ„Ł„ė¤ņ»Č¤¦¤Ź¤éĆķ°Õ¤¬É¬ĶפĒ¤¹”£„·„¹„Ę„ą¤ņ»Č¤¦¤Ī¤Ļ“ŹĆ±¤Ė¤Ź¤ź¤Ž¤¹¤¬”¢\n"
+#~ "¤Ą¤ģ¤Ė¤Ē¤ā„¢„Æ„»„¹¤Ē¤­¤Ę¤·¤Ž¤¤¤Ž¤¹”£Ā¾¤Ī„Ž„·„ó¤ä„¤„ó„攼„Ķ„Ć„Č\n"
+#~ "¤Ė¤Ä¤Ź¤¬¤Ć¤æ„Ž„·„ó¤Ē¤Ļ»Č¤ļ¤Ź¤¤¤Ē¤Æ¤Ą¤µ¤¤”£„Ń„¹„ļ”¼„ÉĄ©øĀ¤ā¤¢¤ź¤Ž¤»¤ó”£"
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "¤³¤Ī„»„­„å„ź„Ę„£„ģ„Ł„ė¤Ą¤Č”¢„·„¹„Ę„ą¤ņ„µ”¼„Š¤Č¤·¤Ę»Č¤Ø¤ė¤č¤¦¤Ė¤Ź¤ź¤Ž¤¹”£\n"
+#~ "Āææō¤Ī„Ƅ鄤„¢„ó„Ȥ«¤éĄÜĀ³¤ņ¼õ¤±¤ė„µ”¼„Š¤Č¤·¤Ę¤ā»Č¤Ø¤ė¤Ą¤±¤Ī„»„­„å„ź„Ę„£\n"
+#~ "æå½ą¤Ė¤Ź¤Ć¤Ę¤¤¤Ž¤¹”£Ćš”§¤¢¤Ź¤æ¤Ī„Ž„·„󤬄¤„ó„攼„Ķ„Ć„Č¾å¤Ī„Ƅ鄤„¢„ó„ČĄģĶŃ"
+#~ "¤Ź¤é”¢¤ā¤Ć¤ČÄ椤„ģ„Ł„ė¤ņĮŖ¤ó¤Ą¤Ū¤¦¤¬¤¤¤¤¤Ē¤¹¤č”£"
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "„Ŗ„ׄ·„ē„ó"
+
+#, fuzzy
+#~ 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 erase your CDRW before"
+#~ msgstr "¤Ž¤ŗ CDRW ¤ņ¾Ćµī¤¹¤ė¾ģ¹ē¤Ė¤Ļ¤³¤³¤ņ„Æ„ź„Ć„Æ"
+
+#~ msgid "Please enter your CD Writer device name (ex: 0,1,0)"
+#~ msgstr "CD„鄤„æ¤Ī„Ē„Š„¤„¹Ģ¾¤ņĘžĪĻ”ŹĪć: 0,1,0)"
+
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "„¤„ó„¹„Č”¼„ė¤·¤æ¤¤„Ń„Ć„±”¼„ø¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
+
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Url ¤Ļ ftp://... ¤Ē¤Ļ¤ø¤Ž¤ź¤Ž¤¹"
+
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr ""
+#~ "CD ¤ĖµÆĘ°ĶѤĪboot¤ņ“Ž¤į¤ė¤Ź¤é\n"
+#~ "„Į„§„Ć„Æ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+
+#, fuzzy
+#~ msgid "Windows PDC"
+#~ msgstr "Windows (FAT32)"
+
+#, fuzzy
+#~ msgid "PDC Server Name"
+#~ msgstr "NTP „µ”¼„Š"
+
+#~ msgid ""
+#~ "\n"
+#~ "Welcome to the Printer Setup Wizard\n"
+#~ "\n"
+#~ "This wizard will help you to install your printer(s) connected to this "
+#~ "computer.\n"
+#~ "\n"
+#~ "Please plug in your printer(s) on this computer and turn it/them on. "
+#~ "Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+#~ "want to set up your printer(s) now.\n"
+#~ "\n"
+#~ "Note that some computers can crash during the printer auto-detection, "
+#~ "turn off \"Auto-detect printers\" to do a printer installation without "
+#~ "auto-detection. Use the \"Expert Mode\" of printerdrake when you want to "
+#~ "set up printing on a remote printer if printerdrake does not list it "
+#~ "automatically."
+#~ msgstr ""
+#~ "\n"
+#~ "„ׄź„ó„æĄßÄź„¦„£„¶”¼„ɤŲ¤¤¤é¤Ć¤·¤ć”Į¤¤\n"
+#~ "\n"
+#~ "¤³¤Ī„¦„£„¶”¼„ɤĻ”¢ĄÜĀ³¤µ¤ģ¤æ„ׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤ņ¤Ŗ¼źÅĮ¤¤¤·¤Ž¤¹”£\n"
+#~ "\n"
+#~ "„ׄź„ó„æ¤ņ„³„ó„Ō„唼„æ¤Ė¤Ä¤Ź¤¤¤ĒÅÅø»¤ņĘž¤ģ¤Ę¤Æ¤Ą¤µ¤¤”£½ąČ÷¤¬¤Ē¤­¤æ¤é”Ö¼””×"
+#~ "¤ņ\n"
+#~ "„Æ„ź„Ć„Æ¤¹¤ė¤«”¢¤¤¤Ž¤ĻĄßÄź¤·¤æ¤Æ¤Ź¤±¤ģ¤Š \"„­„ć„ó„»„ė\" ¤ņ„Æ„ź„Ć„Æ¤·¤Ž"
+#~ "¤¹”£\n"
+#~ "\n"
+#~ "¤Ź¤Ŗ”¢°ģÉō¤Ī„³„ó„Ō„唼„æ¤Ļ„ׄź„ó„æ¼«Ę°ø”½ŠĆę¤Ė„Æ„é„Ć„·„夷¤Ž¤¹”£\n"
+#~ "¼«Ę°ø”½Š¤Ź¤·¤Ē„ׄź„ó„æĄßÄź¤ņ¤¹¤ė¤Ė¤Ļ”¢”քׄź„ó„æ¼«Ę°ø”½Š”פņ„Ŗ„Õ¤Ė¤·¤Ž"
+#~ "¤¹”£\n"
+#~ "¤Ž¤æprinterdrake ¤¬¼«Ę°ÅŖ¤Ė„ź„ā”¼„Ȅׄź„ó„æ¤ņø”½Š¤·¤Ź¤±¤ģ¤Š”¢\n"
+#~ "”Ö„Ø„­„¹„Ń”¼„Č„ā”¼„ɔפņ»Č¤Ć¤ĘĄßÄź¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+
+#~ msgid "Auto-Detection of Printers"
+#~ msgstr "„ׄź„ó„æ¤Ī¼«Ę°ø”½Š"
+
+#~ msgid ""
+#~ "Printerdrake is able to auto-detect your locally connected parallel and "
+#~ "USB printers for you, but note that on some systems the auto-detection "
+#~ "CAN FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do "
+#~ "it ON YOUR OWN RISK!\n"
+#~ "\n"
+#~ "Do you really want to get your printers auto-detected?"
+#~ msgstr ""
+#~ "Printerdrake ¤Ļ„ķ”¼„«„ė„ׄź„ó„æ¤ņ¼«Ę°ø”½Š¤Ē¤­¤Ž¤¹¤¬”¢°ģÉō¤Ī„·„¹„Ę„ą¤Ē¤Ļ\n"
+#~ "„·„¹„Ę„ą¤ņ„Õ„ź”¼„ŗ¤µ¤»¤Ę”¢„Õ„”„¤„ė„·„¹„Ę„ą¤ņ²õ¤·¤Ž¤¹”£²æ¤¬µÆ¤­¤Ę¤āĆĪ¤ź¤Ž¤»"
+#~ "¤ó¤č”Ŗ\n"
+#~ "\n"
+#~ "¤Ē”¢ĖÜÅö¤Ė„ׄź„ó„æ¤Ī¼«Ę°ø”½Š¤ņ¤·¤Ž¤¹¤«”©"
+
+#~ msgid "Set up printer manually"
+#~ msgstr "„ׄź„ó„æ¤ņ¼źĘ°¤ĒĄßÄź"
+
+#~ msgid ""
+#~ "Network printers can only be installed after the installation. Choose "
+#~ "\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
+#~ msgstr ""
+#~ "„Ķ„Ć„Č„ļ”¼„Ƅׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤Ļ”¢OS „¤„ó„¹„Č”¼„ėøå¤Ė¤·¤«¤Ē¤­¤Ž¤»"
+#~ "¤ó”£\n"
+#~ "„¤„ó„¹„Č”¼„ėøå¤ĖMandrake „³„ó„Č„ķ”¼„ė„»„ó„æ¤Ē”Ö„Ļ”¼„É„¦„§„¢”פĪĆę¤Ī\n"
+#~ "”քׄź„ó„æ”פņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤”£"
+
+#~ msgid ""
+#~ "To install network printers, click \"Cancel\", switch to the \"Expert Mode"
+#~ "\", and click \"Add a new printer\" again."
+#~ msgstr ""
+#~ "„Ķ„Ć„Č„ļ”¼„Ƅׄź„ó„æ¤Ī„¤„ó„¹„Č”¼„ė¤Ė¤Ļ”Ö„­„ć„ó„»„ė”פņ„Æ„ź„Ć„Æ¤·¤Ę\n"
+#~ "”Ö„Ø„­„¹„Ń”¼„Č„ā”¼„ɔפĖŹŃ¹¹¤·¤Ę¤«¤é”Öæ·µ¬„ׄź„ó„æ¤ĪÄÉ²Ć”×¤ņ„Æ„ź„Ć„Æ\n"
+#~ "¤·¤Ź¤Ŗ¤·¤Ę¤Æ¤Ą¤µ¤¤”£"
+
+#, fuzzy
+#~ msgid ""
+#~ "Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+#~ "1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP "
+#~ "LaserJet 2200?"
+#~ msgstr ""
+#~ "¤¢¤Ź¤æ¤Ī„ׄź„ó„æ¤Ļ”¢HPĄ½Āæµ”Ē½„Ē„Š„¤„¹ (OfficeJet, PSC, PhotoSmart, "
+#~ "LaserJet 1100/1200/1220/3200/3300 ¤Ī„¹„­„ć„Ź¤Ä¤­) ¤Ē¤¹¤«?"
+
+#~ msgid "Installing HPOJ package..."
+#~ msgstr "HPOJ „Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
+
+#~ msgid "Checking device and configuring HPOJ..."
+#~ msgstr "„Ē„Š„¤„¹¤ņ„Į„§„Ć„Æ¤·¤ĘHPOJ ¤ņ„¤„ó„¹„Č”¼„ėĆę..."
+
+#, fuzzy
+#~ msgid "Installing SANE packages..."
+#~ msgstr "SANE „Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
+
+#, fuzzy
+#~ msgid "Installing mtools packages..."
+#~ msgstr "„Ń„Ć„±”¼„ø¤Ī„¤„ó„¹„Č”¼„ėĆę..."
+
+#~ msgid "Scanning on your HP multi-function device"
+#~ msgstr "HP „Ž„ė„Įµ”Ē½„Ē„Š„¤„¹¤Ē„¹„­„ć„óĆę"
+
+#, fuzzy
+#~ msgid "Photo memory card access on your HP multi-function device"
+#~ msgstr "HP „Ž„ė„Įµ”Ē½„Ē„Š„¤„¹¤Ē„¹„­„ć„óĆę"
+
+#~ msgid "Making printer port available for CUPS..."
+#~ msgstr "„ׄź„ó„æ„Ż”¼„Ȥņ CUPS ĶѤĖÄó¶”Ćę..."
+
+#~ msgid "Control Center"
+#~ msgstr "„³„ó„Č„ķ”¼„ė„»„ó„攼"
+
+#~ msgid "Choose the tool you want to use"
+#~ msgstr "»ČĶѤ¹¤ė„Ä”¼„ė¤ņĮŖ¤ó¤Ē²¼¤µ¤¤"
+
+#~ msgid "Configure the way the system will alert you"
+#~ msgstr "„·„¹„Ę„ą¤Ī·Ł¹šŹżĖ”¤ņĄßÄź"
+
+#~ msgid "no serial_usb found\n"
+#~ msgstr "serial_usb¤¬ø«¤Ä¤«¤ź¤Ž¤»¤ó\n"
+
#~ msgid "fsck failed with exit code %d or signal %d"
#~ msgstr "fsck ¼ŗĒŌ”¢exit code %d ¤Ž¤æ¤Ļ signal %d"
@@ -12970,9 +13599,6 @@ msgstr "²Ź³Ų„ļ”¼„Æ„¹„Ę”¼„·„ē„ó"
#~ msgid "Setting security level"
#~ msgstr "„»„­„å„ź„Ę„£„ģ„Ł„ė¤ĪĄßÄźĆę"
-#~ msgid "Graphics card"
-#~ msgstr "„°„é„Õ„£„Ć„Æ„«”¼„É"
-
#~ msgid "Select a graphics card"
#~ msgstr "„°„é„Õ„£„Ć„Æ„«”¼„ɤņĮŖĀņ¤·¤Ę²¼¤µ¤¤"
@@ -13060,9 +13686,6 @@ msgstr "²Ź³Ų„ļ”¼„Æ„¹„Ę”¼„·„ē„ó"
#~ msgid "Percentage of packages to install"
#~ msgstr "„¤„ó„¹„Č”¼„ė¤¹¤ė„Ń„Ć„±”¼„øĆę¤Ī³ä¹ē"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "„»„­„å„ź„Ę„£¤Īæå½ą¤ņĮŖ¤ó¤Ē¤Æ¤Ą¤µ¤¤"
-
#~ msgid "hide expert mode"
#~ msgstr "„Ø„­„¹„Ń”¼„Č„ā”¼„ɤņ±£¤¹"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 5366696ef..f176b6a59 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -5,10 +5,10 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.42\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
-"PO-Revision-Date: 2001-08-23 20:00+0900\n"
-"Last-Translator: Jaegeum Choe <baedaron@hananet.net>\n"
-"Language-Team: Korean\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
+"PO-Revision-Date: 2002-08-16 13:50+0900\n"
+"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
+"Language-Team: Korean <beadaron@hanafos.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=euc-kr\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -57,11 +57,11 @@ msgstr "X ¼­¹ö ¼±ÅĆ"
msgid "X server"
msgstr "X ¼­¹ö"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
msgid "Multi-head configuration"
msgstr "“ŁĮß Ēģµå ¼³Į¤"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -69,44 +69,44 @@ msgstr ""
"“ŌĄĒ ½Ć½ŗÅŪĄŗ “ŁĮß Ēģµå ¼³Į¤Ą» ĮöæųĒÕ“Ļ“Ł.\n"
"¾ī¶»°Ō ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "±×·”ĒČ Ä«µåĄĒ øŽøšø® æė·®Ą» ¼±ÅĆĒĻ¼¼æä"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree ¼³Į¤"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "¾ī“Ą XFree ¼³Į¤Ą» ¼±ÅĆĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr "øšµē Ēģµåø¦ µ¶ø³ĄūĄø·Ī ¼³Į¤"
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
msgid "Use Xinerama extension"
msgstr "Xinerama Č®Ąå »ēæė"
-#: ../../Xconfig/card.pm_.c:379
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:384
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "”ø%s”¹Ä«µåøø ¼³Į¤ (%s)"
+msgstr "”ø%s”¹%s Ä«µåøø ¼³Į¤"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %sø¦ »ēæėĒŃ 3D ĒĻµåæž¾ī °”¼Ó"
-#: ../../Xconfig/card.pm_.c:407
+#: ../../Xconfig/card.pm_.c:412
#, 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:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "“ŌĄĒ Ä«µå“Ā XFree %s·Ī 3D ĒĻµåæž¾ī °”¼Ó±ā“ÉĄ» ĮöæųĒÕ“Ļ“Ł."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %sø¦ »ēæėĒŃ ½ĒĒčĄū 3D ĒĻµåæž¾ī °”¼Ó"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, 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:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,11 +145,56 @@ msgstr ""
"“ŌĄĒ Ä«µå“Ā XFree %s·Īøø °”“ÉĒŃ 3D ĒĻµåæž¾ī °”¼Ó±ā“ÉĄĢ ĮöæųµĖ“Ļ“Ł.\n"
"ĮÖĄĒ: ĄĢ°ĶĄŗ ½ĒĒčĄūĄĪ ĮöæųĄĢøē “ŌĄĒ ÄÄĒ»ÅĶø¦ øŲĆß°Ō ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (¼³Ä” Ē„½Ć µå¶óĄĢ¹ö)"
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "»ēæėĄŚ Į¤ĄĒ"
+
+#: ../../Xconfig/main.pm_.c:104
+msgid "Graphic Card"
+msgstr "±×·”ĒČ Ä«µå"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "øš“ĻÅĶ"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "ĒŲ»óµµ"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr "Å×½ŗĘ®"
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Č®ĄĪ"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Į¾·į"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -162,32 +207,27 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "øš“ĻÅĶø¦ ¼±ÅĆĒĻ¼¼æä"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "øš“ĻÅĶ"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "»ēæėĄŚ Į¤ĄĒ"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
-msgstr ""
+msgstr "ĒĆ·Æ±×¾ŲĒĆ·¹ĄĢ"
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "ĄĻ¹Ż ø¶æģ½ŗ"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
-#, fuzzy
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
msgid "Vendor"
-msgstr "µĒµ¹ø®±ā"
+msgstr "»óĒ„"
+
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -209,11 +249,11 @@ msgstr ""
"“ŌĄĒ øš“ĻÅĶ°” ČŃ¼ÕµÉ ¼ö ĄÖ½Ą“Ļ“Ł.\n"
"Ąß øšø£°Ś“Łøé, ¾ČĄüĒĻ°Ō ³·Ąŗ ¼³Į¤°ŖĄ» ¼±ÅĆĒĻ¼¼æä"
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "¼öĘņ ĮÖĘļö"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "¼öĮ÷ ĮÖĘļö"
@@ -237,57 +277,42 @@ msgstr "Ƶ6¹éøø »ö»ó (24bits)"
msgid "4 billion colors (32 bits)"
msgstr "40¾ļ »ö»ó (32 bits)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "ĒŲ»óµµ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "ĒŲ»óµµ"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "ĒŲ»óµµæĶ »ö»óĄ» ¼±ÅĆĒĻ¼¼æä"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "±×·”ĒČ Ä«µå: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Ćė¼Ņ"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Č®ĄĪ"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "ĄĢ ¼³Į¤Ą» Å×½ŗĘ®ĒŲ ŗø½Ć°Ś½Ą“Ļ±ī?"
@@ -296,71 +321,71 @@ msgstr "ĄĢ ¼³Į¤Ą» Å×½ŗĘ®ĒŲ ŗø½Ć°Ś½Ą“Ļ±ī?"
msgid "Test of the configuration"
msgstr "¼³Į¤ Å×½ŗĘ®"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Å°ŗøµå ĒüÅĀ: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "ø¶æģ½ŗ Į¾·ł: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "ø¶æģ½ŗ ĄåÄ”: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "øš“ĻÅĶ: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "øš“ĻÅĶ ¼öĘņĮÖĘļö: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "øš“ĻÅĶ ¼öĮ÷ĮÖĘļö: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "±×·”ĒČ Ä«µå: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "ŗńµšæĄ øŽøšø®: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "»ö»ó ½Éµµ: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "ĒŲ»óµµ: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ¼­¹ö: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 µå¶óĄĢ¹ö: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "½ĆĄŪ½Ć ¹Ł·Ī X ½ĒĒą"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -369,165 +394,181 @@ msgstr ""
"ŗĪĘĆ½Ćæ” ĄŚµæĄø·Ī XĄ©µµæģ°” ½ĆĄŪµĒµµ·Ļ ĒŅ¼ö ĄÖ½Ą“Ļ“Ł.\n"
"“Ł½Ć ŗĪĘĆĒߥ»¶§ ĄŚµæĄø·Ī XĄ©µµ°” ½ĆĄŪµĒ±ę æųĒĻ¼¼æä?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+msgid "What norm is your TV using?"
+msgstr "TV Ä«µå°” ¾ī¶² ³šĄ» »ēæėĒÕ“Ļ±ī?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "ŗĪĘ® ĘÄĘ¼¼ĒĄĒ Ć¹¹ųĀ° ¼½ÅĶ"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "µå¶óĄĢŗźĄĒ Ć¹¹ųĀ° ¼½ÅĶ(MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO ¼³Ä”"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "ŗĪĘ®·Ī“õø¦ ¾īµšæ” ¼³Ä”ĒĻ°ķ ½ĶĄø¼¼æä?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/GRUB ¼³Ä”"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "ÅŲ½ŗĘ® øŽ“ŗ LILO"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "±×·”ĒČ øŽ“ŗ LILO"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "µµ½ŗ/Ą©µµæģĮī攼­ ŗĪĘĆ(loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "ŗĪĘ®·Ī“õ ĮÖ æɼĒµé"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "»ēæėĒŅ ŗĪĘ®·Ī“õ"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "ŗĪĘ®·Ī“õ ¼³Ä”"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "ŗĪĘ® ĄåÄ”"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (æĄ·”µČ BIOSµé攼± ĄŪµæĒĻĮö ¾ŹĄ»¼öµµ ĄÖ½Ą“Ļ“Ł.)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "ÄŽĘѵå øšµå"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "ÄŽĘŃĘ® øšµå"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "ŗńµšæĄ øšµå"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "±āŗ» ĄĢ¹ĢĮö·Ī ŗĪĘĆµÉ ¶§±īĮö Įöæ¬½Ć°£"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "¾ĻČ£"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "¾ĻČ£ (Č®ĄĪ)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "øķ·ÉĒą æɼĒĄ» Į¦ĒŃĒÕ“Ļ“Ł."
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "Į¦ĒŃ"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "ŗĪĘĆ½Ć /tmp µš·ŗÅäø® ĄŚµæ Ć»¼Ņ"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "æɼĒ: Į¤Č®ĒŃ øŽøšø® æė·® (%d MB ¹ß°ß)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "“ŁĮß profiles Ēćæė"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "øŽøšø® æė·®ø¦ MB·Ī ĄŌ·ĀĒĻ¼¼æä"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "æɼĒ: ”øøķ·ÉĒą æɼĒĮ¦ĒŃ”¹Ąŗ ¾ĻČ£¾ųĄĢ »ēæėµÉ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "“Ł½Ć ½ĆµµĒĻ¼¼æä."
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "¾ĻČ£°” ĄĻÄ”ĒĻĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr "ĆŹ±āČ­ øŽ½ĆĮö"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr "Ęßæž¾ī æ­±ā Įöæ¬"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr "Äæ³Ī ŗĪĘ® Į¦ĒŃ½Ć°£"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr "CD ŗĪĘĆ Ēćæė?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr "OF ŗĪĘĆ Ēćæė?"
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
msgid "Default OS?"
msgstr "±āŗ» OS?"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -536,7 +577,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -544,154 +585,155 @@ msgstr ""
"øī °”Įö Ē×øńĄĢ 橱āæ” Ē„½ĆµĒ°ķ ĄÖ½Ą“Ļ“Ł.\n"
"“õ Ćß°”ĒĻ°Å³Ŗ, ±āĮøĄĒ °ĶµéĄ» ¼öĮ¤ĒŅ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ćß°”"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "æĻ·į"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
msgid "Modify"
msgstr "ŗÆ°ę"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "¾ī¶² Į¾·łĄĒ Ē×øńĄ» Ćß°”ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "ø®“Ŗ½ŗ"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "±āÅø OS (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "±āÅø OS (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "±āÅø OS (windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "ĄĢ¹ĢĮö"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "·ēĘ®"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Ćß°”"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "ĆŹ±āČ­ ·„µš½ŗÅ©"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "ĄŠ±ā-¾²±ā"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "ÅץĢŗķ"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Ą§Ēč"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Ē×øńøķ"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "±āŗ»°Ŗ"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
msgid "Initrd-size"
msgstr "·„µš½ŗÅ© æė·®"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr "ŗńµšæĄ ¾ųĄ½"
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Ē×øń Į¦°Å"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "ŗó Ē×øńøķĄŗ ĒćæėµĒĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
-msgstr ""
+msgstr "Äæ³Ī ĄĢ¹ĢĮöø¦ ĮöĮ¤ĒŲ ĮÖ¼¼æä."
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a root partition"
msgstr "·ēĘ® ĘÄĘ¼¼ĒĄŗ ¹Żµå½Ć ĮöĮ¤µĒ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "ĄĢ Ē×øńøķĄŗ ĄĢ¹Ģ »ēæėµĒ°ķ ĄÖ½Ą“Ļ“Ł."
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ĄĪÅĶĘäĄĢ½ŗ°” °ØĮöµĒ¾ś½Ą“Ļ“Ł."
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "¶Ē “Łø„°ĶĄĢ ¼³Ä”µĒ¾ī ĄÖ½Ą“Ļ±ī?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¶Ē “Łø„ %s ĄĪÅĶĘäĄĢ½ŗ°” ¼³Ä”µĒ¾ī ĄÖ½Ą“Ļ±ī?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "¾Ę“ĻæĄ"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "æ¹"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
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:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%sÄ«µå µå¶óĄĢ¹ö %s ¼³Ä”Įß"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(%s øšµā »ēæė)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -702,17 +744,17 @@ msgstr ""
"æɼĒĄŗ ``ĄĢø§=°Ŗ ĄĢø§2=°Ŗ2 ...''Ēü½ÄĄø·Ī ĮöĮ¤ĒÕ“Ļ“Ł..\n"
"°”·É, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "øšµā æɼĒµé:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "¾ī¶² %s µå¶óĄĢ¹öø¦ ½ĆµµĒŲ ŗ¾“Ļ±ī?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -729,15 +771,15 @@ msgstr ""
"ĄŚµæ°Ė»öĄŗ ¾īĀ¼“Ł°” ÄÄĒ»ÅĶø¦ øŲĆß°Ō ĒŅ ¼öµµ ĄÖ½Ą“Ļ“Ł.ĒĻĮöøø,\n"
"ĄåÄ”ø¦ ČŃ¼ÕĒĻĮö“Ā ¾Ź½Ą“Ļ“Ł."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "ĄŚµæ°Ė»ö"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "æɼĒ ĮöĮ¤"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -746,54 +788,53 @@ msgstr ""
"%s øšµāĄ» ĄŠ¾īµéĄĢ“Āµ„ ½ĒĘŠĒß½Ą“Ļ“Ł.\n"
"“Łø„ °ŖĄø·Ī “Ł½Ć ½ĆµµĒŲ ŗø½Ć°Ś½Ą“Ļ±ī?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr "X ĒĮ·Ī±×·„ ¾×¼¼½ŗ"
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr "RPM µµ±ø ¾×¼¼½ŗ"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr "”øsu”¹Ēćæė"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr "½Ć½ŗÅŪ °üø®ĘÄĄĻ ¾×¼¼½ŗ"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(ĄĢ¹Ģ %s“Ā(Ąŗ) Ćß°”µĒ¾ś½Ą“Ļ“Ł.)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "ĄĢ ¾ĻČ£“Ā ³Ź¹« “ܼųĒÕ“Ļ“Ł."
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "»ēæėĄŚøķĄ» ĄŌ·ĀĒŲ ĮÖ¼¼æä"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "»ēæėĄŚøķĄŗ æµ¹® ¼Ņ¹®ĄŚ³Ŗ ¼żĄŚ, '-' ±×ø®°ķ '_' øø Ę÷ĒŌµÉ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../any.pm_.c:774
-#, fuzzy
+#: ../../any.pm_.c:766
msgid "The user name is too long"
-msgstr "ĄĢ »ēæėĄŚøķĄŗ ĄĢ¹Ģ Ćß°”µĒ¾ī ĄÖ½Ą“Ļ“Ł."
+msgstr "»ēæėĄŚ øķĄĢ ³Ź¹« ±é“Ļ“Ł."
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "ĄĢ »ēæėĄŚøķĄŗ ĄĢ¹Ģ Ćß°”µĒ¾ī ĄÖ½Ą“Ļ“Ł."
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "»ēæėĄŚ Ćß°”"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -802,32 +843,32 @@ msgstr ""
"»ēæėĄŚ ĄŌ·Ā\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "»ēæėĄŚ Ēć°”"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "½ĒĮ¦ ĄĢø§"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "»ēæėĄŚøķ"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "øķ·É ĒŲ¼®±ā"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "¾ĘĄĢÄÜ"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "ĄŚµæ·Ī±×ĄĪ"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -835,55 +876,54 @@ msgstr ""
"ĄŚµæĄø·Ī ĘÆĮ¤ »ēæėĄŚ·Ī¼­ ·Ī±×ĄĪµĒµµ·Ļ ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł.\n"
"ĄĢ·± ĘƼŗĄ» æųĒĻ¼¼æä?"
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "±āŗ» »ēæėĄŚø¦ ¼±ÅĆĒĻ¼¼æä:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "»ēæėĒŅ Ą©µµæģ øÅ“ĻĄśø¦ ¼±ÅĆĒĻ¼¼æä:"
-#: ../../any.pm_.c:846
-#, fuzzy
+#: ../../any.pm_.c:838
msgid "Please choose a language to use."
msgstr "»ēæėĒŅ ¾š¾īø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "øšµĪ"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "Allow all users"
msgstr "øšµē »ēæėĄŚ Ēćæė"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
msgid "No sharing"
msgstr "ŗń°ųĄÆ"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "ĘŃÅ°Įö %s°” ĒŹæäĒÕ“Ļ“Ł. ¼³Ä”ĒĻ°Ś½Ą“Ļ±ī?"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFSæĶ »ļ¹Ł Įß, ¾ī“Ą °ĶĄ» ĄĢæėĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ĒŹ¼ö ĘŃÅ°Įö %s°” ¾ų½Ą“Ļ“Ł."
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -892,41 +932,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr "»ēæėĄŚµå·¹ĄĢÅ© ½ĒĒą"
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "ŗø¾Čæ” ½Å°ę¾Č¾ø"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "ĆÖĄś"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ē„ĮŲ"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "³ōĄ½"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
msgid "Higher"
msgstr "“õ ³ōĄ½"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "ĆÖ°ķ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -936,7 +976,7 @@ msgstr ""
"æėĄĢĒĻ°ŚĮöøø øÅæģ ¹Ī°ØĒĻ°Ō ĄŪµæĒÕ“Ļ“Ł: ĄĪÅĶ³ŻĄĢ³Ŗ ³×Ę®æ÷æ” æ¬°įµČ ½Ć½ŗÅŪæė\n"
"Ąø·Ī“Ā »ēæėĒĻĮö ø¶¼¼æä. ¾ĻČ£±ā“ÉĄĢ ¾ų½Ą“Ļ“Ł."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -944,7 +984,7 @@ msgstr ""
"¾ĻČ£±ā“ÉĄĢ ĄūæėµĒĮöøø, ³×Ę®æ÷æ” æ¬°įµČ ÄÄĒ»ÅĶ·Ī »ēæėĒĻ±ā攓Ā ¾ĘĮ÷ ĄūĄżĒĻĮö ¾Ź"
"½Ą“Ļ“Ł."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -953,13 +993,13 @@ msgstr ""
"ĄĢ µī±ŽĄŗ Ŭ¶óĄĢ¾šĘ®·Ī¼­ ĄĪÅĶ³Żæ” Į¢¼ÓĒĻ“Āµ„ Ąū“ēĒŃ Ē„ĮŲ ŗø¾Čµī±ŽĄŌ“Ļ“Ł.\n"
"ĄĢ µī±ŽŗĪÅĶ ĄūĮ¤ĒŃ ½Ć½ŗÅŪ ŗø¾Č Į”°Ė±ā“ÉĄĢ ĄÖ½Ą“Ļ“Ł. "
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -973,7 +1013,7 @@ msgstr ""
"ĄĢ ŗø¾Čµī±ŽĄŗ æÜŗĪĄĒ Ŭ¶óĄĢ¾šĘ®µéĄĒ Į¢¼ÓĄ» ¹Ž¾ĘµéĄĢ“Āµ„ ĄÖ¾ī¼­ \n"
"ĆęŗŠČ÷ ³ōĄŗ ŗø¾Čµī±ŽĄŌ“Ļ“Ł. "
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -982,25 +1022,40 @@ msgstr ""
"ŗø¾Č 4 µī±ŽĄĢ ĄūæėµĖ“Ļ“Ł. ½Ć½ŗÅŪĄĢ æĻĄüČ÷ æÜŗĪĮ¢±Łæ”¼­ °Żø®µĖ“Ļ“Ł.\n"
"ĆÖ°ķ ŗø¾Č ¼öĮŲĄŌ“Ļ“Ł."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+msgid "DrakSec Basic Options"
+msgstr "DrakSec ±āŗ» æɼĒ"
+
+#: ../../any.pm_.c:1092
+msgid "Please choose the desired security level"
+msgstr "ČńøĮĒĻ“Ā ŗø¾Č “Ü°čø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
+
+#: ../../any.pm_.c:1095
msgid "Security level"
msgstr "ŗø¾Č ¼öĮŲ"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
msgid "Use libsafe for servers"
msgstr "¼­¹öæ” “ėĒŲ libsafe »ēæė"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "¹öĘŪ ³ŃħĄĢ³Ŗ Ēü½ÄČ­ ¹®ĄŚæ­ °ų°ŻĄ» ø·“Ā ¶óĄĢŗź·Æø®."
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
+msgstr "ŗø¾Č °üø®ĄŚ (·Ī±×ĄĪ ¶Ē“Ā ĄĢøŽĄĻ)"
+
+#: ../../any.pm_.c:1189
+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 ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1020,109 +1075,202 @@ 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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
-msgstr ""
+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:915
+#: ../../bootloader.pm_.c:938
#, 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:918
+#: ../../bootloader.pm_.c:941
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:921
+#: ../../bootloader.pm_.c:944
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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "µ„½ŗũž"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "½ĆĄŪ øŽ“ŗ"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "”ø%s”¹ĘÄĘ¼¼Ēæ” ŗĪĘ®·Ī“õø¦ ¼³Ä”ĒŅ ¼ö ¾ų½Ą“Ļ“Ł.\n"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "¾ĘĮ÷ µµæņø»ĄĢ ĮŲŗńµĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "ŗĪĘĆ ½ŗÅøĄĻ ¼³Į¤"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/ĘÄĄĻ(_F)"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ĘÄĄĻ(F)/Į¾·į(_Q)"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr "»õ ½ŗÅøĄĻ ¹üĮÖČ­ øš“ĻÅĶ"
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
msgid "NewStyle Monitor"
msgstr "»õ ½ŗÅøĄĻ øš“ĻÅĶ"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
msgid "Traditional Monitor"
msgstr "ĄüÅėĄū øš“ĻÅĶ"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr "ĄüÅėĄū GTK+ øš“ĻÅĶ"
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "ŗĪĘĆ½Ć æĄ·Ī¶ó ½ĒĒą"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Lilo/grub mode"
msgstr "LILO/Grub øšµå"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
msgid "Yaboot mode"
msgstr "Yaboot øšµå"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+msgid "Install themes"
+msgstr "Å×ø¶ ¼³Ä”"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr "ÄܼÖĒĻ攼­ Å×ø¶ ŗøĄĢ±ā"
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr "ŗĪĘ®½ŗĒĆ·”½¬ ¹Ģø®ŗø±āø¦ »ż¼ŗĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "æĄ·ł"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr "%sø¦ %s.old·Ī ¹é¾÷"
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr "ø±·Ī øŽ½ĆĮöø¦ ¹é¾÷ĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr "%sø¦ %s·Ī ŗ¹»ē"
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr "ø±·Ī øŽ½ĆĮöø¦ ŗÆ°ęĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr "ø±·Ī øŽ½ĆĮöø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł."
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, c-format
+msgid "Write %s"
+msgstr "%s ±ā·Ļ"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr "ø±·Ī Ąē½ĒĒą"
+
+#: ../../bootlook.pm_.c:248
+msgid "Notice"
+msgstr "ĮÖĄĒ"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+msgid "Theme installation failed!"
+msgstr "Å×ø¶ ¼³Ä” ½ĒĘŠ!"
+
+#: ../../bootlook.pm_.c:258
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1131,42 +1279,68 @@ msgstr ""
"ĒöĄē ŗĪĘ® °üø®ĄŚ·Ī %sø¦ »ēæėĒĻ°ķ ĄÖ½Ą“Ļ“Ł.\n"
"¼³Į¤ ø¶¹ż»ēø¦ ½ĒĒąĒĻ·Įøé ”ø¼³Į¤”¹Ą» “©ø£¼¼æä."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
msgid "Configure"
msgstr "¼³Į¤"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+msgid "Splash selection"
+msgstr "½ŗĒĆ·”½¬ ¼±ÅĆ"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr "Å×ø¶"
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr "ø±·Ī ½ŗÅ©ø°"
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr "ŗĪĘ®½ŗĒĆ·¹½¬"
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "½Ć½ŗÅŪ øšµå"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "½ĆĄŪĒŅ ¶§ X-Window ½ĒĒą"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "¾Ę“ĻæĄ, ĄŚµæ·Ī±×ĄĪĄ» »ēæėĒĻĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "æ¹, ĄŚµæ·Ī±×ĄĪĄ» »ēæėĒÕ“Ļ“Ł."
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Č®ĄĪ"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "”ø/etc/inittab”¹ĘÄĄĻĄ» ĄŠĄ» ¼ö ¾ų½Ą“Ļ“Ł: %s"
@@ -1211,61 +1385,111 @@ msgstr "“õĄĢ»ó ĘÄĘ¼¼ĒĄ» Ćß°”ĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
msgid "Screenshots will be available after install in %s"
msgstr "¼³Ä”ČÄ “Łø„ “Łø„ ¾š¾īø¦ ¼±ÅĆĒŅ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "ĒĮ¶ū½ŗ"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr "ÄŚ½ŗÅøø®Ä«"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "ŗ§±āæ”"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr "Ć¼ÄŚ °ųČ­±¹"
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "µ¶ĄĻ"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
msgid "Greece"
msgstr "±×ø®½ŗ"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
msgid "Norway"
msgstr "³ėø£æžĄĢ"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
msgid "Sweden"
msgstr "½ŗæžµ§"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "³×“ś¶õµå"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
msgid "Italy"
msgstr "ĄĢÅ»ø®¾Ę"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
msgid "Austria"
msgstr "æĄ½ŗĘ®ø®¾Ę"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr "¹Ģ±¹"
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr "¾Ė ¼ö ¾ų“Ā øšµØ"
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "»õ·Ī øøµé±ā"
+
+#: ../../diskdrake/dav.pm_.c:57
+msgid "Server"
+msgstr "¼­¹ö"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../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:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "CD ·¹ÄŚ“õ ¼Óµµø¦ ĄŌ·ĀĒĻ¼¼æä."
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "¼­¹ö"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "ø¶æīĘ® Ą§Ä”: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "æɼĒµé: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "øÕĄś µ„ĄĢÅĶø¦ ¹é¾÷ĒĻ¼¼æä."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "ĮÖĄĒ±ķ°Ō ĄŠĄø¼¼æä!"
@@ -1279,15 +1503,6 @@ msgstr ""
"øé ĆęŗŠĒŌ)\n"
"Ą» ³²±āµµ·Ļ ĮÖĄĒĒĻ¼¼æä."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "æĄ·ł"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "ø¶¹ż»ē"
@@ -1313,7 +1528,7 @@ msgid "Please click on a partition"
msgstr "ĘÄĘ¼¼ĒĄ» ŬøÆĒĻ¼¼æä"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "»ó¼¼¼³øķ"
@@ -1341,13 +1556,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "½ŗæŅ"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "ŗó°ų°£"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "±āÅø"
@@ -1355,12 +1570,12 @@ msgstr "±āÅø"
msgid "Filesystem types:"
msgstr "ĘÄĄĻ½Ć½ŗÅŪ ĄÆĒü:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "»ż¼ŗ"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "ĄÆĒü"
@@ -1370,7 +1585,7 @@ msgstr "ĄÆĒü"
msgid "Use ``%s'' instead"
msgstr "“ė½Åæ” ”ø%s”¹ø¦ »ēæėĒÕ“Ļ“Ł"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "»čĮ¦"
@@ -1378,78 +1593,78 @@ msgstr "»čĮ¦"
msgid "Use ``Unmount'' first"
msgstr "”ø¾šø¶æīĘ®”¹ø¦ øÕĄś »ēæėĒĻ¼¼æä"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "%sĄĒ ĘÄĘ¼¼Ē ĄÆĒüĄ» ŗÆ°ęČÄ ĄĢ ĘÄĘ¼¼Ē³»ĄĒ øšµē ĄŚ·įø¦ ĄŅ°Ō µĖ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose a partition"
msgstr "ĘÄĘ¼¼Ē ¼±ÅĆ"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
msgid "Choose another partition"
msgstr "Ćß°” ĘÄĘ¼¼Ē ¼±ÅĆ"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
msgid "Exit"
msgstr "Į¾·į"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Ąü¹®°” øšµå·Ī ĄüČÆ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "ĄĻ¹Ż øšµå·Ī ĄüČÆ"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "µĒµ¹ø®±ā"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "°č¼ÓĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "ĄśĄåĒĻĮö ¾Ź°ķ Į¾·įĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "ĘÄĘ¼¼ĒĄ» ±ā·ĻĒĻĮö ¾Ź°ķ Į¾·įĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
msgid "Do you want to save /etc/fstab modifications"
msgstr "”ø/etc/fstab”¹ĄĒ ŗÆ°ę»ēĒץ» ĄśĄåĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "ĄŚµæ ĒŅ“ē"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "øšµĪ »čĮ¦"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Ćß°” æɼĒ"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
msgid "Hard drive information"
msgstr "ĒĻµå µš½ŗÅ© Į¤ŗø"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "øšµē ĮÖĘÄĘ¼¼ĒĄĢ »ēæėĮߥŌ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "“õĄĢ»ó ĘÄĘ¼¼ĒĄ» Ćß°”ĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1457,31 +1672,31 @@ msgstr ""
"“õ ø¹Ąŗ ĘÄĘ¼¼ĒĄ» øøµå½Ē·Įøé, Č®Ąå ĘÄĘ¼¼ĒĄ» øøµé¼ö ĄÖµµ·Ļ ĮÖĘÄĘ¼¼Ē ĒĻ³Ŗø¦ Įöæģ"
"¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Save partition table"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ĄśĄå"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Restore partition table"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ŗ¹±ø"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ĄĄ±ŽĆ³Ä”"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
msgid "Reload partition table"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ “Ł½Ć ĄŠ±ā"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
msgid "Removable media automounting"
msgstr "Å»Āų½Ä ¹Ģµš¾ī ĄŚµæ ø¶æīĘ®"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "ĘÄĄĻĄ» ¼±ÅĆĒĻ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1489,11 +1704,11 @@ msgstr ""
"¹é¾÷ ĘÄĘ¼¼Ē ÅץĢŗķ Å©±ā°” °°Įö ¾Ź½Ą“Ļ“Ł.\n"
"°č¼Ó ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "°ę°ķ"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1501,129 +1716,112 @@ msgstr ""
"ĒĆ·ĪĒĒ µš½ŗÅ©ø¦ µå¶óĄĢŗźæ” ³ÖĄø¼¼æä\n"
"ĒĆ·ĪĒĒ µš½ŗÅ©ĄĒ øšµē ĄŚ·įø¦ ĄŅ°Ō µĖ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ŗ¹±ø ½Ćµµ Įß..."
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
msgid "Detailed information"
msgstr "ĄŚ¼¼ĒŃ Į¤ŗø"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "ø¶æīĘ® Ą§Ä”"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "æɼĒµé"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Å©±āĮ¶Į¤"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "ĄĢµæ"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Ę÷øĖ"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "ø¶æīĘ®"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "RAIDæ” Ćß°”"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "LVMæ” Ćß°”"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "¾šø¶æīĘ®"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "RAID·ĪŗĪÅĶ Į¦°Å"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "LVMĄø·ĪŗĪÅĶ Į¦°Å"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "RAID ¼öĮ¤"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "·ēĒĮ¹éĄø·Ī »ēæė"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "»õ ĘÄĘ¼¼Ē øøµé±ā"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "½ĆĄŪ ¼½ÅĶ: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Å©±ā(MB) :"
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "ĘÄĄĻ½Ć½ŗÅŪ ĄÆĒü: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "ø¶æīĘ® Ą§Ä”: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "»ēæėĄŚ Į¤ĄĒ"
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
msgid "Remove the loopback file?"
msgstr "·ēĒĮ¹é ĘÄĄĻĄ» Į¦°ÅĒÕ“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "ĘÄĘ¼¼Ē ĄÆĒü ŗÆ°ę"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "¾ī¶² ĘÄĄĻ ½Ć½ŗÅŪĄ» æųĒĻ¼¼æä?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr "EXT2攼­ EXT3·Ī ŗÆ°ę"
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%sĘÄĄĻĄ» ¾īµšæ” ·ēĒĮ¹éĄø·Ī ø¶æīĘ® ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "ĄåÄ” %sø¦ ¾īµšæ” ø¶æīĘ® ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1632,130 +1830,135 @@ msgstr ""
"“Ł.\n"
"loopbackĄ» øÕĄś Į¦°ÅĒĻ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "ĄåÄ” %sø¦ ¾īµšæ” ø¶æīĘ® ĒĻ½Ć°Ś½Ą“Ļ±ī?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "µµ½ŗ ĘÄĄĻ½Ć½ŗÅŪĄĒ ¹üĄ§ °č»źĮß"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Å©±āŗÆ°ę"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "ĄĢ ĘÄĘ¼¼ĒĄŗ Å©±āŗÆ°ęĄĢ ĒćæėµĒĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "ĄĢ ĘÄĘ¼¼ĒĄĒ øšµē µ„ĄĢÅøø¦ ¹é¾÷ĒĻæ©¾ß ĒÕ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "%s ĘÄĘ¼¼ĒĄĒ Å©±āø¦ ŗÆ°ęĒĻøé, øšµē µ„ĄĢÅøø¦ ĄŅ°ŌµĖ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "»õ·Īæī Å©±āø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
msgid "New size in MB: "
msgstr "»õ·Īæī æė·®(MB):"
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "¾ī¶² µš½ŗÅ©ø¦ ĄĢµæĒĻ°ķ ½ĶĄø½Ź“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "¼½ÅĶ"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "¾ī¶² ¼½ÅĶø¦ ĄĢµæĒĻ°ķ ½ĶĄø½Ź“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "ĄĢµæ Įß"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "ĘÄĘ¼¼Ē ĄĢµæ Įß..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Ćß°”ĒŅ ±āĮø RAIDø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "»õ·Ī øøµé±ā"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Ćß°”ĒŅ LVMø¦ ¼±ÅĆĒĻ¼¼æä"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM ĄĢø§?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "ĄĢ ĘÄĘ¼¼ĒĄŗ loopbackĄø·Ī »ēæėµÉ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "·ēĒĮ¹é"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "·ēĒĮ¹é ĘÄĄĻ ĄĢø§: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
msgid "Give a file name"
msgstr "ĘÄĄĻ ĄĢø§Ą» ĄŌ·ĀĒĻ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "“Łø„ ·ēĒĮ¹éĄĢ ĄĢ ĘÄĄĻĄ» »ēæėĒĻ°ķ ĄÖ½Ą“Ļ“Ł, “Łø„ °ĶĄ» ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "ĘÄĄĻĄĢ ĄĢ¹Ģ ĮøĄēĒÕ“Ļ“Ł. ±×°ĶĄ» »ēæėĒÕ“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
msgid "Mount options"
msgstr "ø¶æīĘ® æɼĒµé:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr "“Ł¾ēĒŃ"
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "ĄåÄ”"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "·¹ŗ§"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "Å©±ā"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "ĮÖĄĒ : ĄĢ Į¶ĄŪĄŗ Ą§ĒčĒÕ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "¾ī¶² ĄÆĒüĄĒ ĘÄĘ¼¼ĒĄŌ“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:953
-#, fuzzy, c-format
+#: ../../diskdrake/interactive.pm_.c:955
+#, c-format
msgid "The package %s is needed. Install it?"
msgstr "ĘŃÅ°Įö %s°” ĒŹæäĒÕ“Ļ“Ł. ¼³Ä”ĒĻ°Ś½Ą“Ļ±ī?"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1766,7 +1969,7 @@ msgstr ""
"¾ų½Ą“Ļ“Ł. ( 1024 ½Ēø°“õ ĄĢĒĻ攼­øø °”“ÉĒÕ“Ļ“Ł.\n"
"LILOø¦ »ēæėĒŃ“Ł°ķ ĒĻ“õ¶óµµ µæĄŪĒĻĮö ¾Ź°ķ, LILO ĄŚĆ¼ø¦ »ēæėĒŅ¼öµµ ¾ų½Ą“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1777,7 +1980,7 @@ msgstr ""
"µū¶ó¼­ /boot ĘÄĘ¼¼ĒĄ» °”Įś¼ö ¾ų½Ą“Ļ“Ł.\n"
"LILO ŗĪĘ® øÅ“ĻĄśø¦ »ēæėĒĻ·Į ĒŃ“Łøé, ĮÖĄĒĒŲ¼­ /boot ĘÄĘ¼¼ĒĄ» Ćß°”ĒĻ¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1787,44 +1990,44 @@ msgstr ""
"¾ī¶°ĒŃ ŗĪĘ®·Ī“õµµ /boot ĘÄĘ¼¼Ē ¾ųĄĢ“Ā ĄĢ°ĶĄ» Ć³ø®ĒĻĮö øųĒÕ“Ļ“Ł.\n"
"±×·Æ¹Ē·Ī /boot ĘÄĘ¼¼ĒĄ» Ćß°”ĒĻ“Ā °ĶĄ» ĄŲĮö ø¶¼¼æä."
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s µå¶óĄĢŗźĄĒ ĘÄĘ¼¼Ē ÅץĢŗķĄ» ĄśĄåĒÕ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "ŗÆ°ęµČ°ĶĄ» ĄūæėĒĻ±ā Ą§ĒŲ¼± ø®ŗĪĘĆĄĢ ĒŹæäĒÕ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s ĘÄĘ¼¼ĒĄ» Ę÷øĖĒĻøé, øšµē µ„ĄĢÅøø¦ ĄŅ°Ō µĖ“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Ę÷øĖ Įß"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "loopback ĘÄĄĻ %s Ę÷øÅĮß"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "%s ĘÄĘ¼¼Ē Ę÷øĖĮß"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Hide files"
msgstr "ĘÄĄĻ ¼ū±ā±ā"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
msgid "Move files to the new partition"
msgstr "»õ ĘÄĘ¼¼ĒĄø·Ī ĘÄĄĻ æȱā±ā"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -1833,83 +2036,83 @@ msgstr ""
"µš·ŗÅäø® %s攓Ā ĄĢ¹Ģ µ„ĄĢÅĶ°” ĄÖ½Ą“Ļ“Ł.\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
msgid "Moving files to the new partition"
msgstr "»õ ĘÄĘ¼¼ĒĄø·Ī ĘÄĄĻ æȱā“Ā Įß"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr "%s ŗ¹»ē Įß"
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, c-format
msgid "Removing %s"
msgstr "%s Į¦°Å Įß"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "ĄåÄ”: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS µå¶óĄĢŗź ¹®ĄŚ: %s (“ÜĮö ĆßĆųĄĻ »ÓĄÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "ĄÆĒü: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "ĄĢø§:"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "½ĆĄŪ: ¼½ÅĶ %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Å©±ā: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s ¼½ÅĶ"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "%d ½Ēø°“õŗĪÅĶ %d ½Ēø°“õ±īĮö\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Ę÷øĖµĒ¾śĄ½\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Ę÷øĖ ¾ČµĒ¾śĄ½\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "ø¶æīĘ® µĒ¾śĄ½\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "·¹ĄĢµå ĄåÄ” %s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -1918,7 +2121,7 @@ msgstr ""
"·ēĒĮ¹é ĘÄĄĻ(µé):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1926,27 +2129,27 @@ msgstr ""
"±āŗ»ĄūĄø·Ī ŗĪĘƵĒ“Ā ĘÄĘ¼¼Ē\n"
" (liloø¦ Ą§ĒŃ°ĶĄĢ ¾Ę“Ļ¶ó MS-DOS bootø¦ Ą§ĒŃ°ĶĄÓ)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "%s µī±Ž\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Å©±ā %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "·¹ĄĢµå-µš½ŗÅ© %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "·ēĒĮ¹é ĘÄĄĻ ĄĢø§: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1957,7 +2160,7 @@ msgstr ""
"ĄĢ ĘÄĘ¼¼ĒĄŗ µå¶óĄĢ¹ö ĘÄĘ¼¼ĒĄŌ“Ļ“Ł.\n"
"±×³É µĪ“Ā °ĶĄĢ ĮĮ½Ą“Ļ“Ł.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -1969,66 +2172,61 @@ msgstr ""
"ĘÄĘ¼¼ĒĄŗ ½Ć½ŗÅŪĄ» \n"
"µą¾ó ŗĪĘĆĒĻ±ā Ą§ĒŃ °ĶĄŌ“Ļ“Ł.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Å©±ā : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ą§Ä”: %s ½Ēø°ÅĶ, %s Ēģµå, %s ¼½ÅĶ\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Į¤ŗø: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-µš½ŗÅ© %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ĄÆĒü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "%d ¹ö½ŗ»ó攼­ ID %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "æɼĒµé: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "ĘÄĄĻ½Ć½ŗÅŪ ĄÆĒü: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
-msgstr ""
+msgstr "ĘÄĄĻ ½Ć½ŗÅŪ ¾ĻČ£Č­ Å° ¼±ÅĆ"
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "ĄĢ ¾ĻČ£“Ā ³Ź¹« “ܼųĒÕ“Ļ“Ł.( Ąū¾īµµ %d ±ŪĄŚ“Ā ³Ń¾ī¾ß ĒÕ“Ļ“Ł)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "¾ĻČ£°” ĄĻÄ”ĒĻĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
-msgstr ""
+msgstr "¾ĻČ£Č­ Å°"
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
-msgstr ""
+msgstr "¾ĻČ£Č­ Å° (Č®ĄĪ)"
#: ../../diskdrake/removable.pm_.c:47
msgid "Change type"
@@ -2054,9 +2252,8 @@ msgid "Another one"
msgstr "ĄĪÅĶ³Ż"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "»ēæėĄŚøķ"
+msgstr "»ēæėĒŅ ¾ĘĄĢµš"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
@@ -2064,36 +2261,34 @@ msgid ""
msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm_.c:178
-#, fuzzy
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:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Ę÷øĖ ½ĒĘŠ(µå¶óĄĢŗź %s)"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s“Ā %s ĄÆĒüĄĢ¹Ē·Ī Ę÷øĖĒŅ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%sø¦ ¾šø¶æīĘ®Įß æĄ·ł¹ß»ż: %s"
@@ -2110,33 +2305,33 @@ msgstr ""
msgid "server"
msgstr "¼­¹ö"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB ¹ĢøøĄĒ ĘÄĘ¼¼Ē攓Ā JFS ĘÄĄĻ ½Ć½ŗÅŪĄ» »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB ¹ĢøøĄĒ ĘÄĘ¼¼Ē攓Ā ReiserFS ĘÄĄĻ ½Ć½ŗÅŪĄ» »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "ø¶æīĘ® Ą§Ä”“Ā ¹Żµå½Ć ”ø/”¹·Ī ½ĆĄŪĒĻæ©¾ß ĒÕ“Ļ“Ł."
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "ø¶æīĘ® Ą§Ä” %s°” ĄĢ¹Ģ ĮøĄēĒÕ“Ļ“Ł.\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " %s ø¶æīĘ® Ę÷ĄĪĘ®·Ī LVM ³ķø®ŗ¼·żĄ» »ēæėĒŅ ¼ö“Ā ¾ų½Ą“Ļ“Ł. "
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "ĄĢ µš·ŗÅäø®“Ā ·ēĘ® ĘÄĄĻ½Ć½ŗÅŪ ¾Čæ” ĄÖ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2144,26 +2339,25 @@ msgid ""
msgstr ""
"ĄĢ ø¶æīĘ® Ą§Ä”攓Ā Ę®·ē ĘÄĄĻ½Ć½ŗÅŪ (ext2, reiserfs)ĄĢ ø¶æīĘ® µĒ¾ī¾ß ĒÕ“Ļ“Ł.\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " %s ø¶æīĘ® Ę÷ĄĪĘ®·Ī LVM ³ķø®ŗ¼·żĄ» »ēæėĒŅ ¼ö“Ā ¾ų½Ą“Ļ“Ł. "
-#: ../../fsedit.pm_.c:560
-#, fuzzy
+#: ../../fsedit.pm_.c:570
msgid "Not enough free space for auto-allocating"
-msgstr "ĄŚµæĒŅ“ēĄ» »ēæėĒĻ±ā攓Ā °ų°£ĄĢ ŗĪĮ·ĒÕ“Ļ“Ł."
+msgstr "ĄŚµæĒŅ“ēĒĻ±ā攓Ā °ų°£ĄĢ ĒÕ“Ļ“Ł."
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr "ĒŅ ĄĻ ¾ųĄ½."
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "%sø¦ ¾²±āĄ§ĒŲ æ©“ĀĮß æĄ·ł¹ß»ż: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2171,260 +2365,242 @@ msgstr ""
"æĄ·ł ¹ß»ż - »õ·Īæī ĘÄĄĻ ½Ć½ŗÅŪĄ» øøµé ¾ī¶² æĆ¹Łø„ ĄåÄ”µµ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł.ĄĢ "
"¹®Į¦ø¦ ĒŲ°įĒĻ½Ć·Įøé, ĒĻµåæž¾īø¦ Į”°ĖĒŲ ŗø½Ć±ā ¹Ł¶ų“Ļ“Ł."
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "¾ī¶² ĘÄĘ¼¼Ēµµ ĮøĄēĒĻĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "ĄŚµæ°Ė»ö"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "ĄĻ¹Ż ø¶æģ½ŗ"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Ä«µå øŽøšø® (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "¼³Į¤ ĄŠ±ā"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "ĄÆĒü ŗÆ°ę"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Į¾·į"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/µµæņø»(_H)"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/µµæņø»(_H)"
-
#: ../../harddrake/ui.pm_.c:15
-#, fuzzy
-msgid "/_About..."
-msgstr "/µµæņø»(H)/ĄĢ ĒĮ·Ī±×·„Ąŗ(_A)..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
-msgstr "øšµā"
+msgstr "øšµØ"
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:15
msgid "hard disk model"
-msgstr "Ä«µå øŽøšø® (DMA)"
+msgstr "ĒĻµå µš½ŗÅ© øšµØ"
-#: ../../harddrake/ui.pm_.c:23
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:16
msgid "Channel"
-msgstr "Ćė¼Ņ"
+msgstr "Ƥ³Ī"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI Ƥ³Ī"
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
-msgstr ""
+msgstr "¹ö½ŗ"
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "Module"
msgstr "øšµā"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
-msgstr ""
+msgstr "øÅĆ¼ ¹üĮÖ"
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
-msgstr ""
+msgstr "ĒĻµåæž¾ī ĄåÄ” ¹üĮÖ"
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "¼³øķ"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
-msgstr ""
+msgstr "ĄĢ ĒŹµå“Ā ĄåÄ”ø¦ ¼³øķĒÕ“Ļ“Ł."
-#: ../../harddrake/ui.pm_.c:31
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:24
msgid "Bus identification"
-msgstr "»ēæėĄŚ ĄĪĮõ"
+msgstr "¹ö½ŗ ¾ĘĄĢµš"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
-msgstr ""
+msgstr "¹ö½ŗ»óĄĒ Ą§Ä”"
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:31
msgid "Old device file"
-msgstr "ĘÄĄĻĄ» ¼±ÅĆĒĻ¼¼æä."
+msgstr "æĄ·”µČ ĄåÄ” ĘÄĄĻ"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:33
msgid "New devfs device"
-msgstr "°ŌĄĢĘ®æžĄĢ ĄåÄ”"
+msgstr "»õ·Īæī devfs ĄåÄ”"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:35
msgid "Number of buttons"
-msgstr "2 ¹öĘ°"
+msgstr "¹öĘ° ¼ö"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:60
+msgid "/_Quit"
+msgstr "/Į¾·į(_Q)"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/µµæņø»(_H)"
+
+#: ../../harddrake/ui.pm_.c:62
+msgid "/_Help..."
+msgstr "/µµæņø»(_H)..."
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr "ĒĻµå µå·¹ĄĢÅ© µµæņø»"
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+msgid "/_About..."
+msgstr "/Į¤ŗø(_A)..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr "ĒĻµå µå·¹ĄĢÅ© Į¤ŗø"
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+msgid "Author:"
+msgstr "Į¦ĄŪĄŚ:"
+
+#: ../../harddrake/ui.pm_.c:83
msgid "Harddrake2 version "
-msgstr "ĒĻµå µš½ŗÅ© ¼±ÅĆ"
+msgstr "ĒĻµå µå·¹ĄĢÅ© 2 ¹öĄü"
-#: ../../harddrake/ui.pm_.c:122
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:91
msgid "Detected hardware"
-msgstr "ĒĻµåæž¾ī Į¤ŗø ŗø±ā"
+msgstr "°Ė»öµČ ĒĻµåæž¾ī"
-#: ../../harddrake/ui.pm_.c:136
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:92
+msgid "Configure module"
+msgstr "øšµā ¼³Į¤"
+
+#: ../../harddrake/ui.pm_.c:92
msgid "Informations"
-msgstr "Į¤ŗø ŗø±ā"
+msgstr "Į¤ŗø"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "ø¶æģ½ŗ ¼³Į¤"
+msgstr "¼³Į¤ µµ±ø ½ĒĒą"
-#: ../../harddrake/ui.pm_.c:168
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:96
msgid "Detection in progress"
-msgstr "%s Ę÷Ę®æ”¼­ ¹ß°ß"
+msgstr "°Ė»ö ĮųĒą Įß"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "±ā“Ł·Į ĮÖ¼¼æä"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
-msgstr ""
+msgstr "ĮÖ"
-#: ../../harddrake/ui.pm_.c:217
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:139
msgid "secondary"
-msgstr "%d ĆŹ"
+msgstr "µĪ¹ųĀ°"
-#: ../../harddrake/ui.pm_.c:260
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "ĒĮø°ÅĶ ”ø%s”¹ Į¦°Å Įß ..."
+msgstr "”ø%s”¹ ½ĒĒą Įß..."
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+msgid "Auto-detect"
+msgstr "ĄŚµæ °Ė»ö"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+msgid "Unknown|Generic"
+msgstr "¾Ė ¼ö ¾ųĄ½|ĄĻ¹Ż"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
-#, fuzzy
-msgid "Author:"
-msgstr "ĄŚµæ°Ė»ö"
+#: ../../harddrake/v4l.pm_.c:213
+msgid "Card model :"
+msgstr "Ä«µå øšµØ:"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
-msgstr ""
+#: ../../harddrake/v4l.pm_.c:214
+msgid "Tuner type :"
+msgstr "Ę©³Ź ĄÆĒü:"
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
+msgstr "ÄøĆÄ ¹öĘŪ ¼ö:"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
msgstr ""
+#: ../../harddrake/v4l.pm_.c:217
+msgid "PLL setting :"
+msgstr "PLL ¼³Į¤:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr "¶óµšæĄ Įöæų:"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
+msgstr "¶óµšæĄ Įöæų"
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -3921,7 +4097,7 @@ msgstr ""
"ĄĢ ĄŪ¾÷Ą» Ćė¼ŅĒĻ·Įøé, Įö±Ż ”øĆė¼Ņ”¹ø¦ “©ø£¼¼æä. ¾ī¶°ĒŃ µ„ĄĢÅĶæĶ ĘÄĘ¼¼Ēµµ\n"
"¼Õ»óµĒĮö ¾ŹĄ» °ĶĄŌ“Ļ“Ł."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3929,7 +4105,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3959,20 +4135,20 @@ msgstr ""
"\n"
"Į¤ø»·Ī ĄĢ ¼­¹öµéĄ» ¼³Ä”ĒÕ“Ļ±ī?\n"
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS µµøŽĄĪ ¾ųĄĢ“Ā ŗź·ĪµåÄɽŗĘ®ø¦ »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ĒĆ·ĪĒĒ µš½ŗÅ©ø¦ %s µå¶óĄĢŗźæ” ³ÖĄø¼¼æä"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr "ĄĢ ĒĆ·ĪĒĒ µš½ŗÅ©“Ā FAT Ę÷øĖĄĢ ¾Ę“Õ“Ļ“Ł."
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3980,7 +4156,7 @@ msgstr ""
"ĄĢ ĄśĄåµČ ĘŃÅ°Įö ¼±ÅĆøń·ĻĄ» »ēæėĒŅ·Įøé, ``linux defcfg=floppy''¶ó°ķ ĄŌ·ĀĒĻæ© "
"¼³Ä”Ą» ½ĆĄŪĒĻ¼¼æä."
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s ĘÄĄĻĄ» ĄŠ“ĀĮß æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł."
@@ -4018,7 +4194,7 @@ msgstr ""
"\n"
"°č¼Ó ĮųĒąĒÕ“Ļ±ī?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "”ø/boot/efi”¹æ” ø¶æīĘ®µČ FAT ĘÄĘ¼¼ĒĄĢ ĄÖ¾ī¾ßøø ĒÕ“Ļ“Ł."
@@ -4197,12 +4373,12 @@ msgstr ""
"æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł. ±×·Æ³Ŗ ĄūĄżČ÷ Ć³ø®ĒŅ ¼ö ¾ų½Ą“Ļ“Ł.\n"
"Ą§ĒėĄ» °Ø¼öĒŅ·Įøé °č¼ÓĒĻ¼¼æä."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "ø¶æīĘ® Ę÷ĄĪĘ® Įßŗ¹ %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4214,12 +4390,12 @@ msgstr ""
"ĄĢ¹Ģ ¼³Ä”°” æĻ·įµČ ÄÄĒ»ÅĶ攼­ ”ørpm -qpl Mandrake/RPMS/*.rpm”¹øķ·ÉĄø·Ī Į”°Ė"
"ĒŲ ŗø¼¼æä.\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "%sæ” æĄ½Å°ĶĄ» ČÆæµĒÕ“Ļ“Ł."
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "ĒĆ·ĪĒĒ µå¶óĄĢŗźø¦ »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
@@ -4229,7 +4405,7 @@ msgstr "ĒĆ·ĪĒĒ µå¶óĄĢŗźø¦ »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
msgid "Entering step `%s'\n"
msgstr "%s “Ü°č·Ī ³Ń¾ī°©“Ļ“Ł.\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4242,78 +4418,78 @@ msgstr ""
"ÅŲ½ŗĘ® øšµå·Ī ¼³Ä”ĒĻ·Įøé, CDROMĄø·Ī ŗĪĘĆČÄ ”øF1”¹Ą» “©ø£°ķ ”øtext”¹¶ó°ķ ĄŌ·Ā"
"ĒĻ¼¼æä."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "¼³Ä” ĄÆĒü"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "“ŁĄ½ ¼³Ä” ĄÆĒüĮß ĒĻ³Ŗø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "ĘŃÅ°Įö ±×·ģ ¼±ÅĆ"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "°³ŗ° ĘŃÅ°Įö ¼±ÅĆ"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "ĄüĆ¼ Å©±ā: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "ĄßøųµČ ĘŃÅ°Įö"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "ĄĢø§: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "¹öĮÆ: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Å©±ā: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Įßæä¼ŗ: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "µš½ŗÅ© °ų°£ĄĢ ŗĪĮ·ĒĻ±ā ¶§¹®æ” ĄĢ ĘŃÅ°Įöø¦ ¼±ÅĆĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "“ŁĄ½ ĘŃÅ°ĮöµéĄĢ ¼³Ä”µÉ °ĶĄŌ“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "“ŁĄ½ ĘŃÅ°ĮöµéĄĢ Į¦°ÅµÉ °ĶĄŌ“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "ĄĢ ĘŃÅ°Įöø¦ ¼±ÅĆ/¹öø² ĒŅ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "ĄĢ°ĶĄŗ ĒŹ¼öĄūĄĪ ĘŃÅ°ĮöĄŌ“Ļ“Ł. ¹Żµå½Ć ¼±ÅƵĒ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "ĄĢ ĘŃÅ°Įöø¦ ¼±ÅĆĒŲĮ¦ĒŅ ¼ö ¾ų½Ą“Ļ“Ł. ĄĢ¹Ģ ¼³Ä” µĒ¾ś½Ą“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4321,74 +4497,74 @@ msgstr ""
"ĄĢ ĘŃÅ°Įö“Ā ¹Żµå½Ć ¾÷±×·¹ĄĢµåµĒ¾ī¾ß ĒÕ“Ļ“Ł.\n"
"Į¤ø»·Ī ¼±ÅĆĄ» ĒŲĮ¦ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "ĄĢ ĘŃÅ°Įöø¦ ¼±ÅĆĒŲĮ¦ĒŅ¼ö ¾ų½Ą“Ļ“Ł. ¹Żµå½Ć ¾÷±×·¹ĄĢµåµĒ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr "ĄŚµæĄø·Ī ¼±ÅĆµČ ĘŃÅ°Įöµé ŗøĄĢ±ā"
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "¼³Ä”"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
msgid "Load/Save on floppy"
msgstr "ĒĆ·ĪĒĒæ” ĄśĄå/ĄūĄē"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
msgid "Updating package selection"
msgstr "¼±ÅĆµČ ĘŃÅ°Įö øń·Ļ ¾÷µ„ĄĢĘ® Įß"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
msgid "Minimal install"
msgstr "ĆÖ¼Ņ ¼³Ä”"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "¼³Ä”ĒĻ°ķĄŚ ĒĻ“Ā ĘŃÅ°Įöø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "¼³Ä”Įß"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "°č»ź Įß"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "³²Ąŗ ½Ć°£ "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "¼³Ä” ĮŲŗńĮߥŌ“Ļ“Ł. Ąį½Ć ±ā“Łø®¼¼æä."
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d ĘŃÅ°Įö"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "%s ĘŃÅ°Įö ¼³Ä”Įß"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "µæĄĒ"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "°ÅŗĪ"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4402,17 +4578,17 @@ msgstr ""
"”ø%s”¹¶ó°ķ ¾²æ©Įų CDROMĄ» µå¶óĄĢŗźæ” ³ÖĄŗ ČÄ, ”øČ®ĄĪ”¹Ą» “­·Æ ĮÖ¼¼æä.\n"
"øø¾ą CDROMĄ» °”Įö°ķ ĄÖĮö ¾Ź“Łøé, ”øĆė¼Ņ”¹ø¦ “­·Æ Ćß°” ¼³Ä”ø¦ Ćė¼ŅĒĻ¼¼æä."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "°č¼Ó ĮųĒąĒÕ“Ļ±ī?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "ĘŃÅ°Įöø¦ Į¤·ÄĒĻ“Ā Įß æĄ·ł¹ß»ż:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "“ŁĄ½ ĘŃÅ°Įöø¦ ¼³Ä”Įß æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł: "
@@ -4453,9 +4629,8 @@ msgid "An error occurred"
msgstr "æĄ·ł ¹ß»ż"
#: ../../install_steps_interactive.pm_.c:85
-#, fuzzy
msgid "Do you really want to leave the installation?"
-msgstr "Į¤ø»·Ī ”ø%s”¹ĒĮø°ÅĶø¦ Į¦°ÅĒÕ“Ļ±ī?"
+msgstr "Į¤ø»·Ī ¼³Ä”ø¦ ±×øø µĪ°Ś½Ą“Ļ±ī?"
#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
@@ -4586,108 +4761,104 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Å°ŗøµå"
-#: ../../install_steps_interactive.pm_.c:214
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:212
msgid "Please choose your keyboard layout."
-msgstr "Å°ŗøµå ·¹ĄĢ¾Ęæō ¼±ÅĆ"
+msgstr "Å°ŗøµå ·¹ĄĢ¾Ęæō ¼±ÅĆĄ» ¼±ÅĆĒĻ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "ĮöæųµĒ“Ā Å°ŗøµå øń·ĻĄĢ 橱āæ” ĄÖ½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "¼³Ä” ĄÆĒüĄ» ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "¼³Ä”/¾÷µ„ĄĢĘ®"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "¼³Ä”ĒÕ“Ļ±ī ¾Ę“Ļøé ¾÷µ„ĄĢĘ® ĒÕ“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "±ĒĄå"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Ąü¹®°”"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade"
-msgstr "¾÷µ„ĄĢĘ®"
+msgstr "¾÷±×·¹ĄĢµå"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
msgid "Upgrade packages only"
-msgstr "¼±ÅĆµČ ĘŃÅ°Įö øń·Ļ ¾÷µ„ĄĢĘ® Įß"
+msgstr "ĘŃÅ°Įöøø ¾÷±×·¹ĄĢµå"
-#: ../../install_steps_interactive.pm_.c:276
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
-msgstr "¾ī¶² Į¾·łĄĒ ø¶æģ½ŗø¦ »ēæėĒĻ½Ź“Ļ±ī?"
+msgstr "ø¶æģ½ŗ Į¾·łø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "ø¶æģ½ŗ Ę÷Ę®"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr "¾ī¶² ½Ćø®¾ó Ę÷Ę®æ” ø¶æģ½ŗ°” 欰įµĒ¾ī ĄÖ³Ŗæä?"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr "¹öĘ° 改ķ¹ĄĢ¼Ē"
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr "¹öĘ° 2 改ķ¹ĄĢ¼Ē"
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr "¹öĘ° 3 改ķ¹ĄĢ¼Ē"
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIS Ä«µå ČÆ°ę¼³Į¤Įß..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "IDE ¼³Į¤Įß"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "»ēæė°”“ÉĒŃ ĘÄĘ¼¼ĒĄĢ ¾ų½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "ø¶æīĘ® Ą§Ä”ø¦ Ć£±āĄ§ĒŲ ĘÄĘ¼¼ĒµéĄ» °Ė»ö Įß"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "ø¶æīĘ® Ą§Ä”ø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4705,7 +4876,7 @@ msgstr ""
"\n"
"ĘÄĘ¼¼ĒµéĄ» ĄŅ¾īµµ ĮĮ½Ą“Ļ±ī?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4713,7 +4884,7 @@ msgstr ""
"µš½ŗÅ©µå·¹Å©°” ĘÄĘ¼¼Ē ÅץĢŗķĄ» Į¤Č®Č÷ ĄŠ¾īæĄ“Āµ„ ½ĒĘŠĒß½Ą“Ļ“Ł.\n"
"Ą§Ē襻 °Ø¼öĒŅ ĮŲŗń°” µČ °ęæģæ”øø °č¼ÓĒĻ¼¼æä!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4721,76 +4892,74 @@ msgstr ""
"1MB ŗĪĘ®½ŗĘ®·¦ °ų°£ ŗĪĮ·! ¼³Ä”“Ā °č¼ÓĒŅ ¼ö ĄÖĮöøø, ½Ć½ŗÅŪĄ» ŗĪĘĆĒĻ±ā Ą§ĒŲ¼­"
"“Ā µš½ŗÅ©µå·¹ĄĢũ攼­ ŗĪĘ®½ŗĘ®·¦ ĘÄĘ¼¼ĒĄ» øøµé¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
msgid "No root partition found to perform an upgrade"
msgstr "¾÷±×·¹ĄĢµåĒŅ ·ēĘ® ĘÄĘ¼¼ĒĄ» Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "·ēĘ® ĘÄĘ¼¼Ē"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "½Ć½ŗÅŪ攼­ ·ēĘ® ĘÄĘ¼¼Ē(/)Ąŗ ¾ī¶²°ĶĄŌ“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr "ĘÄĘ¼¼Ē ÅץĢŗķ ŗÆ°ę»ēĒץ» ĄūæėĒĻ·Įøé ø®ŗĪĘĆĄ» ĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Ę÷øĖĒŅ ĘÄĘ¼¼ĒĄ» ¼±ÅĆĒĻ¼¼æä"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "¹čµå ŗķ·° °Ė»ēø¦ ĒÕ“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "ĘÄĘ¼¼Ē Ę÷øĖ"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s ĘÄĄĻø¦ »ż¼ŗĒĻ°ķ Ę÷øĖ"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "½ŗæŅ øŽøšø®°” ŗĪĮ·ĒÕ“Ļ“Ł. Į» “õ Ćß°”ĒĻ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:490
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:489
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "ĄÆČæĒŃ ĘŃÅ°Įöø¦ Ć£°ķ ĄÖ½Ą“Ļ“Ł."
+msgstr "ĄÆČæĒŃ ĘŃÅ°Įö °Ė»ö ¹× RPM µ„ĄĢÅĶŗ£ĄĢ½ŗ ĄēĮ¶ĒÕ Įß..."
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "ĄÆČæĒŃ ĘŃÅ°Įöø¦ Ć£°ķ ĄÖ½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:495
+#: ../../install_steps_interactive.pm_.c:493
+msgid "Looking at packages already installed..."
+msgstr "ĄĢ¹Ģ ¼³Ä”µČ ĘŃÅ°Įö Ć£“Ā Įß..."
+
+#: ../../install_steps_interactive.pm_.c:497
msgid "Finding packages to upgrade..."
msgstr "¾÷±×·¹ĄĢµåĒŅ ĘŃÅ°Įöø¦ °Ė»öĮߥŌ“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:498
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "ĄĢ ĘŃÅ°Įöø¦ ¼±ÅĆĒŲĮ¦ĒŅ ¼ö ¾ų½Ą“Ļ“Ł. ĄĢ¹Ģ ¼³Ä” µĒ¾ś½Ą“Ļ“Ł."
-
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "¼³Ä” ¶Ē“Ā ¾÷±×·¹ĄĢµåø¦ Ą§ĒŃ µš½ŗÅ© °ų°£ĄĢ ŗĪĮ·ĒÕ“Ļ“Ł. (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4798,49 +4967,49 @@ msgstr ""
"ĒĆ·ĪĒĒæ” ĘŃÅ°Įö ¼±ÅĆøń·ĻĄ» ĄūĄē ¶Ē“Ā ĄśĄåĒŅĮöø¦ ¼±ÅĆĒĻ¼¼æä.\n"
"Ēü½Ä(Ę÷øĖ)Ąŗ ĄŚµæ¼³Ä” »ż¼ŗ ĒĆ·ĪĒĒæĶ µæĄĻĒÕ“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
msgid "Load from floppy"
msgstr "ĒĆ·ĪĒĒ攼­ ĄŠ±ā"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Loading from floppy"
msgstr "ĒĆ·ĪĒĒ攼­ ĄŠ“Ā Įß"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
msgid "Package selection"
msgstr "ĘŃÅ°Įö ¼±ÅĆ"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
msgid "Insert a floppy containing package selection"
msgstr "ĘŃÅ°Įö ¼±ÅĆøń·Ļ ĒĆ·ĪĒĒ µš½ŗÅ©ø¦ ³ÖĄø¼¼æä."
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "ĒĆ·ĪĒĒæ” ĄśĄå"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr "¼±ÅĆµČ æė·®ĄĢ »ēæėĒŅ ¼ö ĄÖ“Ā °ų°£ŗø“Ł Å®“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4859,11 +5028,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "”ø%s”¹¶ó°ķ Ē„½ĆµČ CDROM"
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "¼³Ä” ĮŲŗńĮߥŌ“Ļ“Ł"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4872,21 +5041,21 @@ msgstr ""
" %s ĘŃÅ°Įö ¼³Ä” Įß... \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "¼³Ä”Ąü ČÆ°ę¼³Į¤"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "ŗĪĘĆ ĒĆ·ĪĒĒø¦ %s µå¶óĄĢŗźæ” ³ÖĄø¼¼æä"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "¾÷µ„ĄĢĘ® øšµā ĒĆ·ĪĒĒø¦ %s µå¶óĄĢŗźæ” ³ÖĄø¼¼æä"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4925,7 +5094,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4937,178 +5106,182 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:919
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr "»ēæė°”“ÉĒŃ ĘŃÅ°ĮöĄĒ ø®½ŗĘ®ø¦ ¹Ģ·Æ »ēĄĢĘ®æ” Į¢¼ÓĒŲ¼­ ¹Ž½Ą“Ļ“Ł."
+msgstr "ĄÆČæĒŃ ¹Ģ·Æ øń·ĻĄ» ¹Ž±ā Ą§ĒŲ øĒµå·¹ĄĢÅ© ø®“Ŗ½ŗ Ą„»ēĄĢĘ®æ” Į¢¼Ó Įß..."
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "ĘŃÅ°Įöø¦ ¹ŽĄ» ¹Ģ·Æ »ēĄĢĘ®ø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr "»ēæė°”“ÉĒŃ ĘŃÅ°ĮöĄĒ ø®½ŗĘ®ø¦ ¹Ģ·Æ »ēĄĢĘ®æ” Į¢¼ÓĒŲ¼­ ¹Ž½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "“ŌĄĒ ½Ć°£“ė“Ā ¾īµšĄŌ“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
msgid "Hardware clock set to GMT"
msgstr "ĒĻµåæž¾ī ½Ć°č GMT ¼³Į¤"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr "ĄŚµæ ½Ć°£ µæ±āČ­ (NTP »ēæė)"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
msgid "NTP Server"
msgstr "NTP ¼­¹ö"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "æų°Ż CUPS ¼­¹ö"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "ĒĮø°ÅĶ ¾ųĄ½"
-#: ../../install_steps_interactive.pm_.c:1024
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1025
msgid "Do you have an ISA sound card?"
-msgstr "¶Ē “Łø„°ĶĄĢ ¼³Ä”µĒ¾ī ĄÖ½Ą“Ļ±ī?"
+msgstr "ISA »ēæīµå Ä«µå°” ĄÖ½Ą“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "æä¾ą¼³øķ"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "ø¶æģ½ŗ"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "½Ć°£“ė"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "ĒĮø°ÅĶ"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
msgid "ISDN card"
msgstr "ISDN Ä«µå"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
msgid "Sound card"
msgstr "»ēæīµå Ä«µå"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr "TV Ä«µå"
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
-#, fuzzy
-msgid "Windows PDC"
-msgstr "Ą©µµæģĮī(TM) Į¦°Å"
-
#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
+msgid "Windows Domain"
+msgstr "Ą©µµæģĮī µµøŽĄĪ"
+
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
msgid "Local files"
msgstr "ĮöæŖ ĘÄĄĻµé"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root ¾ĻČ£ ¼³Į¤"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "¾ĻČ£ ¾ųĄ½"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "ĄĢ ¾ĻČ£“Ā ³Ź¹« “ܼųĒÕ“Ļ“Ł.( Ąū¾īµµ %d ±ŪĄŚ“Ā ³Ń¾ī¾ß ĒÕ“Ļ“Ł)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "»ēæėĄŚ ĄĪĮõ"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Authentication LDAP"
msgstr "ĄĪĮõ LDAP"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr "LDAP ±ā¹Ż DN"
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
msgid "LDAP Server"
msgstr "LDAP ¼­¹ö"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
msgid "Authentication NIS"
msgstr "ĄĪĮõ NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS µµøŽĄĪ"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS ¼­¹ö"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "ĄĪĮõ LDAP"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS µµøŽĄĪ"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
-#, fuzzy
-msgid "PDC Server Name"
-msgstr "NTP ¼­¹ö"
+msgid "Authentication Windows Domain"
+msgstr "ĄĪĮõ Ą©µµæģĮī µµøŽĄĪ"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+msgid "Domain Admin User Name"
+msgstr "µµøŽĄĪ °üø®ĄŚ »ēæėĄŚøķ"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5126,19 +5299,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Ć¹¹ųĀ° ĒĆ·ĪĒĒ µå¶óĄĢŗź"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "µĪ¹ųĀ° ĒĆ·ĪĒĒ µå¶óĄĢŗź"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "°Ē³Ź¶Ł±ā"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5161,7 +5334,7 @@ msgstr ""
"øøµå½Ć°Ś½Ą“Ļ±ī?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5170,28 +5343,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "ĮĖ¼ŪĒÕ“Ļ“Ł. »ēæė°”“ÉĒŃ ĒĆ·ĪĒĒ µå¶óĄĢŗź°” ¾ų½Ą“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ŗĪĘ® µš½ŗÅ©ø¦ øøµé¶§ »ēæėĒŅ ĒĆ·ĪĒĒ µå¶óĄĢŗźø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä"
-#: ../../install_steps_interactive.pm_.c:1221
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1223
+#, c-format
msgid "Insert a floppy in %s"
-msgstr "ĒĆ·ĪĒĒ µš½ŗÅ©ø¦ %s µå¶óĄĢŗźæ” ³ÖĄø¼¼æä"
+msgstr "%sæ” ĒĮ·ĪĒĒø¦ ³ÖĄø¼¼æä."
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "ŗĪĘ® µš½ŗÅ© »ż¼ŗĮß"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "ŗĪĘ® ·Ī“õ ĮŲŗńĮß"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5199,11 +5372,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "abootø¦ »ēæėĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5211,15 +5384,15 @@ msgstr ""
"aboot ¼³Ä” ½ĒĘŠ. \n"
"Ć¹¹ųĀ° ĘÄĘ¼¼ĒĄ» ČŃ¼ÕĒŅĮö¶óµµ °­Į¦ ¼³Ä”ĒŅ±īæä?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
msgid "Installing bootloader"
msgstr "ŗĪĘ®·Ī“õ ¼³Ä” Įß"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "ŗĪĘ®·Ī“õ ¼³Ä”°” ½ĒĘŠĒß½Ą“Ļ“Ł. “ŁĄ½°ś °°Ąŗ æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5236,17 +5409,17 @@ msgstr ""
"shut-down\n"
"±×·Æ°ķ³Ŗøé “ŁĄ½ŗĪÅĶ“Ā ŗĪĘ®·Ī“õ ĒĮ·ŅĒĮĘ®ø¦ ŗ¼ ¼ö ĄÖĄ» °ĶĄŌ“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s µå¶óĄĢŗźæ” ŗó ĒĆ·ĪĒĒ µš½ŗÅ©ø¦ ³ÖĄø¼¼æä"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "ĄŚµæ ¼³Ä” ĒĆ·ĪĒĒ µš½ŗÅ© »ż¼ŗ Įß"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5256,7 +5429,7 @@ msgstr ""
"\n"
"Į¤ø» Įö±Ż Į¾·į ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5286,15 +5459,15 @@ msgstr ""
"¼³Ä”ČÄ ½Ć½ŗÅŪ ¼³Į¤æ” “ėĒŃ Į¤ŗø“Ā °ų½Ä øĒµå·¹ĄĢÅ© ø®“Ŗ½ŗ ĄÆĄś °”ĄĢµåø¦\n"
"Āü°ķĒĻ½Ć±ā ¹Ł¶ų“Ļ“Ł."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "ĄŚµæ ¼³Ä” ĒĆ·ĪĒĒ µš½ŗÅ© »ż¼ŗ"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5308,15 +5481,15 @@ msgstr ""
"\n"
"ĄĻ¹ŻĄūĄø·Ī Į÷Į¢ ¼³Ä”ĒĻ“Ā °ĶĄĢ ĮĮ½Ą“Ļ“Ł.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "ĄŚµæ"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Ąē½Ćµµ"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "¼±ÅĆµČ ĘŃÅ°Įö øń·Ļ ĄśĄå"
@@ -5343,395 +5516,456 @@ msgstr ""
msgid "Choose a file"
msgstr "ĘÄĄĻ ¼±ÅĆ"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "°ķ±Ž"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- ĄĢĄü"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+msgid "Next"
+msgstr "“ŁĄ½"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "ĄßøųµČ ¼±ÅĆĄŌ“Ļ“Ł, “Ł½Ć ĒĻ¼¼æä\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "“ŌĄĒ ¼±ÅĆĄŗ? (±āŗ»°Ŗ %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "“ŌĄĒ ¼±ÅĆĄŗ? (0/1 ±āŗ»°Ŗ ”ø%s”¹) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, c-format
msgid "Button `%s': %s"
msgstr "¹öĘ° ”ø%s”¹: %s"
-#: ../../interactive/stdio.pm_.c:94
-#, fuzzy
+#: ../../interactive/stdio.pm_.c:96
msgid "Do you want to click on this button?"
-msgstr "abootø¦ »ēæėĒĻ½Ć°Ś½Ą“Ļ±ī?"
+msgstr "ĄĢ ¹öĘ°Ą» “©ø£½Ć°Ś½Ą“Ļ±ī?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "“ŌĄĒ ¼±ÅĆĄŗ? (±āŗ»°Ŗ ”ø%s”¹%s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr "ĄēĄü¼Ū"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Ć¼ÄŚ (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "µ¶ĄĻ"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "µåŗø¶ō"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "½ŗĘäĄĪ"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Ēɶõµå"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "ĒĮ¶ū½ŗ"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "³ėø£æžĄĢ"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Ęś¶õµå"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "·Æ½Ć¾Ę"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "½ŗæžµ§"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "æµ±¹"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "¹Ģ±¹"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
msgid "Albanian"
msgstr "¾Ė¹Ł“Ļ¾Ę"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "¹Ģ±¹ (±ø¹öĄü)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "¹Ģ±¹ (ÅøĄŚ±ā)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "¹Ģ±¹ (Ą½¼ŗĒŠ)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (¶óĘ¾)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "ŗ§±āæ”"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "Ēćæė"
+
+#: ../../keyboard.pm_.c:199
msgid "Bulgarian (phonetic)"
msgstr "ŗŅ°”ø®¾Ę (Ą½¼ŗĒŠ)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
msgid "Bulgarian (BDS)"
msgstr "ŗŅ°”ø®¾Ę (BDS)"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "ŗź¶óĮś (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "攽ŗÅä“Ļ¾Ę"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "ŗ§¶ó·ē½Ć¾Ę"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "½ŗĄ§½ŗ (µ¶¾ī)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "½ŗĄ§½ŗ (ŗŅ¾ī)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Ć¼ÄŚ (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "µ¶ĄĻ (dead Å° ¾ųĄ½)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "µ§ø¶Å©"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "µåŗø¶ō(US)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "µåŗø¶ō(³ėø£æžĄĢ)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
msgid "Dvorak (Swedish)"
msgstr "µåŗø¶ō(½ŗæžµ§)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "攽ŗÅä“Ļ¾Ę"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "±×·ēĮö¾Ę(·Æ½Ć¾Ę¾ī)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "±×·ēĮö¾Ę (¶óĘ¾)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "±×ø®½ŗ"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Ēė°”ø®"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Å©·Ī¾ĘĘ¼¾Ę"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "ĄĢ½ŗ¶óæ¤"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "ĄĢ½ŗ¶óæ¤ (Ą½¼ŗĒŠ)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "ĄĢ¶õ"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "¾ĘĄĢ½½·£µå"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "ĄĢÅ»ø®¾Ę"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "ĄĻŗ» 106Å°"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
msgid "Korean keyboard"
msgstr "ĒѱŪ Å°ŗøµå"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "¶óĘ¾ ¾ĘøŽø®Ä«"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "¶óĘ®¹Ł¾Ę"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "ø®Åõ¾Ę“Ļ¾Ę AZERTY (±øĒü)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "ø®Åõ¾Ę“Ļ¾Ę AZERTY (½ÅĒü)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ø®Åõ¾Ę“Ļ¾Ę (¼żĄŚæ­ QWERTY)"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ø®Åõ¾Ę“Ļ¾Ę (Ą½¼ŗĒŠ QWERTY)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
msgid "Latvian"
msgstr "¶óĘ®¹Ł¾Ę"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "ø¶Äɵµ“Ļ¾Ę"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "¼¼ø£ŗń¾Ę (½Ćø±)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "³×µØ¶õµå"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Ęś¶õµå (QwertY)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Ęś¶õµå (QwertZ)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Ę÷·ēÅõÄ®"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "ij³Ŗ“Ł (Äłŗ¤)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
msgid "Romanian (qwertz)"
msgstr "·Īøø (QWERTZ)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
msgid "Romanian (qwerty)"
msgstr "·Īøø (QWERTY)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "·Æ½Ć¾Ę (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "½½·Īŗ£“Ļ¾Ę"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "½½·Ī¹ŁÅ°¾Ę (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "½½·Ī¹ŁÅ°¾Ę (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
msgid "Serbian (cyrillic)"
msgstr "¼¼ø£ŗń¾Ę (½Ćø±)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "ÅץĢŗķ"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "ÅĀ±¹"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
msgid "Tajik keyboard"
msgstr "ÅøĮöÅ© Å°ŗøµå"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "ÅĶ±ā (ĄüÅė ”øF”¹øšµØ"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "ÅĶÅ° (Ēö“ė ”øQ”¹øšµØ"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "æģÅ©¶óĄĢ³Ŗ"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "US Å°ŗøµå (±¹Į¦)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "ŗ£Ę®³² (¼żĄŚæ­ QWERTY)"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
msgid "Yugoslavian (latin)"
msgstr "ĄÆ°ķ½½¶óŗń¾Ę (¶óĘ¾)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5740,37 +5974,35 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "¼ųČÆ ø¶æīĘ® %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "³ķø® ŗ¼·żĄ» øÕĄś Į¦°ÅĒŲ ĮÖ¼¼æä.\n"
-#: ../../modparm.pm_.c:51
-#, fuzzy
+#: ../../modparm.pm_.c:50
msgid "a number"
-msgstr "ĄüČ­ ¹ųČ£"
+msgstr "¹ųČ£"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
-#, fuzzy
+#: ../../modparm.pm_.c:54
msgid "comma separated strings"
-msgstr "ĘÄĘ¼¼Ē Ę÷øĖ"
+msgstr "½°Ē„ ŗŠø® ¹®ĄŚæ­µé"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5873,53 +6105,43 @@ msgstr "¾ųĄ½"
msgid "No mouse"
msgstr "ø¶æģ½ŗ ¾ųĄ½"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "ø¶æģ½ŗø¦ Å×½ŗĘ®ĒĻ¼¼æä."
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "ø¶æģ½ŗø¦ Č°¼ŗČ­ĒĻ·Įøé"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "ø¶æģ½ŗČŁĄ» æņĮ÷æ© ŗø¼¼æä."
-#: ../../my_gtk.pm_.c:688
-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-"
-"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Į¾·į"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "“ŁĄ½ ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- ĄĢĄü"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "ĄĢ°ĶĄĢ øĀ½Ą“Ļ±ī?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Į¤ŗø"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Ę®ø® Č®Ąå"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Ę®ø® Į¢±ā"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "±×·ģŗ°/ĘŃÅ°Įöŗ° Į¤·Ä ĄüČÆ"
@@ -5942,6 +6164,10 @@ msgid "Alcatel speedtouch usb"
msgstr "¾ĖÄ«ÅŚ ½ŗĒĒµåÅĶÄ” USB"
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr "ECI Hi-Focus"
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "DHCP »ēæė"
@@ -5969,7 +6195,7 @@ msgstr ""
"¾ī¶°ĒŃ ³×Ę®æ÷ ¾ī“šÅĶµµ °ØĮöµĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł.\n"
"欰į ¼³Į¤Ą» ĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "³×Ę®æ÷ ĄĪÅĶĘäĄĢ½ŗø¦ ¼±ÅĆĒĻ¼¼æä."
@@ -5982,7 +6208,7 @@ msgstr "¾ī¶² ¾ī“šÅĶ·Ī ĄĪÅĶ³Żæ” 欰įĒŅ °ĶĄĪĮö ¼±ÅĆĒĻ¼¼æä."
msgid "no network card found"
msgstr "³×Ę®æ÷ Ä«µåø¦ Ć£Ą»¼ö ¾ų½Ą“Ļ“Ł"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "³×Ę®æ÷ ¼³Į¤"
@@ -5998,7 +6224,7 @@ msgstr ""
"Č£½ŗĘ®øķĄŗ æĻŗ®ĒŃ Į¤±ŌĒüĄĢ¾ī¾ß ĒÕ“Ļ“Ł.\n"
"æ¹)”ømybox.mylab.myco.com”¹"
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Č£½ŗĘ®øķ:"
@@ -6026,7 +6252,7 @@ msgstr "¾ī¶² Į¾·łĄĒ ISDN 欰įĄ» »ēæėĒÕ“Ļ±ī?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6152,43 +6378,43 @@ msgstr "¾ī¶² ½Ćø®¾ó Ę÷Ę®æ” ø¶æģ½ŗ°” 欰įµĒ¾ī ĄÖ³Ŗæä?"
msgid "Dialup options"
msgstr "“ŁĄĢ¾ó¾÷ æɼĒ"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "欰į ĄĢø§"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "ĄüČ­ ¹ųČ£"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "·Ī±×ĄĪ ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "½ŗÅ©ø³Ę® ±ā¹Ż"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "ÅĶ¹Ģ³Æ ±ā¹Ż"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "µµøŽĄĪ ĄĢø§"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
msgid "First DNS Server (optional)"
msgstr "Ć¹¹ųĀ° DNS ¼­¹ö (æɼĒ)"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
msgid "Second DNS Server (optional)"
msgstr "µĪ¹ųĀ° DNS ¼­¹ö (æɼĒ)"
@@ -6301,13 +6527,13 @@ msgstr "¼³Į¤ĒŅ ĒĮ·ĪĘÄĄĻĄ» ¼±ÅĆĒĻ¼¼æä."
msgid "Use auto detection"
msgstr "ĄŚµæ°Ė»ö »ēæė"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Ąü¹®°” øšµå"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "ĄåÄ”ø¦ °Ė»öĒĻ°ķ ĄÖ½Ą“Ļ“Ł..."
@@ -6420,7 +6646,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6431,7 +6657,7 @@ msgstr ""
"±×³É ĒöĄē ¼³Į¤Ą» ĄÆĮöĒĻ¼¼æä.\n"
"¾Ę·” ĄŌ·Ā¶õĄ» ŗÆ°ęĒĻøé ĒöĄē ¼³Į¤Ą» µ¤¾ī¾²°Ō µĖ“Ļ“Ł."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6441,43 +6667,42 @@ msgstr ""
"°¢°¢ĄĒ Ē×øńĄŗ”ø.”¹Ąø·Ī ±øŗŠµČ ½ŹĮų¼ö IP ĮÖ¼Ņ·Ī ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł.\n"
"(æ¹, 1.2.3.4)"
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "%s ³×Ę®æ÷ Ä«µå ¼³Į¤Įß"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (%s µå¶óĄĢ¹ö)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ĮÖ¼Ņ"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "³Żø¶½ŗÅ©"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "IP ĄŚµæĒŅ“ē"
-#: ../../network/network.pm_.c:314
-#, fuzzy
+#: ../../network/network.pm_.c:315
msgid "Start at boot"
-msgstr "ŗĪĘĆ½Ć ½ĆĄŪµŹ"
+msgstr "ŗĪĘĆ½Ć ½ĆĄŪ"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ĮÖ¼Ņ“Ā 1.2.3.4°ś °°Ąŗ Ēü½ÄĄĢ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6489,40 +6714,40 @@ msgstr ""
"ĄĢø§ĄĢ¾ī¾ß ĒÕ“Ļ“Ł. \n"
"°ŌĄĢĘ® æžĄĢ°” ĄÖ“Łøé ±× IP ĮÖ¼Ņµµ ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS ¼­¹ö"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "rpdlxmdnpdl (æ¹. %s)"
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "°ŌĄĢĘ®æžĄĢ ĄåÄ”"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "ĒĮ¶ō½Ć ¼³Į¤"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "Ą„ ĒĮ¶ō½Ć"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP ĒĮ¶ō½Ć"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr "³×Ę®æ÷Ä«µå ID Ćߥū (·¦Å¾æ” ĄÆæėĒŌ)"
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "ĒĮ¶ō½Ć ĄĢø§Ąŗ httP://... ĄĢ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "ĒĮ¶ō½Ć ĄĢø§Ąŗ ftp://... ĄĢ¾ī¾ß ĒÕ“Ļ“Ł."
@@ -6534,7 +6759,7 @@ msgstr "ĄĪÅĶ³Ż ¼³Į¤"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Įö±Ż ĄĪÅĶ³Ż 欰įĄ» ½ĆµµĒŲ ŗø½Ć°Ś½Ą“Ļ±ī?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "欰į Å×½ŗĘ® Įß..."
@@ -6562,43 +6787,43 @@ msgstr "欰į ¼³Į¤"
msgid "Please fill or check the field below"
msgstr "¾Ę·” ¾ē½ÄĄ» Ƥæö ĮÖ¼¼æä."
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Ä«µå IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Ä«µå øŽøšø® (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Ä«µå IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Ä«µå IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Ä«µå IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "“ŌĄĒ °³ĄĪ ĄüČ­ ¹ųČ£"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "°ų±ŽĄŚ ĄĢø§ (æ¹ provider.net)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "°ų±ŽĄŚ ĄüČ­¹ųČ£"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "°ų±ŽĄŚ DNS 1 (æɼĒ)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "°ų±ŽĄŚ DNS 2 (æɼĒ)"
@@ -6606,30 +6831,30 @@ msgstr "°ų±ŽĄŚ DNS 2 (æɼĒ)"
msgid "Choose your country"
msgstr "±¹°” ¼±ÅĆ"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "“ŁĄĢ¾óøµ øšµå"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
msgid "Connection speed"
msgstr "欰į ¼Óµµ"
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
msgid "Connection timeout (in sec)"
msgstr "欰į ½Ć°£ĆŹ°ś (ĆŹ)"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "·Ī±×ĄĪ °čĮ¤(»ēæėĄŚøķ)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "°čĮ¤ ¾ĻČ£"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "æµ±¹"
#: ../../partition_table.pm_.c:606
msgid "mount failed: "
@@ -6663,7 +6888,7 @@ msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
msgid "Error writing to file %s"
msgstr "%s ĘÄĄĻæ” ¾²±ā æĄ·ł"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6709,7 +6934,7 @@ msgstr "LPD - Line Printer Daemon"
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr "CUPS"
@@ -6737,14 +6962,13 @@ msgstr "æų°Ż ĒĮø°ÅĶ"
msgid "Printer on remote CUPS server"
msgstr "æų°Ż CUPS ¼­¹öĄĒ ĒĮø°ÅĶ"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
msgid "Printer on remote lpd server"
msgstr "æų°Ż LPD ¼­¹öĄĒ ĒĮø°ÅĶ"
#: ../../printer.pm_.c:54
-#, fuzzy
msgid "Network printer (TCP/Socket)"
-msgstr "³×Ę®æ÷ ĒĮø°ÅĶ (¼ŅÄĻ)"
+msgstr "³×Ę®æ÷ ĒĮø°ÅĶ (TCP/¼ŅÄĻ)"
#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
@@ -6754,7 +6978,7 @@ msgstr "»ļ¹Ł/Ą©µµæģĮī 95/98/NT»óĄĒ ĒĮø°ÅĶ"
msgid "Printer on NetWare server"
msgstr "³×Ę®æž¾ī ¼­¹ö»óĄĒ ĒĮø°ÅĶ"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
msgid "Enter a printer device URI"
msgstr "ĒĮø°ÅĶ ĄåÄ” URIĄ» ĄŌ·ĀĒĻ¼¼æä."
@@ -6762,112 +6986,110 @@ msgstr "ĒĮø°ÅĶ ĄåÄ” URIĄ» ĄŌ·ĀĒĻ¼¼æä."
msgid "Pipe job into a command"
msgstr "ĄŪ¾÷Ą» øķ·ÉĄø·Ī ĘÄĄĢĒĮ 欰į"
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr "¾Ė ¼ö¾ų“Ā øšµØ"
-#: ../../printer.pm_.c:535
-#, fuzzy
+#: ../../printer.pm_.c:515
msgid "Local Printers"
msgstr "·ĪÄĆ ĒĮø°ÅĶ"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
-#, fuzzy
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
msgid "Remote Printers"
msgstr "æų°Ż ĒĮø°ÅĶ"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, c-format
msgid ", printing to %s"
msgstr ", %sæ” ĄĪ¼ā"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr "³Æ(RAW) ĒĮø°ÅĶ (µå¶óĄĢ¹ö »ēæė¾ČĒŌ)"
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, c-format
msgid "(on %s)"
msgstr "(%sæ”)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr "(ĄĢ ¼­¹ö»óĄĒ)"
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS ¼­¹ö IP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (±āŗ»°Ŗ)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "ĒĮø°ÅĶ 欰į¹ę¹żĄ» ¼±ÅĆĒĻ¼¼æä."
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "ĒĮø°ÅĶ°” ¾ī¶»°Ō 欰įµĒ¾ī ĄÖ½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6879,15 +7101,19 @@ msgstr ""
"¾ų½Ą“Ļ“Ł; ĄĢ·± ĒĮø°ÅĶ“Ā ĄŚµæĄø·Ī °ØĮöµĒ¾ī Įż“Ļ“Ł. ĄĢæĶ °°Ąŗ °ęæģ\n"
"”øæų°Ż CUPS ¼­¹öĄĒ ĒĮø°ÅĶ”¹ø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
msgid "CUPS configuration"
msgstr "CUPS ¼³Į¤"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
msgid "Specify CUPS server"
msgstr "CUPS ¼­¹ö ĮöĮ¤"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
#, fuzzy
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
@@ -6909,7 +7135,7 @@ msgstr ""
"Ę÷Ę® ¹ųČ£(æɼĒ)ø¦ ĮöĮ¤ĒŲ¾ßøø ¼­¹ö·ĪŗĪÅĶ ĒĮø°ÅĶ Į¤ŗøø¦ ¹Ž¾ĘæĆ ¼ö\n"
"ĄÖ½Ą“Ļ“Ł. ĄĢ·± °ęæģ°” ¾Ę“Ļ¶óøé ĄĢ æµæŖµéĄŗ ±×³É ŗńæöµĪ¼¼æä."
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
#, fuzzy
msgid ""
"\n"
@@ -6927,32 +7153,32 @@ msgstr ""
"ø¦ Į÷Į¢ ¼öĮ¤ĒŲ ĮÖ¼¼æä. ³ŖĮßæ” CUPSø¦ “Ł½Ć ½ĒĒąĒĻ“Ā °ĶĄ»\n"
"ĄŲĮöø¶¼¼æä. (øķ·É¾ī: ”øservice cups restart”¹ )"
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ĮÖ¼Ņ“Ā ”ø192.168.1.20”¹°ś °°Ąŗ Ēü½ÄĄĢ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
msgid "The port number should be an integer!"
msgstr "Ę÷Ę® ¹ųČ£“Ā Į¤¼öĄĢ¾ī¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS ¼­¹ö IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Ę÷Ę®"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
msgid "Automatic CUPS configuration"
msgstr "ĄŚµæ CUPS ¼³Į¤"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
msgid "Add a new printer"
msgstr "»õ ĒĮø°ÅĶ Ćß°”"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6965,35 +7191,67 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-msgid "Local Printer"
-msgstr "ĮöæŖ ĒĮø°ÅĶ"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
-msgid "Auto-detect printers"
+#: ../../printerdrake.pm_.c:213
+#, fuzzy
+msgid "Auto-detect printers connected to this machine"
msgstr "ĒĮø°ÅĶ ĄŚµæ°Ė»ö"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+msgid "Local Printer"
+msgstr "ĮöæŖ ĒĮø°ÅĶ"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7007,51 +7265,49 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr "ĒĮø°ÅĶ ĄŚµæ°Ė»ö"
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Printer auto-detection"
+msgstr "ĒĮø°ÅĶ ĄŚµæ °Ė»ö"
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
msgstr ""
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
-msgid "Do auto-detection"
-msgstr "ĄŚµæ°Ė»ö"
-
-#: ../../printerdrake.pm_.c:223
-msgid "Set up printer manually"
-msgstr "ĒĮø°ÅĶ ¼öµæ¼³Į¤"
-
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ę÷Ę® °Ė»ē"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "»ļ¹Ł/Ą©µµæģĮī 95/98/NT»óĄĒ ĒĮø°ÅĶ"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, c-format
msgid "Detected %s"
msgstr "%s ¹ß°ß"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "³×Ę®æ÷ ĒĮø°ÅĶ (¼ŅÄĻ)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "»ļ¹Ł/Ą©µµæģĮī 95/98/NT»óĄĒ ĒĮø°ÅĶ"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7059,43 +7315,31 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
-#, fuzzy
+#: ../../printerdrake.pm_.c:464
msgid "You must enter a device or file name!"
-msgstr "ĒĮø°ÅĶ ĄåÄ” URIĄ» ĄŌ·ĀĒĻ¼¼æä."
-
-#: ../../printerdrake.pm_.c:390
-#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
-msgstr "·ĪÄĆ ĒĮø°ÅĶ"
+msgstr "ĄåÄ” ¶Ē“Ā ĘÄĄĻ ĄĢø§Ą» ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
+#: ../../printerdrake.pm_.c:475
+msgid "No printer found!"
+msgstr "ĒĮø°ÅĶø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+msgid "Available printers"
+msgstr "ĄÆČæĒŃ ĒĮø°ÅĶµé"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7103,7 +7347,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7111,82 +7355,35 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
-#, fuzzy
+#: ../../printerdrake.pm_.c:496
msgid "Please choose the port where your printer is connected to."
-msgstr "¾ī¶² ½Ćø®¾ó Ę÷Ę®æ” ø¶æģ½ŗ°” 欰įµĒ¾ī ĄÖ³Ŗæä?"
+msgstr "ĒĮø°ÅĶ°” 欰įµČ Ę÷Ę®ø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
-#, fuzzy
+#: ../../printerdrake.pm_.c:503
msgid "You must choose/enter a printer/device!"
-msgstr "ĒĮø°ÅĶ ĄåÄ” URIĄ» ĄŌ·ĀĒĻ¼¼æä."
+msgstr "ĒĮø°ÅĶ ¶Ē“Ā ĄåÄ”ø¦ ĄŌ·Ā ¶Ē“Ā ¼±ÅĆĒŲ¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:437
-#, fuzzy
+#: ../../printerdrake.pm_.c:523
msgid "Manual configuration"
-msgstr "ĄĪÅĶ³Ż ¼³Į¤"
-
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "ĘŃÅ°Įö ¼³Ä” Įß..."
+msgstr "¼öµæ ¼³Į¤"
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "ĘŃÅ°Įö ¼³Ä” Įß..."
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "ĘŃÅ°Įö ¼³Ä” Įß..."
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶŗ£ĄĢ½ŗ ĄŠ“Ā Įß ..."
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-msgid "Reading printer database..."
-msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶŗ£ĄĢ½ŗ ĄŠ“Ā Įß ..."
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "æų°Ż LPD ĒĮø°ÅĶ æɼĒ"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7196,27 +7393,46 @@ msgstr ""
"±× ĒĮø°ÅĶ ¼­¹öĄĒ Č£½ŗĘ®øķ°ś ±× ¼­¹ö»óĄĒ ĒĮø°ÅĶ ĄĢø§Ą»\n"
"ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
msgid "Remote host name"
msgstr "æų°Ż Č£½ŗĘ®øķ"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
msgid "Remote printer name"
msgstr "æų°Ż ĒĮø°ÅĶøķ"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
msgid "Remote host name missing!"
msgstr "æų°Ż Č£½ŗĘ®øķĄ» Ć£Ą» ¼ö ¾ųĄ½!"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
msgid "Remote printer name missing!"
msgstr "æų°Ż ĒĮø°ÅĶøķĄĢ ŗüĮ³½Ą“Ļ“Ł!!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "°Ė»öµČ øšµØ: %s %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+msgid "Scanning network..."
+msgstr "³×Ę®æ÷ °Ė»ö Įß ..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "ĒĮø°ÅĶ”ø%s”¹»ó攼­ ĄĪ¼ā Įß"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) ĒĮø°ÅĶ æɼĒ"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7230,35 +7446,45 @@ msgstr ""
"°ųĄÆ ĄĢø§, Į¤½Ä »ēæėĄŚøķ, ¾ĻČ£, ĄŪ¾÷±×·ģøķĄ» \n"
"ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB ¼­¹ö Č£½ŗĘ®"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB ¼­¹ö IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "°ųĄÆ ĄĢø§"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "ĄŪ¾÷ ±×·ģ"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+msgid "Auto-detected"
+msgstr "ĄŚµæ °Ė»öµŹ"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr "¼­¹ö ĄĢø§ ¶Ē“Ā ¼­¹ö IPø¦ ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr "»ļ¹Ł °ųĄÆ ĄĢø§Ą» Ć£Ą» ¼ö ¾ųĄ½!"
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7282,7 +7508,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7291,7 +7517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7299,11 +7525,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "³Żæž¾ī ĒĮø°ÅĶ æɼĒ"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7316,52 +7542,68 @@ msgstr ""
"¾×¼¼½ŗĒĻ·Į“Ā ĒĮø°ÅĶĄĒ Å„ ĄĢø§, Į¤½Ä »ēæėĄŚøķ, ¾ĻČ£ø¦ \n"
"ĄŌ·ĀĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "ĒĮø°ÅĶ ¼­¹ö"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "ĒĮø°Ę® Å„ ĄĢø§"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr "NCP ¼­¹ö ĄĢø§Ą» Ć£Ą» ¼ö ¾ųĄ½!"
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr "NCP Å„ ĄĢø§Ą» Ć£Ą» ¼ö ¾ųĄ½!"
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
msgid "TCP/Socket Printer Options"
msgstr "TCP/¼ŅÄĻ ĒĮø°ÅĶ æɼĒ"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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"
"“Łø¦ ¼ö ĄÖ½Ą“Ļ“Ł. ĒĻµåæž¾ī ¼³øķ¼­ø¦ ĀüĮ¶ĒĻ¼¼æä."
-#: ../../printerdrake.pm_.c:878
-msgid "Printer host name"
-msgstr "ĒĮø°ÅĶ Č£½ŗĘ®øķ"
+#: ../../printerdrake.pm_.c:983
+msgid "Printer host name or IP missing!"
+msgstr "ĒĮø°ÅĶ Č£½ŗĘ®øķ ¶Ē“Ā IP°” ĮöĮ¤µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:882
-msgid "Printer host name missing!"
-msgstr "ĒĮø°ÅĶ Č£½ŗĘ®øķĄ» Ć£Ą» ¼ö ¾ųĄ½!"
+#: ../../printerdrake.pm_.c:1005
+msgid "Printer host name or IP"
+msgstr "ĒĮø°ÅĶ Č£½ŗĘ®øķ ¶Ē“Ā IP"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "ĒĮø°ÅĶ ĄåÄ” URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7370,11 +7612,11 @@ msgstr ""
"ĒĮø°ÅĶ ¾×¼¼½ŗ ĮÖ¼Ņø¦ Į÷Į¢ ĮöĮ¤ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł. ĮÖ¼Ņ“Ā CUPS ¶Ē“Ā Foomatic ±ŌĮ¤"
"Ą» ĮŲ¼öĒŲ¾ß ĒÕ“Ļ“Ł. ±×·øĮö ¾ŹĄŗ ĮÖ¼Ņ“Ā øšµē ½ŗĒ®·Æ°” ĮöæųĒĻĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr "ĄÆČæĒŃ ĮÖ¼Ņø¦ ĄŌ·ĀĒĻ¼¼æä!"
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7384,23 +7626,27 @@ msgstr ""
"¼³øķ°ś Ą§Ä” ŗĪŗŠĄ» ĄŌ·ĀĒŅ ĒŹæä“Ā ¾ų½Ą“Ļ“Ł.\n"
"±×°ĶµéĄŗ “ÜĮö »ēæėĄŚµéĄ» Ą§ĒŃ ŗĪ欼³øķĄĻ »ÓĄŌ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "ĒĮø°ÅĶ ĄĢø§"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Ą§Ä”"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+msgid "Reading printer database..."
+msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶŗ£ĄĢ½ŗ ĄŠ“Ā Įß ..."
+
+#: ../../printerdrake.pm_.c:1419
msgid "Preparing printer database..."
msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶŗ£ĄĢ½ŗ ĮŲŗń Įß ..."
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
msgid "Your printer model"
msgstr "ĒĮø°ÅĶ øšµØ"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7415,24 +7661,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
msgid "The model is correct"
msgstr "øšµØĄĢ Į¤Č®ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
msgid "Select model manually"
msgstr "Į÷Į¢ øšµØ ¼±ÅĆ"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
msgid "Printer model selection"
msgstr "ĒĮø°ÅĶ øšµØ ¼±ÅĆ"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
msgid "Which printer model do you have?"
msgstr "¾ī¶² ĒĮø°ÅĶø¦ °”Įö°ķ ĄÖ½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7441,17 +7687,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
msgid "OKI winprinter configuration"
msgstr "OKI Ą©ĒĮø°ÅĶ ¼³Į¤"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7461,11 +7707,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
msgid "Lexmark inkjet configuration"
msgstr "·ŗ½ŗø¶Å© Ą×Å©Į¬ ¼³Į¤"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7473,7 +7719,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7486,7 +7732,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7501,22 +7747,22 @@ msgstr ""
"Ąß Č®ĄĪĒĻ¼¼æä. °ķĒ°Įś ĄĪ¼ā¹°Ą» ¾ņ±āĄ§ĒŲ¼­“Ā ĄĪ¼ā ¼Óµµ°”\n"
"±× øøÅ­ “Ą·ĮĮų“Ł“Ā °ĶĄ» ¾Ė°ķ °č¼¼æä."
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr "%s æɼĒĄŗ Į¤¼ö ¹ųČ£ĄĢ¾ī¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr "%s æɼĒĄŗ ¼żĄŚĄĢ¾ī¾ß ĒÕ“Ļ“Ł!"
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr "%s æɼĒ ¹üĄ§ ĆŹ°ś!"
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7525,11 +7771,11 @@ msgstr ""
"ĄĢ ĒĮø°ÅĶ(%s)ø¦\n"
"±āŗ» ĒĮø°ÅĶ·Ī ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
msgid "Test pages"
msgstr "½ĆĒč ĘäĄĢĮö"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7543,39 +7789,39 @@ msgstr ""
"ĘäĄĢĮö°” ³ŖæĄĮö ¾ŹĄ» ¼öµµ ĄÖ½Ą“Ļ“Ł.\n"
"Ē„ĮŲ ½ĆĒč ĘäĄĢĮö“Ā “ė°³ Ąß ĄĪ¼āµĖ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
msgid "No test pages"
msgstr "½ĆĒč ĘäĄĢĮö ¾ųĄ½"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
msgid "Print"
msgstr "ĄĪ¼ā"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
msgid "Standard test page"
msgstr "Ē„ĮŲ ½ĆĒč ĘäĄĢĮö"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr "“Łø„ ½ĆĒč ĘäĄĢĮö (Letter)"
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
msgid "Alternative test page (A4)"
msgstr "½ĆĒč ĘäĄĢĮö Č°¼ŗČ­ (A4)"
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
msgid "Photo test page"
msgstr "»ēĮų ½ĆĒč ĘäĄĢĮö"
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
msgid "Do not print any test page"
msgstr "½ĆĒč ĘäĄĢĮö ĄĪ¼ā ¾ČĒŌ"
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "½ĆĒč ĘäĄĢĮö ĄĪ¼ā Įß..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7590,7 +7836,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7598,15 +7844,15 @@ msgstr ""
"½ĆĒč ĄĪ¼ā ĘäĄĢĮöø¦ ĒĮø°ÅĶ·Ī ŗø³Ā½Ą“Ļ“Ł.\n"
"ĄĪ¼āµĒ±ā±īĮö ¾ą°£ĄĒ ½Ć°£ĄĢ °Éø± ¼ö ĄÖ½Ą“Ļ“Ł.\n"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr "æĆ¹Łø£°Ō ĄŪµæĒß½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
msgid "Raw printer"
msgstr "³Æ(RAW) ĒĮø°ÅĶ"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7615,15 +7861,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7632,7 +7878,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7643,13 +7889,13 @@ msgstr ""
"æä.\n"
"\n"
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7658,15 +7904,15 @@ msgstr ""
"øķ·ÉĒą(ÅĶ¹Ģ³Ī Ą©µµæģ)攼­ ĘÄĄĻĄ» ĄĪ¼āĒĻ·Įøé, ”ø%s <ĘÄĄĻ>”¹øķ·ÉĄ» »ēæėĒĻ¼¼"
"æä.\n"
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7676,7 +7922,7 @@ msgstr ""
"æä.\n"
"\n"
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7685,7 +7931,7 @@ msgstr ""
"øķ·ÉĒą(ÅĶ¹Ģ³Ī Ą©µµæģ)攼­ ĘÄĄĻĄ» ĄĪ¼āĒĻ·Įøé, ”ø%s <ĘÄĄĻ>”¹ ¶Ē“Ā ”ø%s <ĘÄĄĻ>”¹"
"øķ·ÉĄ» »ēæėĒĻ¼¼æä.\n"
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7695,7 +7941,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7707,45 +7953,45 @@ msgstr ""
"”ø%s”¹æĶ”ø%s”¹øķ·ÉĄŗ ¶ĒĒŃ ĘÆĮ¤ ĄĪ¼ā ĄŪ¾÷Ą» Ą§ĒŃ æɼĒ ¼³Į¤Ą» ¼öĮ¤ĒŅ ¼ö ĄÖ°Ō ĒÕ"
"“Ļ“Ł. øķ·ÉĒąæ” æųĒĻ“Ā ¼³Į¤°ŖĄ» Ćß°”ĒĻ¼¼æä, æ¹: ”ø%s <ĘÄĄĻ>”¹.\n"
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "ĒĮø°ÅĶ”ø%s”¹»ó攼­ ĄĪ¼ā Įß"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "ĒĮø°ÅĶ”ø%s”¹»ó攼­ ĄĪ¼ā Įß"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "ĒĮø°ÅĶ”ø%s”¹»ó攼­ ĄĪ¼ā Įß"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "ĒĮø°ÅĶ”ø%s”¹»ó攼­ ĄĪ¼ā Įß"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
msgid "Close"
msgstr "“Ż±ā"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
msgid "Print option list"
msgstr "ĒĮø°ÅĶ æɼĒ øń·Ļ"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7754,9 +8000,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7767,17 +8013,17 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
msgid "Reading printer data..."
msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶ ĄŠ“Ā Įß ..."
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
msgid "Transfer printer configuration"
msgstr "ĒĮø°ÅĶ ¼³Į¤ Ąü¼Ū"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7792,7 +8038,7 @@ msgstr ""
"±×·Æ³Ŗ ĄŪ¾÷µéĄŗ Ąü¼ŪµĒĮö ¾Ź½Ą“Ļ“Ł.\n"
"“ŁĄ½°ś °°Ąŗ ĄĢĄÆ·ĪĄĪĒĻæ© øšµē Å„°” Ąü¼ŪµÉ ¼ö“Ā ¾ų½Ą“Ļ“Ł:\n"
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -7801,7 +8047,7 @@ msgstr ""
"CUPS“Ā ³ėŗ§ ¼­¹ö»óĄĒ ĒĮø°ÅĶ³Ŗ ĄŚĄÆĒü½Ä øķ·É¾ī·Ī µ„ĄĢÅĶø¦ ŗø³»“Ā\n"
"ĒĮø°ÅĶ“Ā ĮöæųĒĻĮö ¾Ź½Ą“Ļ“Ł.\n"
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -7810,11 +8056,11 @@ msgstr ""
"LPQ“Ā “ÜĮö ĮöæŖ ĒĮø°ÅĶ, æų°Ż LPD ĒĮø°ÅĶ ±×ø®°ķ ¼ŅÄĻ/TCP\n"
"ĒĮø°ÅĶøøĄ» ĮöæųĒÕ“Ļ“Ł.\n"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDæĶ LPRng“Ā IPP ĒĮø°ÅĶø¦ ĮöæųĒĻĮö ¾Ź½Ą“Ļ“Ł.\n"
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -7823,7 +8069,7 @@ msgstr ""
"±×ø®°ķ ¶ĒĒŃ, ĄĢ ĒĮ·Ī±×·„ĄĢ³Ŗ ”øFoomatic ¼³Į¤”¹Ąø·Ī\n"
"»ż¼ŗµĒĮö ¾ŹĄŗ Å„“Ā Ąü¼ŪµÉ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
#, fuzzy
msgid ""
"\n"
@@ -7834,7 +8080,7 @@ msgstr ""
"¶ĒĒŃ Į¦Į¶¾÷Ć¼°” Į¦°ųĒŃ PPD ĘÄĄĻĄĢ³Ŗ CUPS Ę÷ĒŌ µå¶óĄĢ¹ö·Ī\n"
"¼³Į¤µČ ĒĮø°ÅĶµµ Ąü¼ŪµÉ ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -7843,15 +8089,15 @@ msgstr ""
"\n"
"Ąü¼ŪĒĻ·Į“Ā ĒĮø°ÅĶµéĄ» ¼±ÅĆĒŃ ČÄæ” ”øĄü¼Ū”¹Ą» “©ø£¼¼æä."
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr "ĒĮø°ÅĶ Ąü¼Ū ĒĻĮö¾ŹĄ½"
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr "Ąü¼Ū"
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7862,11 +8108,11 @@ msgstr ""
"µ¤¾ī ¾µ·Įøé ”øĄü¼Ū”¹Ą» “©ø£¼¼æä.\n"
"»õ ĄĢø§Ą» ĄŌ·ĀĒĻ°Å³Ŗ ĄĢ ĒĮø°ÅĶø¦ Įö³ŖÄ„ ¼öµµ ĄÖ½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "ĒĮø°ÅĶ ĄĢø§æ”“Ā ¹®ĄŚ, ¼żĄŚ ±×ø®°ķ ¹ŲĮŁ(Underscore)øø ĄÖ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -7875,16 +8121,16 @@ msgstr ""
"ĒĮø°ÅĶ ”ø%s”¹°” ĄĢ¹Ģ ĮøĄēĒÕ“Ļ“Ł.\n"
"Į¤ø»·Ī ±āĮø ¼³Į¤Ą» µ¤¾ī ¾µ±īæä?"
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
msgid "New printer name"
msgstr "»õ ĒĮø°ÅĶ ĄĢø§"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr "%s Ąü¼Ū Įß ..."
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -7894,29 +8140,29 @@ msgstr ""
"»õ ĒĮø°ĘĆ ½Ć½ŗÅŪ %sĒĻ攼­ ±×°ĶĄĢ ¶ĒĒŃ ±āŗ» ĒĮø°ÅĶ°”\n"
"µĒµµ·Ļ ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
msgid "Refreshing printer data..."
msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶ °»½Å Įß ..."
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
msgid "Configuration of a remote printer"
msgstr "æų°Ż ĒĮø°ÅĶ ¼³Į¤"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
msgid "Starting network..."
msgstr "³×Ę®æ÷ 欰į Įß..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
msgid "Configure the network now"
msgstr "Įö±Ż ³×Ę®æ÷ ¼³Į¤"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
msgid "Network functionality not configured"
msgstr "³×Ę®æ÷ ±ā“ÉĄĢ ¼³Į¤µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
#, fuzzy
msgid ""
"You are going to configure a remote printer. This needs working network "
@@ -7930,11 +8176,11 @@ msgstr ""
"»ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł.\n"
"¾ī¶»°Ō ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
msgid "Go on without configuring the network"
msgstr "³×Ę®æ÷ ¼³Į¤ ¾ųĄĢ °č¼Ó"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
#, fuzzy
msgid ""
"The network configuration done during the installation cannot be started "
@@ -7952,7 +8198,7 @@ msgstr ""
"ø¦ ĄĢæėĒĻæ©, ĒĮø°ÅĶ ¼³Į¤Ą»\n"
"“Ł½Ć ĒŲ ŗø¼¼æä."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -7964,19 +8210,19 @@ msgstr ""
"±×ø®°ķ³Ŗ¼­ æų°Ż ĒĮø°ÅĶ ¼³Į¤Ą» “Ł½Ć ½ĆµµĒŲ\n"
"ŗø¼¼æä."
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
msgid "Restarting printing system..."
msgstr "ĄĪ¼ā ½Ć½ŗÅŪ Ąē½ĒĒą Įß ..."
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "high"
msgstr "³ōĄ½"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
msgid "paranoid"
msgstr "ĆÖ°ķ"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "ŗø¾Č ¼öĮŲ %s·Ī ĄĪ¼ā ½Ć½ŗÅŪ ¼³Ä” Įß"
@@ -8005,7 +8251,7 @@ msgstr "ŗø¾Č ¼öĮŲ %s·Ī ĄĪ¼ā ½Ć½ŗÅŪ ¼³Ä” Įß"
# #"\n"
# #"Į¤ø»·Ī ĄĢ ÄÄĒ»ÅĶ»óĄĒ ĄĪ¼ā ¼³Į¤Ą»\n"
# #"æųĒĻ½Ź“Ļ±ī? "
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, fuzzy, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8032,11 +8278,11 @@ msgstr ""
"Į¤ø»·Ī ĄĢ ÄÄĒ»ÅĶ»óĄĒ ĄĪ¼ā ¼³Į¤Ą»\n"
"æųĒĻ½Ź“Ļ±ī? "
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
msgid "Starting the printing system at boot time"
msgstr "ŗĪĘĆ½Ć ĄĪ¼ā ½Ć½ŗÅŪ ĄŚµæ½ĒĒą"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, fuzzy, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8059,65 +8305,63 @@ msgstr ""
"“Ł½Ć ĄĪ¼ā ½Ć½ŗÅŪĄĒ ĄŚµæ½ĒĒą ±ā“ÉĄĢ Č°¼ŗČ­µĒµµ·Ļ\n"
"ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr "¼³Ä”µČ ¼ŅĒĮĘ®æž¾ī Č®ĄĪ Įß ..."
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr "LPRng Į¦°Å Įß ..."
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr "LPD Į¦°Å Įß ..."
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
msgid "Select Printer Spooler"
msgstr "ĒĮø°ÅĶ ½ŗĒ®·ÆĄ» ¼±ÅĆĒĻ¼¼æä."
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
msgid "Which printing system (spooler) do you want to use?"
msgstr "¾ī¶² ĄĪ¼ā ½Ć½ŗÅŪ(½ŗĒ®·Æ)Ą» »ēæėĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2310
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:2691
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "ĒĮø°ÅĶ ”ø%s”¹ ¼³Į¤ Įß ..."
-#: ../../printerdrake.pm_.c:2323
-#, fuzzy
+#: ../../printerdrake.pm_.c:2704
msgid "Installing Foomatic..."
-msgstr "ĘŃÅ°Įö ¼³Ä” Įß..."
+msgstr "Foomatic ¼³Ä” Įß..."
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "ĒĮø°ÅĶ æɼĒ"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
msgid "Preparing PrinterDrake..."
msgstr "ĒĮø°ÅĶµå·¹ĄĢÅ© ĮŲŗń Įß ..."
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
-#, fuzzy
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
msgid "Configuring applications..."
-msgstr "ĒĮø°ÅĶ ”ø%s”¹ ¼³Į¤ Įß ..."
+msgstr "ĒĮ·Ī±×·„ ¼³Į¤ Įß ..."
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
msgid "Would you like to configure printing?"
msgstr "ĄĪ¼ā ¼³Į¤Ą» ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr "ĄĪ¼ā ½Ć½ŗÅŪ:"
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "ĒĮø°ÅĶµå·¹ĄĢÅ©"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8130,7 +8374,7 @@ msgstr ""
"Į¤ŗøø¦ ŗø°ķ ½Ķ“Łøé ĒĮø°ÅĶø¦ ŬøÆĒĻ¼¼æä.\n"
"»õ ĒĮø°ÅĶø¦ Ćß°”ĒĻ°ķ ½Ķ“Łøé ”øĒĮø°ÅĶ Ćß°””¹ø¦ “©ø£¼¼æä."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8142,32 +8386,28 @@ msgstr ""
"Į¤ŗøø¦ ŗø°ķ ½Ķ“Łøé ĒĮø°ÅĶø¦ ŬøÆĒĻ¼¼æä.\n"
"»õ ĒĮø°ÅĶø¦ Ćß°”ĒĻ°ķ ½Ķ“Łøé ”øĒĮø°ÅĶ Ćß°””¹ø¦ “©ø£¼¼æä."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "ĒĮø°ÅĶ øń·Ļ °»½Å"
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
msgid "Change the printing system"
msgstr "ĄĪ¼ā½Ć½ŗÅŪ ŗÆ°ę"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
msgid "Normal Mode"
msgstr "ĄĻ¹Ż øšµå"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Į¾·į"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
msgid "Do you want to configure another printer?"
msgstr "¶Ē“Łø„ ĒĮø°ÅĶø¦ ¼³Į¤ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
msgid "Modify printer configuration"
msgstr "ĄĪÅĶ³Ż ¼³Į¤ ŗÆ°ę"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8176,101 +8416,101 @@ msgstr ""
"ĒĮø°ÅĶ %s: %s: %s\n"
"ĄĢ ĒĮø°ÅĶæ” “ėĒŲ¼­ ¹«¾łĄ» ¼öĮ¤ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr "½ĒĒą"
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
msgid "Printer connection type"
msgstr "ĄĪÅĶ³Ż 欰į ĄÆĒü"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
msgid "Printer name, description, location"
msgstr "ĒĮø°ÅĶ ĄĢø§, ¼³øķ, Ą§Ä”"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr "ĒĮø°ÅĶ Į¦Į¶¾÷Ć¼, øšµØ, µå¶óĄĢ¹ö"
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr "ĒĮø°ÅĶ Į¦Į¶¾÷Ć¼, øšµØ"
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr "ĄĢ ĒĮø°ÅĶø¦ ±āŗ»Ąø·Ī ¼³Į¤"
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
msgid "Print test pages"
msgstr "½ĆĒč ĘäĄĢĮö ĄĪ¼ā"
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
msgid "Know how to use this printer"
msgstr "ĄĢ ĒĮø°ÅĶĄĒ »ēæė¹ż ¾Ė¾Ęŗø±ā"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
msgid "Remove printer"
msgstr "ĒĮø°ÅĶ Į¦°Å"
-#: ../../printerdrake.pm_.c:2857
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3245
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "±āĮø ĒĮø°ÅĶ ”ø%s”¹ Į¦°Å Įß ..."
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
msgid "Default printer"
msgstr "±āŗ» ĒĮø°ÅĶ"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "”ø%s”¹ĒĮø°ÅĶ°” ±āŗ» ĒĮø°ÅĶ·Ī ¼³Į¤µĒ¾ś½Ą“Ļ“Ł."
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Į¤ø»·Ī ”ø%s”¹ĒĮø°ÅĶø¦ Į¦°ÅĒÕ“Ļ±ī?"
-#: ../../printerdrake.pm_.c:2909
-#, fuzzy, c-format
+#: ../../printerdrake.pm_.c:3297
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "ĒĮø°ÅĶ ”ø%s”¹ Į¦°Å Įß ..."
@@ -8324,8 +8564,9 @@ msgstr ""
"FTP ĒĮ¶ō½Ć°” ĒŹæä¾ų“Łøé, °ų¶õĄø·Ī µĪ¼¼æä."
#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:'"
-msgstr "ĮÖ¼Ņ“Ā ”øftp:”¹·Ī ½ĆĄŪĒŲ¾ß ĒÕ“Ļ“Ł."
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "ĮÖ¼Ņ“Ā ”øhttp:”¹·Ī ½ĆĄŪĒŲ¾ß ĒÕ“Ļ“Ł."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8374,42 +8615,6 @@ msgstr "mkraid ½ĒĘŠ (raidtoolĄĢ ¼³Ä”µĒ¾ī ĄÖĮö ¾ŹĄ» ¼ö ĄÖ½Ą“Ļ“Ł.)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ·¹ŗ§ %dø¦ Ą§ĒŃ ĘÄĘ¼¼ĒµéĄĢ ĆęŗŠĒĻĮö ¾Ź½Ą“Ļ“Ł.\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"ĄĢ µī±ŽĄ» »ēæėĒŅ·Įøé øÅæģ ĮÖĄĒĒĻæ©¾ß ĒÕ“Ļ“Ł. ½Ć½ŗÅŪĄ» »ēæėĒĻ±ā攓Ā \n"
-"æėĄĢĒĻ°ŚĮöøø øÅæģ ¹Ī°ØĒĻ°Ō ĄŪµæĒÕ“Ļ“Ł: ĄĪÅĶ³ŻĄĢ³Ŗ ³×Ę®æ÷æ” æ¬°įµČ ½Ć½ŗÅŪæė\n"
-"Ąø·Ī“Ā »ēæėĒĻĮö ø¶¼¼æä. ¾ĻČ£±ā“ÉĄĢ ¾ų½Ą“Ļ“Ł."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"ĄĢ ŗø¾Čµī±ŽĄø·Ī ĄĢ ½Ć½ŗÅŪĄ» ¼­¹ö·Ī æīæėĒŅ ¼ö ĄÖ°Ō µĖ“Ļ“Ł.\n"
-"ĄĢ ŗø¾Čµī±ŽĄŗ æÜŗĪĄĒ Ŭ¶óĄĢ¾šĘ®µéĄĒ Į¢¼ÓĄ» ¹Ž¾ĘµéĄĢ“Āµ„ ĄÖ¾ī¼­ \n"
-"ĆęŗŠČ÷ ³ōĄŗ ŗø¾Čµī±ŽĄŌ“Ļ“Ł. "
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN ¼³Į¤"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "æɼĒµé"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (ĮųŗøµČ ø®“Ŗ½ŗ »ēæīµå ¾ĘÅ°ÅŲĆ³) »ēæīµå ½Ć½ŗÅŪ ½ĒĒą"
@@ -8713,7 +8918,7 @@ msgstr "ĄĪÅĶ³Ż"
msgid "File sharing"
msgstr "ĘÄĄĻ °ųĄÆ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
msgid "System"
msgstr "½Ć½ŗÅŪ"
@@ -8829,7 +9034,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "øĒµå·¹ĄĢÅ© Į¦¾ī ¼¾ÅĶ"
@@ -8924,20 +9129,20 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
msgid "Installing packages..."
msgstr "ĘŃÅ°Įö ¼³Ä” Įß..."
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "·Ī±×¾ĘæōĒĻ°ķ Crtl-Alt-BackSpaceÅ°ø¦ “©ø£¼¼æä."
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ŗÆ°ę»ēĒץ» ĄūæėĒĻ·Įøé %s·Ī Ąē·Ī±×ĄĪ ĒĻ¼¼æä."
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8945,174 +9150,158 @@ msgstr ""
"ĒĻµå µš½ŗÅ©ĄĒ ĘÄĘ¼¼Ē ÅץĢŗķĄ» ĄŠĄ»¼ö ¾ų½Ą“Ļ“Ł. ³Ź¹« ŗÆĒüµČ °Ķ °°½Ą“Ļ“Ł. :(\n"
"ĄßøųµČ ĘÄĘ¼¼Ē ŗńæģ±āø¦ ½ĆµµĒŅ °ĶĄŌ“Ļ“Ł."
-#: ../../standalone/drakTermServ_.c:189
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:188
msgid "Mandrake Terminal Server Configuration"
-msgstr "ĒĮø°ÅĶ ¼³Į¤ Ąü¼Ū"
+msgstr "øĒµå·¹ĄĢÅ© ÅĶ¹Ģ³Ī ¼­¹ö ¼³Į¤"
-#: ../../standalone/drakTermServ_.c:204
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:203
msgid "Enable Server"
-msgstr "µ„ĄĢÅĶŗ£ĄĢ½ŗ ¼­¹ö"
+msgstr "¼­¹ö »ēæė"
-#: ../../standalone/drakTermServ_.c:211
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:210
msgid "Disable Server"
-msgstr "µ„ĄĢÅĶŗ£ĄĢ½ŗ ¼­¹ö"
+msgstr "¼­¹ö »ēæė ĒŲĮ¦"
-#: ../../standalone/drakTermServ_.c:219
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:218
msgid "Start Server"
-msgstr "NIS ¼­¹ö"
+msgstr "¼­¹ö ½ĆĄŪ"
-#: ../../standalone/drakTermServ_.c:226
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:225
msgid "Stop Server"
-msgstr "NIS ¼­¹ö"
+msgstr "¼­¹ö ĮßĮö"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:239
msgid "Add/Del Users"
-msgstr "»ēæėĄŚ Ćß°”"
+msgstr "»ēæėĄŚ Ćß°”/Į¦°Å"
-#: ../../standalone/drakTermServ_.c:242
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:241
msgid "Add/Del Clients"
-msgstr "DHCP Ŭ¶óĄĢ¾šĘ®"
-
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgstr "Ŭ¶óĄĢ¾šĘ® Ćß°”/Į¦°Å"
+
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
msgid "Help"
-msgstr ""
+msgstr "µµæņø»"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
-msgstr ""
+msgstr "ŗĪĘ® ĒĆ·ĪĒĒ"
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
-msgstr ""
+msgstr "ŗĪĘ® ISO"
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
-msgstr ""
+msgstr "Äæ³ĪĄĢ ¼±ÅƵĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł!"
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:535
msgid "No nic selected!"
-msgstr "欰į ¾ČµŹ"
+msgstr "³×Ę®æ÷ Ä«µå°” ¼±ÅĆ ¾ČµŹ!"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:552
msgid "<-- Delete"
-msgstr "»čĮ¦"
+msgstr "<-- »čĮ¦"
-#: ../../standalone/drakTermServ_.c:557
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:559
msgid "Delete All NBIs"
-msgstr "ĘÄĄĻĄ» ¼±ÅĆĒĻ¼¼æä."
+msgstr "øšµē NBI »čĮ¦"
-#: ../../standalone/drakTermServ_.c:619
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:621
msgid "Add User -->"
-msgstr "»ēæėĄŚ Ćß°”"
+msgstr "»ēæėĄŚ Ćß°” -->"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:735
msgid "<-- Del Client"
-msgstr "DHCP Ŭ¶óĄĢ¾šĘ®"
+msgstr "<-- Ŭ¶óĄĢ¾šĘ® »čĮ¦"
-#: ../../standalone/drakTermServ_.c:739
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:741
msgid "dhcpd Config..."
-msgstr "¼³Į¤ Įß..."
+msgstr "DHCPD ¼³Į¤ Įß..."
-#: ../../standalone/drakTermServ_.c:886
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:888
msgid "Write Config"
-msgstr "Ąē¼³Į¤"
+msgstr "¼³Į¤ ±ā·Ļ"
-#: ../../standalone/drakTermServ_.c:944
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:946
msgid "Please insert floppy disk:"
-msgstr "ŗĪĘĆ ĒĆ·ĪĒĒø¦ %s µå¶óĄĢŗźæ” ³ÖĄø¼¼æä"
+msgstr "ĒĆ·ĪĒĒø¦ ³Ö¾ī ĮÖ¼¼æä:"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:955
msgid "No floppy drive available!"
-msgstr "ĒĆ·ĪĒĒ µå¶óĄĢŗźø¦ »ēæėĒŅ ¼ö ¾ų½Ą“Ļ“Ł."
+msgstr "ĄÆČæĒŃ ĒĮ·ĪĒĒ µå¶óĄĢŗźø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
msgstr "æĄ·ł!"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr "ĒŹæäĒŃ ĄĢ¹ĢĮö ĘÄĄĻ %sø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
msgid "Auto Install Configurator"
msgstr "ĄŚµæ ¼³Ä” ¼³Į¤±ā"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9137,22 +9326,21 @@ msgstr ""
"\n"
"°č¼Ó ĮųĒąĒÕ“Ļ±ī?"
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
msgid "Automatic Steps Configuration"
msgstr "ĄŚµæ °śĮ¤ ¼³Į¤±ā"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr "°¢ °śĮ¤æ” “ėĒĻæ© ¼öµæ¼³Ä”æĶ ĄŚµæ¹Żŗ¹¼³Ä”ø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakautoinst_.c:83
-#, fuzzy
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
msgid "Creating auto install floppy"
-msgstr "ĄŚµæ ¼³Ä” ĒĆ·ĪĒĒ µš½ŗÅ© »ż¼ŗ Įß"
+msgstr "ĄŚµæ ¼³Ä” ĒĆ·ĪĒĒ »ż¼ŗ"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9160,12 +9348,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "ĆąĒĻĒÕ“Ļ“Ł!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9173,26 +9361,39 @@ msgstr ""
"ĒĆ·ĪĒĒ°” ¼ŗ°ųĄūĄø·Ī »ż¼ŗµĒ¾ś½Ą“Ļ“Ł.\n"
"ĄĢĮØ ¼³Ä”°śĮ¤ø¦ ¹Żŗ¹ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
msgid "Auto Install"
msgstr "ĄŚµæ ¼³Ä”"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
msgid "Add an item"
msgstr "Ē×øń Ćß°”"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
msgid "Remove the last item"
msgstr "ø¶Įöø· Ē×øń »čĮ¦"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9200,7 +9401,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9208,34 +9409,95 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "ĄüĆ¼ ĮųĒą"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
-msgid "Backup system files..."
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
-#, fuzzy
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
+msgid "Backup system files..."
+msgstr "½Ć½ŗÅŪ ĘÄĄĻ ¹é¾÷..."
+
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
msgid "Hard Disk Backup files..."
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "ĒĻµå µš½ŗÅ© ¹é¾÷ ĘÄĄĻµé"
-#: ../../standalone/drakbackup_.c:808
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1206
msgid "Backup User files..."
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "»ēæ䥌 ĘÄĄĻ ¹é¾÷..."
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1260
msgid "Backup Other files..."
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "“Łø„ ĘÄĄĻ ¹é¾÷..."
+
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "ÅץŌĄ» »ēæėĒŃ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9243,733 +9505,747 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1324
msgid " Error during mail sending. \n"
-msgstr "%s ĘÄĄĻĄ» ĄŠ“ĀĮß æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł."
+msgstr "øŽĄĻ Ąü¼Ū Įß æĄ·ł.\n"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
msgid "File Selection"
-msgstr "ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "ĘÄĄĻ ¼±ÅĆ"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "½Ć½ŗÅŪ ĘÄĄĻ øÕĄś ¹é¾÷:"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1547
msgid "Please check all users that you want to include in your backup."
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "¹é¾÷æ” Ę÷ĒŌĒŅ øšµē »ēæėĄŚø¦ Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
-msgstr "Ē×øń Į¦°Å"
+msgstr "¼±ÅĆ Ē×øń Į¦°Å"
-#: ../../standalone/drakbackup_.c:1188
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1635
msgid "Windows (FAT32)"
-msgstr "Ą©µµæģĮī(TM) Į¦°Å"
+msgstr "Ą©µµæģĮī(FAT32)"
-#: ../../standalone/drakbackup_.c:1227
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1674
msgid "Users"
-msgstr "»ēæėĄŚøķ"
+msgstr "»ēæėĄŚµé"
-#: ../../standalone/drakbackup_.c:1257
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1700
msgid "Use network connection to backup"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "³×Ę®æ÷Ą» »ēæėĒŲ ¹é¾÷"
+
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1708
#, fuzzy
+msgid ""
+" Transfer \n"
+"Now"
+msgstr "Ąü¼Ū"
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
msgid "Please enter the host name or IP."
-msgstr "ø¶æģ½ŗø¦ Å×½ŗĘ®ĒĻ¼¼æä."
+msgstr "Č£½ŗĘ® ĄĢø§ ¶Ē“Ā IPø¦ ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1723
msgid "Please enter your login"
-msgstr "“Ł½Ć ½ĆµµĒĻ¼¼æä."
+msgstr "¾ĘĄĢµšø¦ ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1279
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1728
msgid "Please enter your password"
-msgstr "“Ł½Ć ½ĆµµĒĻ¼¼æä."
+msgstr "ŗń¹Š¹ųČ£ø¦ ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1285
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1734
msgid "Remember this password"
-msgstr "ŗń¹Š¹ųČ£ Č®ĄĪ"
+msgstr "ŗń¹Š¹ųČ£ ±ā¾ļ"
+
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
-msgstr "Å°ŗøµå ·¹ĄĢ¾Ęæō ¼±ÅĆ"
+msgid "Please choose your CD/DVD media size"
+msgstr "CD æė·®Ą» ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "CDRW øÅĆ¼ø¦ »ēæėĒĻ°ķ ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
+
+#: ../../standalone/drakbackup_.c:1861
msgid "Please check if you are using CDRW media"
-msgstr "øÅĆ¼ø¦ ŬøÆĒĻ¼¼æä."
+msgstr "CDRW øÅĆ¼ø¦ »ēæėĒĻ°ķ ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "CDRW øÅĆ¼ø¦ »ēæėĒĻ°ķ ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1868
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgid " Erase Now "
+msgstr "Ąü¼Ū"
+
+#: ../../standalone/drakbackup_.c:1874
+#, fuzzy
+msgid "Please check if you are using a DVDR device"
+msgstr "CDRW øÅĆ¼ø¦ »ēæėĒĻ°ķ ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
+
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "CDRW øÅĆ¼ø¦ »ēæėĒĻ°ķ ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
#, fuzzy
+msgid "No CD device defined!"
+msgstr "æĄ·”µČ ĄåÄ” ĘÄĄĻ"
+
+#: ../../standalone/drakbackup_.c:1974
msgid "Use tape to backup"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "ÅץŌĄ» »ēæėĒŃ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "¹é¾÷ĒĻ±ā Ąüæ” ÅץŌĄ» ĮöæļĮö Č®ĄĪĒĻ¼¼æä."
+
+#: ../../standalone/drakbackup_.c:1989
msgid "Please check if you want to erase your tape before the backup."
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "¹é¾÷ĒĻ±ā Ąüæ” ÅץŌĄ» ĮöæļĮö Č®ĄĪĒĻ¼¼æä."
+
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "¹é¾÷ĒĻ±ā Ąüæ” ÅץŌĄ» ĮöæļĮö Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2066
msgid "Please enter the directory to save to:"
-msgstr "ø¶æģ½ŗø¦ Å×½ŗĘ®ĒĻ¼¼æä."
+msgstr "ĄśĄåĒŅ µš·ŗÅäø®ø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
msgid "Use quota for backup files."
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "¹é¾÷ ĘÄĄĻæ” ÄõÅĶ »ēæė"
-#: ../../standalone/drakbackup_.c:1580
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2146
msgid "Network"
-msgstr "³×Ę®æ÷ ĄĪÅĶĘäĄĢ½ŗ"
+msgstr "³×Ę®æ÷"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
-msgstr ""
+msgstr "ĒĻµå µš½ŗÅ© / NFS"
-#: ../../standalone/drakbackup_.c:1595
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2161
msgid "Tape"
-msgstr "ĄÆĒü"
+msgstr "ÅץŌ"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
-msgstr ""
+msgstr "øŽĆ"
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
-msgstr ""
+msgstr "øÅĄĻ"
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
-msgstr ""
+msgstr "øÅĮÖ"
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
-msgstr ""
+msgstr "øÅæł"
-#: ../../standalone/drakbackup_.c:1630
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2196
msgid "Use daemon"
-msgstr "»ēæėĄŚøķ"
+msgstr "“ėøó »ēæė"
-#: ../../standalone/drakbackup_.c:1635
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2201
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgstr ""
+"¹é¾÷°£ ½Ć°£ °£°ŻĄ»\n"
+"¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1641
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2207
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "»ēæėĒŅ ¾š¾īø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
+msgstr ""
+"¹é¾÷æė øÅĆ¼ø¦\n"
+"¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
+msgstr "¹é¾÷ ČÄ ŗø°ķ øŽĄĻ ŗø³»±ā:"
+
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2296
msgid "What"
-msgstr ""
+msgstr "“ė»ó"
-#: ../../standalone/drakbackup_.c:1753
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2301
msgid "Where"
-msgstr "ČŁ ø¶æģ½ŗ"
+msgstr "Ąå¼Ņ"
-#: ../../standalone/drakbackup_.c:1758
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2306
msgid "When"
-msgstr "ČŁ ø¶æģ½ŗ"
+msgstr "½Ć°£"
-#: ../../standalone/drakbackup_.c:1763
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2311
msgid "More Options"
-msgstr "øšµā æɼĒµé:"
+msgstr "Ćß°” æɼĒ"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
msgid "Drakbackup Configuration"
-msgstr "³×Ę®æ÷ ČÆ°ę ¼³Į¤"
+msgstr "µå·¹ĄĢÅ© ¹é¾÷ ¼³Į¤"
-#: ../../standalone/drakbackup_.c:1800
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2348
msgid "Please choose where you want to backup"
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "¹é¾÷ĒŅ °÷Ą» ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
-msgstr ""
+msgstr "ĒĻµå µå¶óĄĢŗź"
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
+msgstr "³×Ę®æ÷ °ęĄÆ"
+
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
msgid "Please choose what you want to backup"
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "¹é¾÷ĒŅ “ė»óĄ» ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:1878
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2422
msgid "Backup system"
-msgstr "ĘÄĄĻ½Ć½ŗÅŪ ĮŲŗń"
+msgstr "¹é¾÷ ½Ć½ŗÅŪ"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
-msgstr ""
+msgstr "»ēæėĄŚ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
-msgstr ""
+msgstr "¼öµæĄø·Ī »ēæėĄŚ ¼±ÅĆ"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2526
+#, c-format
msgid " on device : %s"
-msgstr "ø¶æģ½ŗ ĄåÄ”: %s\n"
+msgstr "ĄåÄ”: %s"
+
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "æɼĒµé"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2727
msgid "Please uncheck or remove it on next time."
-msgstr "¾ī¶² ½Ćø®¾ó Ę÷Ę®æ” ø¶æģ½ŗ°” 欰įµĒ¾ī ĄÖ³Ŗæä?"
+msgstr "“ŁĄ½ ¹ų攓Ā ±×°ĶĄ» ¼±ÅĆ ĒŲĮ¦ ¶Ē“Ā Į¦°ÅĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2877
msgid " Restore Configuration "
-msgstr "³×Ę®æ÷ ČÆ°ę ¼³Į¤"
+msgstr " ¼³Į¤ ŗ¹±ø "
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
-msgstr ""
+msgstr "“Łø„ ĘÄĄĻµéĄ» øń±øĒĻ·Įøé, OKø¦ “©ø£¼¼æä."
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2975
msgid "Backup the system files before:"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "½Ć½ŗÅŪ ĘÄĄĻ øÕĄś ¹é¾÷:"
-#: ../../standalone/drakbackup_.c:2342
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2977
msgid "please choose the date to restore"
-msgstr "¾ī¶² Į¾·łĄĒ ø¶æģ½ŗø¦ »ēæėĒĻ½Ź“Ļ±ī?"
+msgstr "ŗ¹±øĒŅ ³ÆĀ„ø¦ ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:2370
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3014
msgid "Use Hard Disk to backup"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "ĒĻµå µš½ŗÅ©·Ī ¹é¾÷"
-#: ../../standalone/drakbackup_.c:2373
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3017
msgid "Please enter the directory to save:"
-msgstr "ø¶æģ½ŗø¦ Å×½ŗĘ®ĒĻ¼¼æä."
+msgstr "ĄśĄåĒŅ µš·ŗÅäø®ø¦ ¼±ÅĆĒĻ¼¼æä:"
-#: ../../standalone/drakbackup_.c:2416
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3060
msgid "FTP Connection"
-msgstr "LAN 欰į"
+msgstr "FTP 欰į"
-#: ../../standalone/drakbackup_.c:2424
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3067
msgid "Secure Connection"
-msgstr "ĒĮø°ÅĶ 欰į¹ę¹żĄ» ¼±ÅĆĒĻ¼¼æä."
+msgstr "ŗø¾Č 欰į"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "ĒĻµå µš½ŗũ攼­ ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "¹é¾÷ ĘÄĄĻµéĄĢ ĄśĄåµÉ µš·ŗÅäø®ø¦ ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/drakbackup_.c:2512
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3157
msgid "Select another media to restore from"
-msgstr "¾ī¶² Į¾·łĄĒ ø¶æģ½ŗø¦ »ēæėĒĻ½Ź“Ļ±ī?"
+msgstr "“Łø„ ŗ¹±ø øÅĆ¼ ¼±ÅĆ"
-#: ../../standalone/drakbackup_.c:2514
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3159
msgid "Other Media"
-msgstr "±āÅø"
+msgstr "“Łø„ øÅĆ¼"
-#: ../../standalone/drakbackup_.c:2520
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3164
msgid "Restore system"
-msgstr "½Ć½ŗÅŪ ¼³Ä”"
+msgstr "½Ć½ŗÅŪ ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
msgid "Restore Users"
-msgstr ""
+msgstr "»ēæėĄŚµé ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
msgid "Restore Other"
-msgstr ""
+msgstr "“Łø„ °Ķµé ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "([/] “ė½Åæ”) ŗ¹±øĒŅ µš·ŗÅäø® ¼±ÅĆ"
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "ŗ¹±øĒĻ±ā Ąüæ” »ēæėĄŚ µš·¢Åäø®µéĄ» Į¦°Å"
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
-msgstr ""
+msgstr "øšµē ¹é¾÷ ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2594
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3241
msgid "Custom Restore"
-msgstr "»ēæėĄŚ Į¤ĄĒ"
+msgstr "»ēæėĄŚ Į¤ĄĒ ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
msgid "Previous"
-msgstr "<- ĄĢĄü"
+msgstr "ĄĢĄü"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
msgid "Save"
-msgstr "»óÅĀ:"
+msgstr "ĄśĄå"
-#: ../../standalone/drakbackup_.c:2692
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3350
msgid "Build Backup"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "¹é¾÷ ŗōµå"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
msgid "Restore"
-msgstr "»ēæėĄŚ Į¤ĄĒ"
+msgstr "ŗ¹±ø"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-msgid "Next"
-msgstr "“ŁĄ½"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "“ŁĄ½ ĘŃÅ°ĮöµéĄĢ ¼³Ä”µÉ °ĶĄŌ“Ļ“Ł."
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3644
msgid "Please select data to restore..."
-msgstr "»ēæėĒŅ ¾š¾īø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
+msgstr "ŗ¹±øĒŅ µ„ĄĢÅĶø¦ ¼±ÅĆĒĻ¼¼æä..."
-#: ../../standalone/drakbackup_.c:3000
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3665
msgid "Please select media for backup..."
-msgstr "»ēæėĒŅ ¾š¾īø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
+msgstr "¹é¾÷æė øÅĆ¼ø¦ ¼±ÅĆĒĻ¼¼æä..."
-#: ../../standalone/drakbackup_.c:3022
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3687
msgid "Please select data to backup..."
-msgstr "»ēæėĒŅ ¾š¾īø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä."
+msgstr "¹é¾÷ĒŅ µ„ĄĢÅĶø¦ ¼±ÅĆĒĻ¼¼æä..."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3811
msgid "Backup system files"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "½Ć½ŗÅŪ ĘÄĄĻ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3147
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3813
msgid "Backup user files"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "»ēæėĄŚ ĘÄĄĻ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3149
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3815
msgid "Backup other files"
-msgstr "ĄßøųµČ ¹é¾÷ ĘÄĄĻ"
+msgstr "“Łø„ ĘÄĄĻ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
-msgstr ""
+msgstr "ĄüĆ¼ ĮųĒą"
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
-msgstr ""
+msgstr "FTP·Ī ĘÄĄĻ Ąü¼Ū"
-#: ../../standalone/drakbackup_.c:3177
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3845
msgid "Sending files..."
-msgstr "ĄåÄ”ø¦ °Ė»öĒĻ°ķ ĄÖ½Ą“Ļ“Ł..."
-
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "ø¶æģ½ŗø¦ Å×½ŗĘ®ĒĻ¼¼æä."
+msgstr "ĘÄĄĻ Ąü¼Ū Įß ..."
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "¼³Ä”ĒŅ ĘŃÅ°Įö ¼±ÅĆ"
-
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3931
msgid "Backup Now from configuration file"
-msgstr "³×Ę®æ÷ ČÆ°ę ¼³Į¤"
+msgstr "Įö±Ż ¼³Į¤ ĘÄĄĻ·ĪŗĪÅĶ ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3419
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3936
msgid "View Backup Configuration."
-msgstr "³×Ę®æ÷ ČÆ°ę ¼³Į¤"
+msgstr "¹é¾÷ ¼³Į¤ ŗø±ā"
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3956
msgid "Wizard Configuration"
-msgstr "¼³Į¤"
+msgstr "ø¶¹ż»ē ¼³Į¤"
-#: ../../standalone/drakbackup_.c:3445
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3961
msgid "Advanced Configuration"
-msgstr "LAN ¼³Į¤"
+msgstr "°ķ±Ž ¼³Į¤"
-#: ../../standalone/drakbackup_.c:3450
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3966
msgid "Backup Now"
-msgstr "ĘÄĄĻ½Ć½ŗÅŪ ĮŲŗń"
+msgstr "Įö±Ż ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
-msgstr ""
+msgstr "µå·¹ĄĢÅ© ¹é¾÷"
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9980,7 +10256,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -10001,7 +10277,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10010,7 +10286,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -10034,7 +10310,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -10051,21 +10327,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10079,17 +10355,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10106,7 +10382,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10146,7 +10422,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10157,7 +10433,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10170,7 +10446,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10209,95 +10485,111 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s ¼³Ä” ½ĒĘŠ. “ŁĄ½°ś °°Ąŗ æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł:"
#: ../../standalone/drakbug_.c:40
-msgid "Mandrake Bug Report Tool"
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
msgstr ""
-#: ../../standalone/drakbug_.c:50
-msgid "First Time Wizard"
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
msgstr ""
-#: ../../standalone/drakbug_.c:51
-msgid "Synchronization tool"
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
-#, fuzzy
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
+msgid "Mandrake Bug Report Tool"
+msgstr "øĒµå·¹ĄĢÅ© ¹ö±× ŗø°ķ µµ±ø"
+
+#: ../../standalone/drakbug_.c:70
+msgid "First Time Wizard"
+msgstr "Ć¹ ½ĒĒą ø¶¹ż»ē"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Synchronization tool"
+msgstr "µæ±āČ­ µµ±ø"
+
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
msgid "Standalone Tools"
-msgstr "ÄÜ¼Ö µµ±ø"
+msgstr "°³ŗ° µµ±ø"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
-msgstr ""
+msgstr "ĒĻµå µå·¹ĄĢÅ©"
-#: ../../standalone/drakbug_.c:54
-#, fuzzy
+#: ../../standalone/drakbug_.c:74
msgid "Mandrake Online"
-msgstr "øĒµå·¹ĄĢÅ©»ó“ć"
+msgstr "øĒµå·¹ĄĢÅ© æĀ¶óĄĪ"
-#: ../../standalone/drakbug_.c:55
-#, fuzzy
+#: ../../standalone/drakbug_.c:75
msgid "Menudrake"
-msgstr "øĒµå·¹ĄĢÅ©°”°Ō"
+msgstr "øŽ“ŗ µå·¹ĄĢÅ©"
-#: ../../standalone/drakbug_.c:56
-#, fuzzy
+#: ../../standalone/drakbug_.c:76
msgid "Msec"
-msgstr "ø¶æģ½ŗ"
+msgstr "±āÅø"
-#: ../../standalone/drakbug_.c:57
-#, fuzzy
+#: ../../standalone/drakbug_.c:77
msgid "Remote Control"
-msgstr "æų°Ż ĒĮø°ÅĶ"
+msgstr "æų°Ż Į¦¾ī"
-#: ../../standalone/drakbug_.c:58
-#, fuzzy
+#: ../../standalone/drakbug_.c:78
msgid "Software Manager"
-msgstr "°ųĄÆ ĄĢø§"
+msgstr "¼ŅĒĮĘ®æž¾ī °üø®ĄŚ"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
-msgstr ""
+msgstr "Urpmi"
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
-msgstr ""
+msgstr "Ą©µµæģĮī ĄĢĮÖ µµ±ø"
-#: ../../standalone/drakbug_.c:61
-#, fuzzy
+#: ../../standalone/drakbug_.c:81
msgid "Userdrake"
-msgstr "ĒĮø°ÅĶµå·¹ĄĢÅ©"
+msgstr "»ēæėĄŚ µå·¹ĄĢÅ©"
-#: ../../standalone/drakbug_.c:62
-#, fuzzy
+#: ../../standalone/drakbug_.c:82
msgid "Configuration Wizards"
-msgstr "³×Ę®æ÷ ¼³Į¤ ø¶¹ż»ē"
+msgstr "¼³Į¤ ø¶¹ż»ē"
-#: ../../standalone/drakbug_.c:71
-#, fuzzy
+#: ../../standalone/drakbug_.c:96
msgid "Application:"
-msgstr "»ēæėĄŚ ĄĪĮõ"
+msgstr "ĒĮ·Ī±×·„:"
-#: ../../standalone/drakbug_.c:75
-#, fuzzy
+#: ../../standalone/drakbug_.c:97
msgid "Package: "
-msgstr "ĘŃÅ°Įö ¼±ÅĆ"
+msgstr "ĘŃÅ°Įö:"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
-msgstr ""
+msgstr "Äæ³Ī:"
-#: ../../standalone/drakbug_.c:83
-#, fuzzy
+#: ../../standalone/drakbug_.c:99
msgid "Release: "
-msgstr "±ā“Ł·Į ĮÖ¼¼æä"
+msgstr "ø±ø®Įī:"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10309,148 +10601,145 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "¼³Ä” Į¾·į"
-
-#: ../../standalone/drakbug_.c:110
-#, fuzzy
+#: ../../standalone/drakbug_.c:135
msgid "Report"
-msgstr "Ę÷Ę®"
+msgstr "ŗø°ķ"
+
+#: ../../standalone/drakbug_.c:165
+msgid "Not installed"
+msgstr "¼³Ä”µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
-msgstr ""
+msgstr "¹öĮś¶ó ø¶¹ż»ēæ” æ¬°į Įß ..."
-#: ../../standalone/drakbug_.c:129
-#, fuzzy
+#: ../../standalone/drakbug_.c:189
msgid "No browser available! Please install one"
-msgstr "¼³Ä”ČÄ “Łø„ “Łø„ ¾š¾īø¦ ¼±ÅĆĒŅ¼ö ĄÖ½Ą“Ļ“Ł."
+msgstr "ŗź¶óæģĄśø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł! ¼³Ä”ĒŲ ĮÖ¼¼æä."
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "³×Ę®æ÷ ¼³Į¤ (%d ¾īµŖÅĶ)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "ĒĮ·ĪĘÄĄĻ: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "ĒĮ·ĪĘÄĄĻ Įöæģ±ā"
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Įöæļ ĒĮ·ĪĘÄĄĻ"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "»õ ĒĮ·ĪĘÄĄĻ..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
"øøµé ĒĮ·ĪĘÄĄĻ ĄĢø§ (»õ ĒĮ·ĪĘÄĄĻĄŗ ĒöĄē ĒĮ·ĪĘÄĄĻĄĒ »ēŗ»Ąø·Ī¼­ øøµé¾ī Įż“Ļ“Ł.):"
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Č£½ŗĘ®øķ:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "ĄĪÅĶ³Ż ¾×¼¼½ŗ"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "ĄÆĒü: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "°ŌĄĢĘ®æžĄĢ:"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "ĄĪÅĶĘäĄĢ½ŗ:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "»óÅĀ:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr "±ā“Ł·Į ĮÖ¼¼æä."
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "ĄĪÅĶ³Ż Į¢±Ł ¼³Į¤..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN ¼³Į¤"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "µå¶óĄĢ¹ö"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "ĄĪÅĶĘäĄĢ½ŗ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Protocol"
msgstr "ĒĮ·ĪÅäÄŻ"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "State"
msgstr "»óÅĀ:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "ĮöæŖ ³×Ę®æ÷ ¼³Į¤..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr "ø¶¹ż»ēø¦ ½ĒĒąĒĻ·Įøé 橱āø¦ “©ø£¼¼æä. ->"
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "ø¶¹ż»ē..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Ąūæė"
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
msgid "Please Wait... Applying the configuration"
msgstr "±ā“Ł·Į ĮÖ¼¼æä... ¼³Į¤Ą» ĄūæėĒĻ°ķ ĄÖ½Ą“Ļ“Ł."
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "欰įµŹ"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "欰į ¾ČµŹ"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "欰į..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Disconnect..."
msgstr "欰į ²÷±ā..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
@@ -10458,42 +10747,42 @@ msgstr ""
"¼³Į¤µČ ĄĪÅĶĘäĄĢ½ŗ°” ¾ų½Ą“Ļ“Ł.\n"
"”ø¼³Į¤”¹Ą» “­·Æ ĄĪÅĶĘäĄĢ½ŗø¦ øÕĄś ¼³Į¤ĒĻ¼¼æä."
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN ¼³Į¤"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "¾ī“šÅĶ %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "ŗĪĘ® ĒĮ·ĪÅäÄŻ"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "ŗĪĘĆ½Ć ½ĆĄŪµŹ"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP Ŭ¶óĄĢ¾šĘ®"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "activate now"
msgstr "Įö±Ż Č°¼ŗČ­"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
msgid "deactivate now"
msgstr "Įö±Ż ŗńČ°¼ŗČ­"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
@@ -10501,137 +10790,137 @@ msgstr ""
"ĄĪÅĶ³Ż 欰įĄĢ ¾ų½Ą“Ļ“Ł.\n"
"”ø¼³Į¤”¹Ą» “­·Æ øÕĄś 欰įĄ» ¼³Į¤ĒĻ¼¼æä."
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "ĄĪÅĶ³Ż 欰į ¼³Į¤"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "ĄĪÅĶ³Ż 欰į ¼³Į¤"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "欰į ĄÆĒü: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "ĄĪĄŚ"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "°ŌĄĢĘ®æžĄĢ"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "ĄĢ“õ³Ż Ä«µå"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP Ŭ¶óĄĢ¾šĘ®"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "»ēæė¹ż: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-"-*-gulim-medium-r-*-*-*-140-*-*-*-*-ksc5601.1987-0,-misc-fixed-medium-r-*-*-"
-"*-140-*-*-*-*-*-*,*-r-*"
+"-misc-fixed-medium-r-*-*-*-140-*-*-*-*-*-*,-*-gulim-medium-r-*-*-*-140-*-*-*-"
+"*-ksc5601.1987-0,*-r-*"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "øšµā ĄĢø§"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Å©±ā"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "µå·¹ĄĢÅ©ĒĆ·ĪĒĒ"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "ŗĪĘ® µš½ŗÅ© »ż¼ŗ"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "±āŗ»°Ŗ"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "ĒĆ·ĪĒĒµå·¹ĄĢÅ© æĄ·ł: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "Äæ³Ī ¹öĄü"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "ĄĻ¹Ż æµæŖ"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Ąü¹®°” æµæŖ"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "mkinitrdĄĒ ±āÅø ĄĪĄŚ"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "øšµā Ćß°”"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "°­Į¦ ĆßĮų"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "ŗĪĘĆ½Ć ĄūĄē øšµāĄĢ ĄÖĄ» °ęæģæ”øø ĄĢ¹ĢĮö »ż¼ŗ"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "SCSI øšµā »ż·«"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "RAID øšµā »ż·«"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "øšµā Į¦°Å"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Ćā·Ā"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "µš½ŗÅ© »ż¼ŗ"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s ĄåÄ”æ” øÅĆ¼°” µé¾īĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
-#: ../../standalone/drakfloppy_.c:427
-#, fuzzy, c-format
+#: ../../standalone/drakfloppy_.c:426
+#, 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:429
+#: ../../standalone/drakfloppy_.c:428
#, c-format
msgid "Unable to fork: %s"
msgstr "ŗŠ±āĒŅ ¼ö ¾ų½Ą“Ļ“Ł: %s"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10642,102 +10931,99 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
-msgstr ""
+msgstr "¼³Ä”µČ ʳʮ °Ė»ö"
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
-msgstr ""
+msgstr "¼³Ä”µČ ʳʮ ¼±ÅĆ ĒŲĮ¦"
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
-msgstr ""
+msgstr "øšµē ʳʮ ŗŠ¼®"
-#: ../../standalone/drakfont_.c:261
-#, fuzzy
+#: ../../standalone/drakfont_.c:260
msgid "no fonts found"
-msgstr "³×Ę®æ÷ Ä«µåø¦ Ć£Ą»¼ö ¾ų½Ą“Ļ“Ł"
+msgstr "ʳʮø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł."
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
msgid "done"
msgstr "æĻ·į"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "æĆ¹Łø„ ʳʮ Ąē¼±ÅĆ"
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
-msgstr ""
+msgstr "ʳʮø¦ Ć£Ą» ¼ö ¾ų¾ś½Ą“Ļ“Ł.\n"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "¼³Ä”µČ øń·Ļ攼­ ʳʮ °Ė»ö"
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
msgid "Fonts copy"
-msgstr ""
+msgstr "ʳʮ ŗ¹»ē"
-#: ../../standalone/drakfont_.c:382
-#, fuzzy
+#: ../../standalone/drakfont_.c:381
msgid "True Type fonts installation"
-msgstr "¼³Ä” ĮŲŗńĮߥŌ“Ļ“Ł"
+msgstr "Ę®·ēÅøĄŌ ʳʮ ¼³Ä”"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "±ā“Ł·Į ĮÖ¼¼æä. ttmkfdir ½ĒĒą Įß..."
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
-msgstr ""
+msgstr "Ę®·ēÅøĄŌ ¼³Ä” æĻ·į"
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
-msgstr ""
+msgstr "ʳʮ ŗÆČÆ"
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "°ķ½ŗĘ®½ŗÅ©ø³Ę® ĀüĮ¶"
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "ttf ʳʮ ŗÆČÆ"
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "pfm ʳʮ ŗÆČÆ"
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "ĄÓ½Ć ĘÄĄĻ ĄŗĘó"
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
msgid "Restart XFS"
-msgstr ""
+msgstr "XFS Ąē½ĆĄŪ"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "ʳʮ ĘÄĄĻµé ĄŗĘó"
-#: ../../standalone/drakfont_.c:535
-#, fuzzy
+#: ../../standalone/drakfont_.c:534
msgid "xfs restart"
-msgstr "Į¦ĒŃ"
+msgstr "XFS Ąē½ĆĄŪ"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10746,118 +11032,111 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
-#, fuzzy
+#: ../../standalone/drakfont_.c:630
msgid "Fonts Importation"
-msgstr "ĘÄĘ¼¼Ē Ę÷øĖ"
+msgstr "ʳʮ ¼öĄŌ"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "Ą©µµæģĮī ʳʮ °”Į®æĄ±ā"
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
msgid "Uninstall Fonts"
-msgstr ""
+msgstr "ʳʮ Į¦°Å"
-#: ../../standalone/drakfont_.c:688
-#, fuzzy
+#: ../../standalone/drakfont_.c:679
+msgid "Advanced Options"
+msgstr "°ķ±Ž æɼĒ"
+
+#: ../../standalone/drakfont_.c:687
msgid "Font List"
-msgstr "ø¶æīĘ® Ą§Ä”"
+msgstr "ʳʮ øń·Ļ"
-#: ../../standalone/drakfont_.c:910
-#, fuzzy
+#: ../../standalone/drakfont_.c:909
msgid "Choose the applications that will support the fonts :"
-msgstr "Ę÷øĖĒŅ ĘÄĘ¼¼ĒĄ» ¼±ÅĆĒĻ¼¼æä"
+msgstr "ĄĢ ʳʮø¦ ĮöæųĒŅ ĒĮ·Ī±×·„µéĄ» ¼±ÅĆĒĻ¼¼æä"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
-msgstr ""
+msgstr "°ķ½ŗĘ®½ŗÅ©ø³Ę®"
-#: ../../standalone/drakfont_.c:926
-#, fuzzy
+#: ../../standalone/drakfont_.c:925
msgid "StarOffice"
-msgstr "æĄĒĒ½ŗ"
+msgstr "½ŗÅø æĄĒĒ½ŗ"
-#: ../../standalone/drakfont_.c:933
-#, fuzzy
+#: ../../standalone/drakfont_.c:932
msgid "Abiword"
-msgstr "ĮßĮö"
+msgstr "¾Ęŗńæöµå"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
msgid "Generic Printers"
msgstr "ĄĻ¹Ż ĒĮø°ÅĶ"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "ʳʮ ĘÄĄĻĄĢ³Ŗ µš·ŗÅäø®ø¦ ¼±ÅĆ ČÄ, 'Ćß°”'ø¦ “©ø£¼¼æä."
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
msgid "Install List"
msgstr "¼³Ä” øń·Ļ"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
-msgstr ""
+msgstr "ĄĢ»óĄĢ ¾ųĄøøé 橱āø¦ “©ø£¼¼æä."
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
-msgstr ""
+msgstr "±×·øĮö ¾Ź“Łøé, 橱āø¦ “©ø£¼¼æä."
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
-msgstr ""
+msgstr "øšµē ¼±ÅĆ ĒŲĮ¦"
-#: ../../standalone/drakfont_.c:1179
-#, fuzzy
+#: ../../standalone/drakfont_.c:1178
msgid "Selected All"
-msgstr "ĘÄĄĻĄ» ¼±ÅĆĒĻ¼¼æä."
+msgstr "øšµĪ ¼±ÅĆ"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
msgid "Remove List"
msgstr "Į¦°Å øń·Ļ"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
-#, fuzzy
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
-msgstr "ĆŹ±āČ­ øŽ½ĆĮö"
+msgstr "ĆŹ±āČ­ Å×½ŗĘ®"
-#: ../../standalone/drakfont_.c:1208
-#, fuzzy
+#: ../../standalone/drakfont_.c:1207
msgid "Copy fonts on your system"
-msgstr "³×Ę®æ÷ ¾ī“šÅĶø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
+msgstr "½Ć½ŗÅŪ ʳʮ ŗ¹»ē"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "ʳʮ ¼³Ä” ¹× ŗÆČÆ"
-#: ../../standalone/drakfont_.c:1216
-#, fuzzy
+#: ../../standalone/drakfont_.c:1215
msgid "Post Install"
-msgstr "¼³Ä”"
+msgstr "ČĹŻ ¼³Ä”"
-#: ../../standalone/drakfont_.c:1241
-#, fuzzy
+#: ../../standalone/drakfont_.c:1240
msgid "Remove fonts on your system"
-msgstr "³×Ę®æ÷ ¾ī“šÅĶø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
+msgstr "½Ć½ŗÅŪ ʳʮ Į¦°Å"
-#: ../../standalone/drakfont_.c:1245
-#, fuzzy
+#: ../../standalone/drakfont_.c:1244
msgid "Post Uninstall"
-msgstr "¼³Ä” Į¾·į"
+msgstr "ČĹŻ ¼³Ä”Į¦°Å"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "ĄĪÅĶ³Ż 欰į °ųĄÆ"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
+msgstr "ĮĖ¼ŪĒÕ“Ļ“Ł. 2.4 Äæ³Īøø ĮöæųµĖ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "ĒöĄē ĄĪÅĶ³Ż 欰į °ųĄÆ°” °”“ÉĒŃ »óÅĀĄŌ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10869,31 +11148,31 @@ msgstr ""
"\n"
"¹«½¼ ĄŪ¾÷Ą» ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "ĒŲĮ¦"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "Ćė¼Ņ"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "Ąē¼³Į¤"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
msgid "Disabling servers..."
msgstr "¼­¹ö ĮßĮö Įß..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
msgid "Internet connection sharing is now disabled."
msgstr "ĄĢĮ¦ ĄĪÅĶ³Ż 欰į °ųĄÆ°” ±ŻĮöµĒ¾ś½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "ĒöĄē ĄĪÅĶ³Ż 欰į °ųĄÆ°” ŗŅ°”“ÉĒŃ »óÅĀĄŌ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10905,19 +11184,19 @@ msgstr ""
"\n"
"¹«½¼ ĄŪ¾÷Ą» ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "Ēćæė"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr "¼­¹ö Ēćæė Įß"
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
msgid "Internet connection sharing is now enabled."
msgstr "ĄĢĮ¦ ĄĪÅĶ³Ż 欰į °ųĄÆ°” ĒćæėµĒ¾ś½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10932,32 +11211,32 @@ msgstr ""
"\n"
"ĮÖĄĒ: ĮöæŖ ³×Ę®æ÷(·£)Ą» øńĄūĄø·Ī ¼³Ä”µČ ³×Ę®æ÷ ¾ī“šÅĶ°” ĄÖ¾ī¾ß ĒÕ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr "ĄĪÅĶĘäĄĢ½ŗ %s (%s øšµā »ēæė)"
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, c-format
msgid "Interface %s"
msgstr "ĄĪÅĶĘäĄĢ½ŗ %s"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "³×Ę®æ÷ ¾ī“šÅĶø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"¾ī¶°ĒŃ ³×Ę®æ÷ ¾ī“šÅĶµµ ¹ß°ßµĒĮö ¾Ź½Ą“Ļ“Ł. ĒĻµåæž¾ī ¼³Į¤ µµ±øø¦ ½ĒĒąĒŲ ŗø¼¼æä."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "³×Ę®æ÷ ĄĪÅĶĘäĄĢ½ŗ"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10972,18 +11251,17 @@ msgstr ""
"\n"
"±× ¾ī“šÅĶ·Ī ĮöæŖ ³×Ę®æ÷Ą» ¼³Į¤ĒŅ °ĶĄŌ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "¾ī“Ą ³×Ę®æ÷ ¾ī“šÅĶ°” ĮöæŖ ³×Ę®æ÷Ąø·Ī 欰įµÉ °ĶĄĪĮö ¼±ÅĆĒĻ¼¼æä."
-#: ../../standalone/drakgw_.c:268
-#, fuzzy
+#: ../../standalone/drakgw_.c:266
msgid "Network interface already configured"
-msgstr "³×Ę®æ÷ ±ā“ÉĄĢ ¼³Į¤µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
+msgstr "³×Ę®æ÷ ĄĪÅĶĘäĄĢ½ŗ“Ā ĄĢ¹Ģ ¼³Į¤µĒ¾ī ĄÖ½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10993,17 +11271,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
-#, fuzzy
+#: ../../standalone/drakgw_.c:272
msgid "Automatic reconfiguration"
-msgstr "ĄŚµæ CUPS ¼³Į¤"
+msgstr "ĄŚµæ Ąē¼³Į¤"
-#: ../../standalone/drakgw_.c:275
-#, fuzzy
+#: ../../standalone/drakgw_.c:273
msgid "Show current interface configuration"
-msgstr "ĄĪÅĶ³Ż ¼³Į¤ ŗÆ°ę"
+msgstr "ĒöĄē ĄĪÅĶĘäĄĢ½ŗ ¼³Į¤ ŗø±ā"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11014,7 +11290,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11026,33 +11302,32 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
-msgstr ""
+msgstr "C Ŭ·”½ŗ ĮöæŖ ³×Ę®æ÷"
-#: ../../standalone/drakgw_.c:295
-#, fuzzy
+#: ../../standalone/drakgw_.c:293
msgid "(This) DHCP Server IP"
-msgstr "CUPS ¼­¹ö IP"
+msgstr "DHCP ¼­¹ö IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "ĄĪÅĶĘäĄĢ½ŗæĶ DHCP ¼­¹ö Ąē¼³Į¤"
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "ĒöĄē ¼³Į¤ %s攼­ ĄįĄēĄūĄĪ ·£ ĮÖ¼Ņ Ćęµ¹ĄĢ ¹ß°ßµĖ“Ļ“Ł!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "¹ęČ­ŗ® ¼³Į¤ĄĢ °ØĮöµĒ¾ś½Ą“Ļ“Ł!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11060,20 +11335,20 @@ msgstr ""
"°ę°ķ! ±āĮøĄĒ ¹ęČ­ŗ® ¼³Į¤ĄĢ °ØĮöµĒ¾ś½Ą“Ļ“Ł. ¼³Ä”°” ³”³­ ČÄæ” Į÷Į¢ ¼öĮ¤ĒŅ ĒŹæä"
"°” ĄÖ½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "¼³Į¤ Įß..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr "½ŗÅ©ø³Ę® ¼³Į¤ Įß, ¼ŅĒĮĘ®æž¾ī ¼³Ä” Įß, ¼­¹ö ½ĆĄŪ Įß..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "ĘŃÅ°Įö ¼³Ä”Įß ¹®Į¦ ¹ß»ż %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11083,23 +11358,23 @@ msgstr ""
"ĄĢĮ¦ ĄŚµæ ³×Ę®æ÷ ¼³Į¤±ā“É(DHCP)Ąø·Ī ĮöæŖ ³×Ę®æö»óĄĒ “Łø„ ÄÄĒ»ÅĶæĶ ĄĪÅĶ³Ż æ¬"
"°į °ųĄÆø¦ ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
msgid "The setup has already been done, but it's currently disabled."
msgstr "¼³Į¤Ąŗ ĄĢ¹Ģ æĻ·įµĒ¾śĮöøø, ĒöĄē ĒŲĮ¦µČ »óÅĀĄŌ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
msgid "The setup has already been done, and it's currently enabled."
msgstr "¼³Į¤ĄĢ ĄĢ¹Ģ æĻ·įµĒ¾śĄøøē, ĒöĄē ĒćæėµČ »óÅĀĄŌ“Ļ“Ł."
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
msgid "No Internet Connection Sharing has ever been configured."
msgstr "¾ī¶°ĒŃ ĄĪÅĶ³Ż 欰į °ųĄÆµµ ¼³Į¤µČ ĄūĄĢ ¾ų½Ą“Ļ“Ł."
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
msgid "Internet connection sharing configuration"
msgstr "ĄĪÅĶ³Ż 欰į°ųĄÆ ¼³Į¤"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11114,20 +11389,13 @@ msgstr ""
"\n"
"ø¶¹ż»ēø¦ ½ĒĒąĒĻ·Įøé ”ø¼³Į¤”¹Ą» “©ø£¼¼æä."
-#: ../../standalone/drakxconf_.c:47
-msgid "Control Center"
-msgstr "ÄĮĘ®·Ń ¼¾ÅĶ"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "»ēæėĒŅ µµ±øø¦ ¼±ÅĆĒĻ¼¼æä."
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11136,112 +11404,113 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "ij³Ŗ“Ł (ÄÉĄĢŗķ)"
-#: ../../standalone/drakxtv_.c:72
-#, fuzzy
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr "¹Ģ±¹ (°ųĮßĘÄ)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr "¹Ģ±¹ (ÄÉĄĢŗķ)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr "¹Ģ±¹ (ÄÉĄĢŗķ-HRC)"
-#: ../../standalone/drakxtv_.c:73
-#, fuzzy
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr "Įß±¹ (°ųĮßĘÄ)"
-#: ../../standalone/drakxtv_.c:73
-#, fuzzy
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr "ĄĻŗ» (°ųĮßĘÄ)"
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr "ĄĻŗ» (ÄÉĄĢŗķ)"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "East Europe"
msgstr "µæĄÆ·“"
-#: ../../standalone/drakxtv_.c:74
-#, fuzzy
+#: ../../standalone/drakxtv_.c:68
msgid "France [SECAM]"
-msgstr "ĒĮ¶ū½ŗ"
+msgstr "ĒĮ¶ū½ŗ [SECAM]"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
msgstr "¾ĘĄĻ·£µå"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
msgid "West Europe"
msgstr "¼­ĄÆ·“"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Australia"
msgstr "æĄ½ŗĘ®·¹ĄĻø®¾Ę"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr "“ŗĮś·£µå"
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr "³²¾ĘĒĮø®Ä«"
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr "¾Ęø£ĒīĘ¼³Ŗ"
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
+"TV ³ėæČ°ś ±¹°”ø¦\n"
+"ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
-msgstr "TV NORM :"
+msgstr "TV ³š :"
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr "ĮöæŖ :"
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "TV Ƥ³Ī °Ė»ö ĮųĒą Įß..."
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "TV Ƥ³Ī °Ė»ö Įß..."
-#: ../../standalone/drakxtv_.c:130
-#, fuzzy
+#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
-msgstr "“ŁĄ½ ĘŃÅ°Įöø¦ ¼³Ä”Įß æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł: "
+msgstr "TV Ƥ³ĪĄ» Ć£“Ā °śĮ¤æ”¼­ æĄ·ł°” ĄÖ¾ś½Ą“Ļ“Ł."
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
-msgstr ""
+msgstr "XawTV°” ¼³Ä”µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł!"
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
-msgstr ""
+msgstr "Įń°Åæī ĒĻ·ēø¦!"
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+msgstr "ĄĢĮ¦ [xawtv]ø¦ (XĄ©µµæģ ĒĻ攼­) »ēæėĒŅ ¼ö ĄÖ½Ą“Ļ“Ł!\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "TV Ä«µåø¦ Ć£Ą» ¼ö ¾ų½Ą“Ļ“Ł!"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -11259,11 +11528,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "»ēæė¹ż: keyboarddrake [--expert] [Å°ŗøµå]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Å°ŗøµå ·¹ĄĢ¾Ęæō ¼±ÅĆ"
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "ÄܼÖ攼­ ¹é½ŗĘäĄĢ½ŗ Å°°” Įöæģ±āø¦ ĒĻµµ·Ļ ĒĻ½Ć°Ś½Ą“Ļ±ī?"
@@ -11285,9 +11554,9 @@ msgstr "¶óĄĢŗź ¾÷±×·¹ĄĢµåø¦ ½ĆĄŪĒŅ ¼ö ¾ų½Ą“Ļ“Ł!!! \n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "ŗÆ°ęĄĢ æĻ·į µĒ¾śĮöøø, ĄūæėµĒ±ā Ą§ĒŲ¼­“Ā Ąē·Ī±×ĄĪĒŲ¾ß ĒÕ“Ļ“Ł."
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
msgid "logdrake"
msgstr "·Ī±×µå·¹ĄĢÅ©"
@@ -11399,147 +11668,136 @@ msgstr "“Ž·Ā"
msgid "Content of the file"
msgstr "ĘÄĄĻ ³»æė"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
-msgstr ""
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
+msgstr "øŽĄĻ °ę°ķ"
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr "±ā“Ł·Į ĮÖ¼¼æä. ĘÄĄĻ ŗŠ¼® Įß: %s"
-#: ../../standalone/logdrake_.c:409
-msgid "Mail/SMS alert configuration"
-msgstr "øŽĄĻ/SMS °ę°ķ ¼³Į¤"
+#: ../../standalone/logdrake_.c:408
+msgid "Mail alert configuration"
+msgstr "øŽĄĻ °ę°ķ ¼³Į¤"
-#: ../../standalone/logdrake_.c:410
-#, fuzzy
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-"ĒĮ¶ō½Ć ¼³Į¤ µµ±øæ” Ąß æĄ¼Ģ½Ą“Ļ“Ł.\n"
+"øŽĄĻ ¼³Į¤ µµ±øæ” Ąß æĄ¼Ģ½Ą“Ļ“Ł.\n"
"\n"
-"橱ā¼­ ·Ī±×ĄĪ°ś ŗń¹Š¹ųČ£ø¦ ĒŹæä ¶Ē“Ā ĒŹæä·ĪĒĻĮö ¾Ź“Ā\n"
-"HTTPæĶ FTP ĒĮ¶ō½Ćø¦ ¼³Į¤ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł.\n"
+"橱ā¼­ °ę°ķ ½Ć½ŗÅŪĄ» ¼³Į¤ĒŅ ¼ö ĄÖ½Ą“Ļ“Ł.\n"
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "¾ĘĘÄÄ” æłµåæĶĄĢµåĄ„ ¼­¹ö"
-#: ../../standalone/logdrake_.c:418
-#, fuzzy
+#: ../../standalone/logdrake_.c:417
msgid "Domain Name Resolver"
-msgstr "µµøŽĄĪ ĄĢø§"
+msgstr "µµøŽĄĪ ³×ĄÓ ĒŲ°į»ē"
-#: ../../standalone/logdrake_.c:419
-#, fuzzy
+#: ../../standalone/logdrake_.c:418
msgid "Ftp Server"
-msgstr "NIS ¼­¹ö"
+msgstr "FTP ¼­¹ö"
-#: ../../standalone/logdrake_.c:420
-#, fuzzy
+#: ../../standalone/logdrake_.c:419
msgid "Postfix Mail Server"
-msgstr "postfix øŽĄĻ ¼­¹ö, Inn “ŗ½ŗ ¼­¹ö"
+msgstr "Ę÷½ŗĘ®ĒČ½ŗ øŽĄĻ ¼­¹ö"
-#: ../../standalone/logdrake_.c:421
-#, fuzzy
+#: ../../standalone/logdrake_.c:420
msgid "Samba Server"
-msgstr "NIS ¼­¹ö"
+msgstr "»ļ¹Ł ¼­ŗń½ŗ"
-#: ../../standalone/logdrake_.c:422
-#, fuzzy
+#: ../../standalone/logdrake_.c:421
msgid "SSH Server"
-msgstr "NIS ¼­¹ö"
+msgstr "SSH ¼­ŗń½ŗ"
-#: ../../standalone/logdrake_.c:423
-#, fuzzy
+#: ../../standalone/logdrake_.c:422
msgid "Webmin Service"
-msgstr "¼­ŗń½ŗ"
+msgstr "Ą„¹Ī ¼­ŗń½ŗ"
-#: ../../standalone/logdrake_.c:424
-#, fuzzy
+#: ../../standalone/logdrake_.c:423
msgid "Xinetd Service"
-msgstr "ĒĮø°ÅĶ ¼­¹ö"
+msgstr "Xinetd ¼­ŗń½ŗ"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "¼­ŗń½ŗ ¼³Į¤"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
msgid "load setting"
msgstr "¼³Į¤ ĄŠ±ā"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
msgstr "°ę°ķ ¼³Į¤"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+msgid "Please enter your email address below "
+msgstr "¾Ę·”æ” ĄĢøŽĄĻ ĮÖ¼Ņø¦ ĄŌ·ĀĒĻ¼¼æä."
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "»õ ĄĢø§Ąø·Ī ĄśĄå"
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "¾ī¶² Į¾·łĄĒ ø¶æģ½ŗø¦ »ēæėĒĻ½Ź“Ļ±ī?"
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "¹ß°ßµČ ½Ćø®¾ó_USB°” ¾ų½Ą“Ļ“Ł.\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "3¹öĘ° 改ķ¹ĄĢĘ®?"
-#: ../../standalone/printerdrake_.c:49
-#, fuzzy
+#: ../../standalone/printerdrake_.c:48
msgid "Reading printer data ..."
msgstr "ĒĮø°ÅĶ µ„ĄĢÅĶ ĄŠ“Ā Įß ..."
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
msgid "Detecting devices ..."
msgstr "ĄåÄ” °Ė»ö Įß ..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Ę÷Ę® °Ė»ē"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
-#, fuzzy
+#: ../../standalone/scannerdrake_.c:59
msgid "Select a scanner"
-msgstr "±×·”ĒČ Ä«µå ¼±ÅĆ"
+msgstr "½ŗij³Ź ¼±ÅĆ"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
-msgstr ""
+msgstr "ĄĢ ½ŗij³Ź [%s]“Ā ĮöæųµĒĮö ¾Ź½Ą“Ļ“Ł."
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
msgid "choose device"
msgstr "ĄåÄ” ¼±ÅĆ"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11547,7 +11805,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11567,15 +11825,15 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
msgid "Firewalling Configuration"
msgstr "¹ęČ­ŗ® ¼³Į¤"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
msgid "Firewalling configuration"
msgstr "¹ęČ­ŗ® ¼³Į¤"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11587,7 +11845,7 @@ msgstr ""
"¹ęČ­ŗ®Ąŗ ĄĢ¹Ģ ¼³Į¤µĒ¾ī ĄÖ½Ą“Ļ“Ł.\n"
"¹ęČ­ŗ®Ą» ŗÆ°ę ¶Ē“Ā Į¦°ÅĒĻ·Įøé, ”ø¼³Į¤”¹Ą» “©ø£¼¼æä."
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11835,56 +12093,60 @@ msgstr "%sø¦ æ­ ¼ö ¾ų½Ą“Ļ“Ł: %s\n"
msgid "Can't open %s for writing: %s\n"
msgstr "%sø¦ ¾²±ā øšµå·Ī æ­ ¼ö ¾ų½Ą“Ļ“Ł: %s\n"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
-msgstr ""
+msgstr "¾Ę“ĻæĄ | DHCP“Ā ĒŹæä¾ų½Ą“Ļ“Ł."
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
-msgstr ""
+msgstr "æ¹ | DHCP°” ĒŹæäĒÕ“Ļ“Ł."
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
-msgstr ""
+msgstr "¾Ę“ĻæĄ | NTP“Ā ĒŹæä¾ų½Ą“Ļ“Ł."
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
-msgstr ""
+msgstr "æ¹ | NTP°” ĒŹæäĒÕ“Ļ“Ł."
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
-msgstr ""
+msgstr "ĄśĄå ¾ČĒŌ"
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
-msgstr ""
+msgstr "ĄśĄå ¹× Į¾·į"
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
-#, fuzzy
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
msgid "Firewall Configuration Wizard"
-msgstr "¹ęČ­ŗ® ¼³Į¤"
+msgstr "¹ęČ­ŗ® ¼³Į¤ ø¶¹ż»ē"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
-msgstr ""
+msgstr "¾Ę“ĻæĄ (ĄĪÅĶ³Żæ”¼­ °Żø®)"
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
-msgstr ""
+msgstr "æ¹ (¹ęČ­ŗ®Ą» ÅėĒŃ Ēćæė)"
-#: ../../tinyfirewall.pm_.c:232
-#, fuzzy
+#: ../../tinyfirewall.pm_.c:230
msgid "Please Wait... Verifying installed packages"
-msgstr "¼³Ä” ĮŲŗńĮߥŌ“Ļ“Ł. Ąį½Ć ±ā“Łø®¼¼æä."
+msgstr "Ąį½Ć ±ā“Łø®¼¼æä... ¼³Ä”µČ ĘŃÅ°ĮöµéĄ» Č®ĄĪ ĮߥŌ“Ļ“Ł."
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+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-"
+"normal--16-*-75-75-*-*-ksc5601.1987-0,*-r-*"
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Ą„/FTP"
@@ -11934,6 +12196,11 @@ 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 "ø®“Ŗ½ŗ Ē„ĮŲ ±ā¹Ż Č£ČÆ ĘŃÅ°Įö"
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "ø®“Ŗ½ŗ ¹× ĄŚĄÆ ¼ŅĒĮĘ®æž¾īæ” “ėĒŃ ¼­Ąū°ś Howto¹®¼­"
@@ -12020,10 +12287,6 @@ msgid "Office Workstation"
msgstr "æĄĒĒ½ŗ æöÅ©½ŗÅץĢ¼Ē"
#: ../../share/compssUsers:999
-msgid "Server"
-msgstr "¼­¹ö"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "±×³š, Icewm, Ą©µµæģ øŽĄĢÄæ, ĄĪ¶óĄĢĘ°øÕĘ®, Fvwm, µīµī"
@@ -12084,6 +12347,10 @@ msgid "Clients for different protocols including ssh"
msgstr "SSH ¹× “Łø„ ĒĮ·ĪÅäÄŻĄĒ Ŭ¶óĄĢ¾šĘ®"
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr "LSB"
+
+#: ../../share/compssUsers:999
msgid "Internet gateway"
msgstr "ĄĪÅĶ³Ż °ŌĄĢĘ®æžĄĢ"
@@ -12115,228 +12382,57 @@ msgstr "øÖĘ¼¹Ģµš¾ī - CD ±Į±ā"
msgid "Scientific Workstation"
msgstr "°śĒŠ æöÅ©½ŗÅץĢ¼Ē"
-#~ msgid "fsck failed with exit code %d or signal %d"
-#~ msgstr "ĘÄĄĻ½Ć½ŗÅŪ Į”°ĖĄĢ Į¾·įÄŚµå %d ¶Ē“Ā ½Ć±×³Ī %d·Ī ½ĒĘŠĒĻ擽Ą“Ļ“Ł."
-
-#~ msgid "Graphics card identification: %s\n"
-#~ msgstr "±×·”ĒČ Ä«µå ID: %s\n"
-
-#~ msgid "Choose options for server"
-#~ msgstr "¼­¹ö æɼĒĄ» ¼±ÅĆĒĻ¼¼æä"
-
-#~ msgid "Monitor not configured"
-#~ msgstr "øš“ĻÅĶ°” ¼³Į¤µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
-
-#~ msgid "Graphics card not configured yet"
-#~ msgstr "±×·”ĒČ Ä«µå°” ¾ĘĮ÷ ¼³Į¤µĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
-
-#~ msgid "Resolutions not chosen yet"
-#~ msgstr "ĒŲ»óµµ°” ¼±ÅƵĒĮö ¾Ź¾Ņ½Ą“Ļ“Ł."
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+#, fuzzy
#~ msgid ""
-#~ "\n"
-#~ "try to change some parameters"
+#~ "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 ""
-#~ "\n"
-#~ "ĄĻŗĪ ĄĪĄŚ°ŖµéĄ» ŗÆ°ęĒŲ ŗø¼¼æä."
-
-#~ msgid "An error occurred:"
-#~ msgstr "æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł:"
-
-#~ msgid "Leaving in %d seconds"
-#~ msgstr "%d ĆŹ ³²¾Ņ½Ą“Ļ“Ł."
-
-#~ msgid "Is this the correct setting?"
-#~ msgstr "ĄĢ ¼³Į¤ĄĢ øĀ½Ą“Ļ±ī?"
-
-#~ msgid "An error occurred, try to change some parameters"
-#~ msgstr "æĄ·ł°” ¹ß»żĒß½Ą“Ļ“Ł. ĄĻŗĪ ĄĪĄŚ°ŖĄ» ŗÆ°ęĒŲ ŗø¼¼æä."
-
-#~ msgid "XFree86 server: %s"
-#~ msgstr "XFree86 ¼­¹ö: %s"
-
-#~ msgid "Show all"
-#~ msgstr "øšµĪ Ē„½Ć"
-
-#~ msgid "Preparing X-Window configuration"
-#~ msgstr "X-Window ¼³Į¤ ĮŲŗńĮß"
-
-#~ msgid "What do you want to do?"
-#~ msgstr "¾ī¶»°Ō ĒĻ½Ć°Ś½Ą“Ļ±ī?"
-
-#~ msgid "Change Monitor"
-#~ msgstr "øš“ĻÅĶ ŗÆ°ę"
-
-#~ msgid "Change Graphics card"
-#~ msgstr "±×·”ĒČ Ä«µå ŗÆ°ę"
-
-#~ msgid "Change Server options"
-#~ msgstr "¼­¹ö æɼĒ ŗÆ°ę"
-
-#~ msgid "Change Resolution"
-#~ msgstr "ĒŲ»óµµ ŗÆ°ę"
-
-#~ msgid "Show information"
-#~ msgstr "Į¤ŗø ŗø±ā"
-
-#~ msgid "Test again"
-#~ msgstr "“Ł½Ć Å×½ŗĘ®"
-
-#~ msgid "proftpd"
-#~ msgstr "PROFTPD"
-
-#~ msgid "sshd"
-#~ msgstr "SSHD"
-
-#~ msgid "webmin"
-#~ msgstr "WEBMIN"
-
-#~ msgid "xinetd"
-#~ msgstr "XINETD"
-
-#~ msgid "Setting security level"
-#~ msgstr "ŗø¾Č ¼öĮŲ ¼³Į¤"
-
-#~ msgid "Graphics card"
-#~ msgstr "±×·”ĒČ Ä«µå"
-
-#~ msgid "Select a graphics card"
-#~ msgstr "±×·”ĒČ Ä«µå ¼±ÅĆ"
-
-#~ msgid "Choose a X driver"
-#~ msgstr "X µå¶óĄĢ¹ö ¼±ÅĆ"
-
-#~ msgid "X driver"
-#~ msgstr "X µå¶óĄĢ¹ö"
-
-#~ msgid "Warning: testing this graphics card may freeze your computer"
-#~ msgstr "ĮÖĄĒ : ĄĢ ±×·”ĒČ Ä«µåø¦ Å×½ŗĘ®ĒĻøé ÄÄĒ»ÅĶ°” øŲĆāĮöµµ øšøØ“Ļ“Ł."
-
-#~ msgid "Standard VGA, 640x480 at 60 Hz"
-#~ msgstr "Ē„ĮŲ VGA, 640x480 @ 60 Hz"
-
-#~ msgid "Super VGA, 800x600 at 56 Hz"
-#~ msgstr "½“ĘŪ VGA, 800x600 @ 56 Hz"
-
-#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgstr "8514 Č£ČÆ, 1024x768 @ 87 Hz interlaced (800x600 ¾ČµŹ)"
-
-#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgstr "½“ĘŪ VGA, 1024x768 @ 87 Hz interlaced, 800x600 @ 56 Hz"
-
-#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgstr "Č®Ąå ½“ĘŪ VGA, 800x600 @ 60 Hz, 640x480 @ 72 Hz"
-
-#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgstr "ŗńĄĪÅĶ·¹ĄĢ½ŗ SVGA, 1024x768 @ 60 Hz, 800x600 @ 72 Hz"
-
-#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgstr "°ķĮÖĘļö SVGA, 1024x768 @ 70 Hz"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgstr "1280x1024 @ 60 Hz Įöæų “ŁĮßĮÖĘļö øš“ĻÅĶ"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgstr "1280x1024 @ 74 Hz Įöæų “ŁĮßĮÖĘļö øš“ĻÅĶ"
-
-#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgstr "1280x1024 @ 76 Hz Įöæų “ŁĮßĮÖĘļö øš“ĻÅĶ"
-
-#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgstr "1600x1200 @ 70 Hz »ēæė °”“É øš“ĻÅĶ"
-
-#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgstr "1600x1200 @ 76 Hz »ēæė °”“É øš“ĻÅĶ"
-
-#~ msgid ""
-#~ "The total size for the groups you have selected is approximately %d MB.\n"
-#~ msgstr "¼±ÅĆĒŃ ĘŃÅ°Įö ±×·ģĄĒ ĄüĆ¼ Å©±ā°” %d MBæ” °”±õ½Ą“Ļ“Ł.\n"
+#~ "ĄĢ µī±ŽĄ» »ēæėĒŅ·Įøé øÅæģ ĮÖĄĒĒĻæ©¾ß ĒÕ“Ļ“Ł. ½Ć½ŗÅŪĄ» »ēæėĒĻ±ā攓Ā \n"
+#~ "æėĄĢĒĻ°ŚĮöøø øÅæģ ¹Ī°ØĒĻ°Ō ĄŪµæĒÕ“Ļ“Ł: ĄĪÅĶ³ŻĄĢ³Ŗ ³×Ę®æ÷æ” æ¬°įµČ ½Ć½ŗÅŪ"
+#~ "æė\n"
+#~ "Ąø·Ī“Ā »ēæėĒĻĮö ø¶¼¼æä. ¾ĻČ£±ā“ÉĄĢ ¾ų½Ą“Ļ“Ł."
+#, fuzzy
#~ msgid ""
-#~ "If you wish to install less than this size,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of 100%% will install all selected packages."
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
#~ msgstr ""
-#~ "ĄĢ æė·®ŗø“Ł Ąū°Ō ¼³Ä”ĒĻ°ķ ½Ķ“Łøé,\n"
-#~ "¼³Ä”ĒĻ°ķĄŚ ĒĻ“Ā ĘŃÅ°ĮöµéĄĒ ¹éŗŠĄ²Ą» ¼±ÅĆĒĻ¼¼æä.\n"
-#~ "\n"
-#~ "¹éŗŠĄ²ĄĢ ³·Ąøøé, °”Ąå ĮßæäĒŃ ĘŃÅ°Įöµéøø ¼³Ä”µĖ“Ļ“Ł;\n"
-#~ "¹éŗŠĄ² 100%%“Ā ¼±ÅĆµČ øšµē ĘŃÅ°ĮöµéĄ» ¼³Ä”ĒÕ“Ļ“Ł."
+#~ "ĄĢ ŗø¾Čµī±ŽĄø·Ī ĄĢ ½Ć½ŗÅŪĄ» ¼­¹ö·Ī æīæėĒŅ ¼ö ĄÖ°Ō µĖ“Ļ“Ł.\n"
+#~ "ĄĢ ŗø¾Čµī±ŽĄŗ æÜŗĪĄĒ Ŭ¶óĄĢ¾šĘ®µéĄĒ Į¢¼ÓĄ» ¹Ž¾ĘµéĄĢ“Āµ„ ĄÖ¾ī¼­ \n"
+#~ "ĆęŗŠČ÷ ³ōĄŗ ŗø¾Čµī±ŽĄŌ“Ļ“Ł. "
-#~ msgid ""
-#~ "You have space on your disk for only %d%% of these packages.\n"
-#~ "\n"
-#~ "If you wish to install less than this,\n"
-#~ "select the percentage of packages that you want to install.\n"
-#~ "A low percentage will install only the most important packages;\n"
-#~ "a percentage of %d%% will install as many packages as possible."
-#~ msgstr ""
-#~ "¼±ÅĆµČ ĘŃÅ°ĮöµéĄĒ %d%%æ” ĒŲ“ēĒĻ“Ā µš½ŗÅ© °ų°£øø ³²¾Ę ĄÖ½Ą“Ļ“Ł.\n"
-#~ "\n"
-#~ "ĄĢ æė·®ŗø“Ł Ąū°Ō ¼³Ä”ĒĻ°ķ ½Ķ“Łøé,\n"
-#~ "¼³Ä”ĒĻ°ķĄŚ ĒĻ“Ā ĘŃÅ°ĮöµéĄĒ ¹éŗŠĄ²Ą» ¼±ÅĆĒĻ¼¼æä.\n"
-#~ "¹éŗŠĄ²ĄĢ ³·Ąøøé, °”Ąå ĮßæäĒŃ ĘŃÅ°Įöµéøø ¼³Ä”µĖ“Ļ“Ł;\n"
-#~ "¹éŗŠĄ² %d%%“Ā °”“ÉĒŃ øšµē ĘŃÅ°ĮöµéĄ» ¼³Ä”ĒÕ“Ļ“Ł."
+#~ msgid "Basic Options"
+#~ msgstr "±āŗ» æɼĒ"
-#~ msgid "You will be able to choose them more specifically in the next step."
-#~ msgstr "“ŁĄ½ “Ü°č攼­ Ćß°”·Ī ĄŚ¼¼Č÷ ¼±ÅĆĒŅ ¼ö ĄÖ½Ą“Ļ“Ł."
+#~ msgid "Security Checks"
+#~ msgstr "ŗø¾Č Į”°Ė"
-#~ msgid "Percentage of packages to install"
-#~ msgstr "¼³Ä”ĒŅ ĘŃÅ°ĮöĄĒ ¹éŗŠĄ²"
+#~ msgid "Data list to include on CDROM."
+#~ msgstr "CDROMæ” Ę÷ĒŌĒŅ µ„ĄĢÅĶ øń·Ļ"
-#~ msgid "Please choose the desired security level."
-#~ msgstr "ŗø¾Č “Ü°čø¦ ¼±ÅĆĒŲ ĮÖ¼¼æä"
+#~ msgid "Please choose your CD space"
+#~ msgstr "CD æė·®Ą» ¼±ÅĆĒĻ¼¼æä."
-#~ msgid "hide expert mode"
-#~ msgstr "Ąü¹®°” øšµå ¼ū±ā±ā"
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "CD ·¹ÄŚ“õ ¼Óµµø¦ ĄŌ·ĀĒĻ¼¼æä."
-#~ msgid "show expert mode"
-#~ msgstr "Ąü¹®°” øšµå ŗøĄĢ±ā"
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "CDæ” ¼³Ä” ŗĪĘ®ø¦ Ę÷ĒŌĒŅĮöø¦ Į”°ĖĒĻ¼¼æä."
-#~ msgid ""
-#~ "If '%s' is a removable peripheral,\n"
-#~ " verify that a media is inserted."
-#~ msgstr ""
-#~ "øø¾ą ”ø%s”¹°” ŹĀū½Ä ĄåÄ”¶óøé, \n"
-#~ "¹Ģµš¾ī°” »šĄŌµĒ¾ī ĄÖ“ĀĮö Č®ĄĪĒĻ¼¼æä."
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "ĮÖ¼Ņ“Ā ”øftp:”¹·Ī ½ĆĄŪĒŲ¾ß ĒÕ“Ļ“Ł."
#~ msgid ""
-#~ "WARNING! This will format '%s'.\n"
-#~ "All data will be erased on the peripheral '%s'.\n"
-#~ "If you want to continue, press OK. "
-#~ msgstr ""
-#~ "°ę°ķ: ”ø%s”¹ø¦ Ę÷øĖĒŅ °ĶĄŌ“Ļ“Ł.\n"
-#~ "”ø%s”¹ĄåÄ”ĄĒ øšµē µ„ĄĢÅĶ°” »čĮ¦µÉ °ĶĄŌ“Ļ“Ł.\n"
-#~ "°č¼ÓĒĻ·Įøé ”øČ®ĄĪ”¹Ą» “©ø£¼¼æä."
-
-#~ msgid "unknown"
-#~ msgstr "¾Ė ¼ö ¾ųĄ½"
-
-#~ msgid "Select a module or write his name:"
-#~ msgstr "øšµāĄ» ¼±ÅĆĒĻ°ķ ĄĢø§Ą» ĄŌ·ĀĒĻ¼¼æä:"
-
-#~ msgid "Category"
-#~ msgstr "¹üĮÖ"
-
-#~ msgid "preload module"
-#~ msgstr "¹Ģø® æĆø± øšµā"
-
-#~ msgid "click on a category"
-#~ msgstr "¹üĮÖø¦ ŬøÆĒĻ¼¼æä."
-
-#~ msgid "Remove"
-#~ msgstr "Į¦°Å"
-
-#~ msgid "Tool for boot disk creation"
-#~ msgstr "ŗĪĘ® µš½ŗÅ© »ż¼ŗ µµ±ø"
-
-#~ msgid "Show expert mode"
-#~ msgstr "Ąü¹®°” øšµå ŗøĄĢ±ā"
-
-#~ msgid "modules"
-#~ msgstr "øšµāµé"
-
-#~ msgid "Boot disk maker. Still in early stage.\n"
-#~ msgstr "ŗĪĘ® µš½ŗÅ© »ż¼ŗ±ā. ¾ĘĮ÷ °³¹ß ĆŹ±ā “Ü°č.\n"
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "CDæ” ¼³Ä” ŗĪĘ®ø¦ Ę÷ĒŌĒŅĮö Č®ĄĪĒĻ¼¼æä."
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index 885a01f56..f0d1f56a0 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakbootdisk VERSION\n"
-"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"POT-Creation-Date: 2002-08-21 15:44+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -56,56 +56,56 @@ msgstr "Pasirink X serverį"
msgid "X server"
msgstr "X serveris"
-#: ../../Xconfig/card.pm_.c:225
+#: ../../Xconfig/card.pm_.c:228
#, fuzzy
msgid "Multi-head configuration"
msgstr "skaitomi nustatymai"
-#: ../../Xconfig/card.pm_.c:226
+#: ../../Xconfig/card.pm_.c:229
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfig/card.pm_.c:280
+#: ../../Xconfig/card.pm_.c:284
msgid "Select the memory size of your graphics card"
msgstr "Pasirink savo vaizdo plokštės atminties dydį"
-#: ../../Xconfig/card.pm_.c:341
+#: ../../Xconfig/card.pm_.c:345
msgid "XFree configuration"
msgstr "XFree konfigūravimas"
-#: ../../Xconfig/card.pm_.c:343
+#: ../../Xconfig/card.pm_.c:347
msgid "Which configuration of XFree do you want to have?"
msgstr "Kurią XFree konfigūraciją tu nori turėti?"
-#: ../../Xconfig/card.pm_.c:374
+#: ../../Xconfig/card.pm_.c:379
msgid "Configure all heads independently"
msgstr ""
-#: ../../Xconfig/card.pm_.c:375
+#: ../../Xconfig/card.pm_.c:380
#, fuzzy
msgid "Use Xinerama extension"
msgstr "Naudokite automatinį aptikimą"
-#: ../../Xconfig/card.pm_.c:379
+#: ../../Xconfig/card.pm_.c:384
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Tinklo Konfigūravimo Meistras"
-#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
-#: ../../Xconfig/various.pm_.c:21
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:435
+#: ../../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:407
+#: ../../Xconfig/card.pm_.c:412
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -114,17 +114,17 @@ msgstr ""
"Tavo plokštė palaiko 3D įrenginio akseleraciją, bet tik su XFree %s.\n"
"Tavo plokštė dirba su XFree %s, kuris galbūt geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
+#: ../../Xconfig/card.pm_.c:414 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Tavo plokštė palaiko 3D akseleraciją su XFree %s."
-#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:443
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s su EKSPERIMENTINE 3D įrenginio akseleracija"
-#: ../../Xconfig/card.pm_.c:419
+#: ../../Xconfig/card.pm_.c:425
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -136,7 +136,7 @@ msgstr ""
"KOMPIUTERĮ.\n"
"Jūsų korta dirba su XFree %s kuris galbūt geriau palaiko 2D."
-#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#: ../../Xconfig/card.pm_.c:428 ../../Xconfig/card.pm_.c:445
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,11 +145,57 @@ msgstr ""
"Jūsų korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERĮ."
-#: ../../Xconfig/card.pm_.c:445
+#: ../../Xconfig/card.pm_.c:451
msgid "Xpmac (installation display driver)"
msgstr ""
-#: ../../Xconfig/main.pm_.c:60
+#: ../../Xconfig/main.pm_.c:78 ../../Xconfig/main.pm_.c:79
+#: ../../Xconfig/monitor.pm_.c:94 ../../any.pm_.c:974
+msgid "Custom"
+msgstr "Prisitaikyti"
+
+#: ../../Xconfig/main.pm_.c:104
+#, fuzzy
+msgid "Graphic Card"
+msgstr "Vaizdo plokštė"
+
+#: ../../Xconfig/main.pm_.c:107 ../../Xconfig/monitor.pm_.c:91
+msgid "Monitor"
+msgstr "Monitorius"
+
+#: ../../Xconfig/main.pm_.c:110 ../../Xconfig/resolution_and_depth.pm_.c:209
+msgid "Resolution"
+msgstr "Skiriamoji geba"
+
+#: ../../Xconfig/main.pm_.c:114
+msgid "Test"
+msgstr ""
+
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:59
+#: ../../diskdrake/interactive.pm_.c:377 ../../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
+#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:281
+#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/stdio.pm_.c:39 ../../interactive/stdio.pm_.c:143
+#: ../../interactive/stdio.pm_.c:144 ../../my_gtk.pm_.c:156
+#: ../../my_gtk.pm_.c:284 ../../my_gtk.pm_.c:307
+#: ../../standalone/drakbackup_.c:3324 ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3438
+msgid "Ok"
+msgstr "Gerai"
+
+#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
+#: ../../printerdrake.pm_.c:2933 ../../standalone/logdrake_.c:224
+msgid "Quit"
+msgstr "Išeiti"
+
+#: ../../Xconfig/main.pm_.c:144
#, c-format
msgid ""
"Keep the changes?\n"
@@ -162,32 +208,28 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfig/monitor.pm_.c:86
+#: ../../Xconfig/monitor.pm_.c:91
msgid "Choose a monitor"
msgstr "Pasirink monitorių"
-#: ../../Xconfig/monitor.pm_.c:86
-msgid "Monitor"
-msgstr "Monitorius"
-
-#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
-msgid "Custom"
-msgstr "Prisitaikyti"
-
-#: ../../Xconfig/monitor.pm_.c:90
+#: ../../Xconfig/monitor.pm_.c:95
msgid "Plug'n Play"
msgstr ""
-#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+#: ../../Xconfig/monitor.pm_.c:96 ../../mouse.pm_.c:45
msgid "Generic"
msgstr "Paprasta"
-#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#: ../../Xconfig/monitor.pm_.c:97 ../../harddrake/ui.pm_.c:36
#, fuzzy
msgid "Vendor"
msgstr "Sugrįžti"
-#: ../../Xconfig/monitor.pm_.c:102
+#: ../../Xconfig/monitor.pm_.c:107
+msgid "Plug'n Play probing failed. Please choose a precise monitor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:112
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -208,11 +250,11 @@ msgstr ""
"už palaikomą monitoriaus, nes gali jį sugadinti. Jeigu abejoji,\n"
"pasirink konservatyvią nuostatą."
-#: ../../Xconfig/monitor.pm_.c:109
+#: ../../Xconfig/monitor.pm_.c:119
msgid "Horizontal refresh rate"
msgstr "Horizontalaus atnaujinimo dažnis"
-#: ../../Xconfig/monitor.pm_.c:110
+#: ../../Xconfig/monitor.pm_.c:120
msgid "Vertical refresh rate"
msgstr "Vertikalaus atnaujinimo dažnis"
@@ -236,57 +278,42 @@ msgstr "16 milijonai spalvų (24 bitai)"
msgid "4 billion colors (32 bits)"
msgstr "4 milijardai spalvų (32 bitai)"
-#: ../../Xconfig/resolution_and_depth.pm_.c:121
+#: ../../Xconfig/resolution_and_depth.pm_.c:129
msgid "Resolutions"
msgstr "Skiriamosios gebos"
-#: ../../Xconfig/resolution_and_depth.pm_.c:197
-msgid "Resolution"
-msgstr "Skiriamoji geba"
-
-#: ../../Xconfig/resolution_and_depth.pm_.c:235
+#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
msgstr "Pasirink skiriamąją gebą ir spalvų gylį"
-#: ../../Xconfig/resolution_and_depth.pm_.c:236
+#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Vaizdo plokštė: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
-#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
-#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
-#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
-#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
-#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
-#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
-#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
-#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
-#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
-#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
-#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
-#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
-#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
-#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
-#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
-#: ../../standalone/tinyfirewall_.c:65
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1015
+#: ../../bootlook.pm_.c:334 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:412 ../../install_steps_gtk.pm_.c:470
+#: ../../install_steps_interactive.pm_.c:576 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:351 ../../interactive/http.pm_.c:105
+#: ../../interactive/newt.pm_.c:174 ../../interactive/stdio.pm_.c:39
+#: ../../interactive/stdio.pm_.c:143 ../../my_gtk.pm_.c:155
+#: ../../my_gtk.pm_.c:159 ../../my_gtk.pm_.c:284
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1990
+#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3278
+#: ../../standalone/drakbackup_.c:3311 ../../standalone/drakbackup_.c:3337
+#: ../../standalone/drakbackup_.c:3364 ../../standalone/drakbackup_.c:3391
+#: ../../standalone/drakbackup_.c:3451 ../../standalone/drakbackup_.c:3478
+#: ../../standalone/drakbackup_.c:3504 ../../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 ../../standalone/drakgw_.c:598
+#: ../../standalone/logdrake_.c:224 ../../standalone/logdrake_.c:528
+#: ../../standalone/tinyfirewall_.c:64
msgid "Cancel"
msgstr "Nutraukti"
-#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
-#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
-#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
-#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
-#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
-#: ../../standalone/drakbackup_.c:2780
-msgid "Ok"
-msgstr "Gerai"
-
#: ../../Xconfig/test.pm_.c:26
msgid "Do you want to test the configuration?"
msgstr "Ar tu nori išbandyti nustatymus?"
@@ -295,71 +322,71 @@ msgstr "Ar tu nori išbandyti nustatymus?"
msgid "Test of the configuration"
msgstr "Nustatymų tikrinimas"
-#: ../../Xconfig/various.pm_.c:27
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klaviatūros išdėstymas: %s\n"
-#: ../../Xconfig/various.pm_.c:28
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Mouse type: %s\n"
msgstr "Pelės tipas: %s\n"
-#: ../../Xconfig/various.pm_.c:29
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Mouse device: %s\n"
msgstr "Pelės įrenginys: %s\n"
-#: ../../Xconfig/various.pm_.c:30
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitorius: %s\n"
-#: ../../Xconfig/various.pm_.c:31
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitoriaus horiz. skleistinė: %s\n"
-#: ../../Xconfig/various.pm_.c:32
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitoriaus vert. skleistinė: %s\n"
-#: ../../Xconfig/various.pm_.c:33
+#: ../../Xconfig/various.pm_.c:35
#, c-format
msgid "Graphics card: %s\n"
msgstr "Vaizdo plokštė: %s\n"
-#: ../../Xconfig/various.pm_.c:34
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Vaizdo atmintis: %s kB\n"
-#: ../../Xconfig/various.pm_.c:36
+#: ../../Xconfig/various.pm_.c:38
#, c-format
msgid "Color depth: %s\n"
msgstr "Spalvų gylis: %s\n"
-#: ../../Xconfig/various.pm_.c:37
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "Resolution: %s\n"
msgstr "Skiriamoji geba: %s\n"
-#: ../../Xconfig/various.pm_.c:39
+#: ../../Xconfig/various.pm_.c:41
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 serveris: %s\n"
-#: ../../Xconfig/various.pm_.c:40
+#: ../../Xconfig/various.pm_.c:42
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 tvarkyklė: %s\n"
-#: ../../Xconfig/various.pm_.c:51
+#: ../../Xconfig/various.pm_.c:60
msgid "Graphical interface at startup"
msgstr "X paleidžiant"
-#: ../../Xconfig/various.pm_.c:52
+#: ../../Xconfig/various.pm_.c:61
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -368,168 +395,185 @@ msgstr ""
"Tu gali nustatyti, kad X startuotų automatiškai.\n"
"Ar tu nori, kad X startuotų po kompiuterio perkrovimo?"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142
+#: ../../Xconfig/various.pm_.c:72
+msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
+"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
+"\n"
+"Do you have this feature?"
+msgstr ""
+
+#: ../../Xconfig/various.pm_.c:84
+#, fuzzy
+msgid "What norm is your TV using?"
+msgstr "Kokios rūšies tavo ISDN jungtis?"
+
+#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
msgstr "Pirmasis įkrovos skirsnio sektorius"
-#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
+#: ../../any.pm_.c:108 ../../any.pm_.c:133 ../../any.pm_.c:210
msgid "First sector of drive (MBR)"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: ../../any.pm_.c:121
+#: ../../any.pm_.c:112
msgid "SILO Installation"
msgstr "SILO Įdiegimas"
-#: ../../any.pm_.c:122 ../../any.pm_.c:135
+#: ../../any.pm_.c:113 ../../any.pm_.c:126
msgid "Where do you want to install the bootloader?"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: ../../any.pm_.c:134
+#: ../../any.pm_.c:125
msgid "LILO/grub Installation"
msgstr "LILO/GRUB įdiegimas"
-#: ../../any.pm_.c:146 ../../any.pm_.c:160
+#: ../../any.pm_.c:137 ../../any.pm_.c:151
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:148
+#: ../../any.pm_.c:139
msgid "LILO with text menu"
msgstr "LILO su tekstiniu meniu"
-#: ../../any.pm_.c:149 ../../any.pm_.c:160
+#: ../../any.pm_.c:140 ../../any.pm_.c:151
msgid "LILO with graphical menu"
msgstr "LILO su grafiniu meniu"
-#: ../../any.pm_.c:152
+#: ../../any.pm_.c:143
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:156
+#: ../../any.pm_.c:147
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Įkrova su DOS/Windows (loadlin)"
-#: ../../any.pm_.c:158 ../../any.pm_.c:160
+#: ../../any.pm_.c:149 ../../any.pm_.c:151
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:158 ../../any.pm_.c:190
msgid "Bootloader main options"
msgstr "Įkrovos tvarkyklės pagrindinės parinktys"
-#: ../../any.pm_.c:168 ../../any.pm_.c:200
+#: ../../any.pm_.c:159 ../../any.pm_.c:191
msgid "Bootloader to use"
msgstr "Naudojama įkrovos tvarkyklė"
-#: ../../any.pm_.c:170
+#: ../../any.pm_.c:161
msgid "Bootloader installation"
msgstr "Įkrovos tvarkyklės įdiegimas"
-#: ../../any.pm_.c:172 ../../any.pm_.c:202
+#: ../../any.pm_.c:163 ../../any.pm_.c:193
msgid "Boot device"
msgstr "Įkrovos įrenginys"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:164
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nedirba su senais BIOS'ais)"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "Compact"
msgstr "Kompaktiškas"
-#: ../../any.pm_.c:174
+#: ../../any.pm_.c:165
msgid "compact"
msgstr "kompaktiškas"
-#: ../../any.pm_.c:175 ../../any.pm_.c:299
+#: ../../any.pm_.c:166 ../../any.pm_.c:290
msgid "Video mode"
msgstr "Vaizdo režimas"
-#: ../../any.pm_.c:177
+#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "Palaukti prieš įkraunant įprastą atvaizdą"
-#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../any.pm_.c:170 ../../any.pm_.c:786
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
-#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
+#: ../../install_steps_interactive.pm_.c:1111 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:743 ../../printerdrake.pm_.c:858
+#: ../../standalone/drakconnect_.c:624 ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Slaptažodis"
-#: ../../any.pm_.c:180 ../../any.pm_.c:795
-#: ../../install_steps_interactive.pm_.c:1111
+#: ../../any.pm_.c:171 ../../any.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:1112
msgid "Password (again)"
msgstr "Slaptažodis (vėl)"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "Restrict command line options"
msgstr "Griežtos komandinės eilutės parinktys"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:172
msgid "restrict"
msgstr "griežta"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:174
msgid "Clean /tmp at each boot"
msgstr "Išvalyti /tmp kiekvieną kartą įkrovus"
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:175
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Tikslus RAM atminties dydis (rasta %d MB)"
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:177
msgid "Enable multi profiles"
msgstr "Leisti keletą profilių"
-#: ../../any.pm_.c:190
+#: ../../any.pm_.c:181
msgid "Give the ram size in MB"
msgstr "Nurodyk RAM atminties dydį (MB)"
-#: ../../any.pm_.c:192
+#: ../../any.pm_.c:183
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Parinktis „Griežtos komandinės eilutės parinktys“ yra nenaudingą be "
"slaptažodžio"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../diskdrake/interactive.pm_.c:1178
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../diskdrake/interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1106
msgid "Please try again"
msgstr "Prašom bandyti vėl"
-#: ../../any.pm_.c:193 ../../any.pm_.c:770
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../any.pm_.c:184 ../../any.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:1106
msgid "The passwords do not match"
msgstr "Slaptažodžiai nesutampa"
-#: ../../any.pm_.c:201
+#: ../../any.pm_.c:192
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:194
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:195
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:196
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:197
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:207
+#: ../../any.pm_.c:198
#, fuzzy
msgid "Default OS?"
msgstr "Įprastas"
-#: ../../any.pm_.c:241
+#: ../../any.pm_.c:232
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
@@ -538,7 +582,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:256
+#: ../../any.pm_.c:247
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -546,157 +590,158 @@ msgstr ""
"Čia yra skirtingi įrašai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
-#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
-#: ../../standalone/drakfont_.c:1055
+#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1483
+#: ../../standalone/drakbackup_.c:1596 ../../standalone/drakfont_.c:1011
+#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pridėti"
-#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
-#: ../../interactive/http.pm_.c:153
+#: ../../any.pm_.c:257 ../../any.pm_.c:774 ../../diskdrake/dav.pm_.c:60
+#: ../../diskdrake/hd_gtk.pm_.c:153 ../../diskdrake/removable.pm_.c:27
+#: ../../diskdrake/smbnfs_gtk.pm_.c:88 ../../interactive/http.pm_.c:153
+#: ../../standalone/drakbackup_.c:2696
msgid "Done"
msgstr "Atlikta"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:257
#, fuzzy
msgid "Modify"
msgstr "Taisyti RAID"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:265
msgid "Which type of entry do you want to add?"
msgstr "Kokio tipo įrašą tu nori pridėti?"
-#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1630
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:266
msgid "Other OS (SunOS...)"
msgstr "Kitos OS (SunOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (MacOS...)"
msgstr "Kitos OS (MacOS...)"
-#: ../../any.pm_.c:276
+#: ../../any.pm_.c:267
msgid "Other OS (windows...)"
msgstr "Kitos OS (Windows...)"
-#: ../../any.pm_.c:295
+#: ../../any.pm_.c:286
msgid "Image"
msgstr "Atvaizdas"
-#: ../../any.pm_.c:296 ../../any.pm_.c:307
+#: ../../any.pm_.c:287 ../../any.pm_.c:298
msgid "Root"
msgstr "Šakninis"
-#: ../../any.pm_.c:297 ../../any.pm_.c:325
+#: ../../any.pm_.c:288 ../../any.pm_.c:316
msgid "Append"
msgstr "Pridurti"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:292
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:302
+#: ../../any.pm_.c:293
msgid "Read-write"
msgstr "Skaitymui-rašymui"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:300
msgid "Table"
msgstr "Lentelė"
-#: ../../any.pm_.c:310
+#: ../../any.pm_.c:301
msgid "Unsafe"
msgstr "Nesaugus"
-#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
+#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
msgid "Label"
msgstr "Žymė"
-#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
+#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Įprastas"
-#: ../../any.pm_.c:326
+#: ../../any.pm_.c:317
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:328
+#: ../../any.pm_.c:319
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:336
+#: ../../any.pm_.c:327
msgid "Remove entry"
msgstr "Išmesti įrašą"
-#: ../../any.pm_.c:339
+#: ../../any.pm_.c:330
msgid "Empty label not allowed"
msgstr "Tuščia žymė neleidžiama"
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:340
+#: ../../any.pm_.c:331
#, fuzzy
msgid "You must specify a root partition"
msgstr "Tu privalai turėti swap skirsnį"
-#: ../../any.pm_.c:341
+#: ../../any.pm_.c:332
msgid "This label is already used"
msgstr "Ši žymė jau naudojama"
-#: ../../any.pm_.c:666
+#: ../../any.pm_.c:656
#, c-format
msgid "Found %s %s interfaces"
msgstr "Rasti %s %s interfeisai"
-#: ../../any.pm_.c:667
+#: ../../any.pm_.c:657
msgid "Do you have another one?"
msgstr "Ar turi dar vieną?"
-#: ../../any.pm_.c:668
+#: ../../any.pm_.c:658
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ar tu turi kokį nors %s interfeisą?"
-#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:821 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1055
+#: ../../any.pm_.c:660 ../../any.pm_.c:820 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:283
msgid "Yes"
msgstr "Taip"
-#: ../../any.pm_.c:671
+#: ../../any.pm_.c:661
msgid "See hardware info"
msgstr "Pažiūrėk įrangos informaciją"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:687
+#: ../../any.pm_.c:677
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Įdiegiama tvarkyklė %s plokštei %s"
-#: ../../any.pm_.c:688
+#: ../../any.pm_.c:678
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:689
#, 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:703
+#: ../../any.pm_.c:695
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -707,17 +752,17 @@ msgstr ""
"Opcijų formatas yra toks : ''vardas=reikšmė vardas2=reikšmė2 ...''.\n"
"Pvz, ''io=0x300 irq=7''"
-#: ../../any.pm_.c:705
+#: ../../any.pm_.c:697
msgid "Module options:"
msgstr "Modulio parinktys:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:709
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kokią %s tvarkyklę turėčiau išbandyti?"
-#: ../../any.pm_.c:726
+#: ../../any.pm_.c:718
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -733,15 +778,15 @@ msgstr ""
"parinktis, ar leisi pabandyti nusistatyti pačiai. Bandymas gali\n"
"pakabinti kompiuterį, bet tai neturėtų padaryti žalos."
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Autoprobe"
msgstr "Automatinis bandymas"
-#: ../../any.pm_.c:730
+#: ../../any.pm_.c:722
msgid "Specify options"
msgstr "Nurodyti parinktis"
-#: ../../any.pm_.c:742
+#: ../../any.pm_.c:734
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -750,56 +795,56 @@ msgstr ""
"Modulio %s iškvietimas nepavyko.\n"
"Ar nori bandyti su kitais nustatymais?"
-#: ../../any.pm_.c:758
+#: ../../any.pm_.c:750
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:759
+#: ../../any.pm_.c:751
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:752
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:753
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:758
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridėtas)"
-#: ../../any.pm_.c:771
+#: ../../any.pm_.c:763
msgid "This password is too simple"
msgstr "Šis slaptažodis pernelyg paprastas"
-#: ../../any.pm_.c:772
+#: ../../any.pm_.c:764
msgid "Please give a user name"
msgstr "Prašom suteikti vartotojo vardą"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:765
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Vartotojo vardas turi susidaryti tik iš mažųjų raidžių, skaičių ir simbolių "
"`-' bei `_'"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:766
#, fuzzy
msgid "The user name is too long"
msgstr "Šis vartotojo vardas jau pridėtas"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:767
msgid "This user name is already added"
msgstr "Šis vartotojo vardas jau pridėtas"
-#: ../../any.pm_.c:779
+#: ../../any.pm_.c:771
msgid "Add user"
msgstr "Pridėti vartotoją"
-#: ../../any.pm_.c:780
+#: ../../any.pm_.c:772
#, c-format
msgid ""
"Enter a user\n"
@@ -808,32 +853,32 @@ msgstr ""
"Įvesk vartotoją\n"
"%s"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:773
msgid "Accept user"
msgstr "Priimti vartotoją"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:784
msgid "Real name"
msgstr "Tikras vardas"
-#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
-#: ../../printerdrake.pm_.c:829
+#: ../../any.pm_.c:785 ../../printerdrake.pm_.c:742
+#: ../../printerdrake.pm_.c:857
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../../any.pm_.c:796
+#: ../../any.pm_.c:788
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:790
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:817
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: ../../any.pm_.c:826
+#: ../../any.pm_.c:818
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -842,57 +887,57 @@ msgstr ""
"Aš galiu nustatyti taip, kad vienas vartotojas pasisveikintų automatiškai.\n"
"Jei nenori to naudoti, spausk mygtuką Nutraukti."
-#: ../../any.pm_.c:830
+#: ../../any.pm_.c:822
msgid "Choose the default user:"
msgstr "Pasirink įprastą vartotoją:"
-#: ../../any.pm_.c:831
+#: ../../any.pm_.c:823
msgid "Choose the window manager to run:"
msgstr "Pasirink, kurią langų tvarkyklę naudosi:"
-#: ../../any.pm_.c:846
+#: ../../any.pm_.c:838
#, fuzzy
msgid "Please choose a language to use."
msgstr "Prašom pasirinkti kalbą, kurią naudosi."
-#: ../../any.pm_.c:848
+#: ../../any.pm_.c:840
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 "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
-#: ../../standalone/drakxtv_.c:78
+#: ../../any.pm_.c:854 ../../install_steps_interactive.pm_.c:708
+#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Visos"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "Allow all users"
msgstr "Pridėti vartotoją"
-#: ../../any.pm_.c:973
+#: ../../any.pm_.c:974
#, fuzzy
msgid "No sharing"
msgstr "CUPS paleidžiamas"
-#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
+#: ../../any.pm_.c:984 ../../standalone.pm_.c:57
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Kokius jūs norite įdiegti paketus"
-#: ../../any.pm_.c:986
+#: ../../any.pm_.c:987
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
+#: ../../any.pm_.c:995 ../../standalone.pm_.c:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1001
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 "
@@ -901,42 +946,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1014
+#: ../../any.pm_.c:1015
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1016
+#: ../../any.pm_.c:1017
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:1066 ../../security/msec.pm_.c:135
+#: ../../any.pm_.c:1068
msgid "Welcome To Crackers"
msgstr "Sveiki atvykę į cracker'ių šalį"
-#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
+#: ../../any.pm_.c:1069
msgid "Poor"
msgstr "Menkas"
-#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
+#: ../../any.pm_.c:1070 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standartinė"
-#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
+#: ../../any.pm_.c:1071
msgid "High"
msgstr "Aukštas"
-#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
+#: ../../any.pm_.c:1072
#, fuzzy
msgid "Higher"
msgstr "Aukštas"
-#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
+#: ../../any.pm_.c:1073
msgid "Paranoid"
msgstr "Paranojiškas"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1076
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"
@@ -946,7 +991,7 @@ msgstr ""
"bet labai jautriai: ji turėtų nebūti naudojama kompiuteriuose,\n"
"sujungtais su kitais arba prie Interneto. Čia nėra slaptažodžių."
-#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
+#: ../../any.pm_.c:1079
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -954,7 +999,7 @@ msgstr ""
"Dabar slaptažodžiai yra įjungti bet naudoti kaip tinklinį kompiuterį dar "
"nerekomenduojama."
-#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -964,13 +1009,13 @@ msgstr ""
"naudojamas prisijungti prie interneto kaip klientas. Nėra jokių saugumo "
"tikrinimų."
-#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
+#: ../../any.pm_.c:1081
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1080
+#: ../../any.pm_.c:1082
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -985,7 +1030,7 @@ msgstr ""
"priima\n"
"prisijungimus iš daugybės klientų."
-#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
+#: ../../any.pm_.c:1085
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -994,27 +1039,44 @@ msgstr ""
"Dabar naudojami 4 lygio privalumai,bet sistema yra visiškai uždaryta.\n"
"Saugumo savybės yra maksimalios."
-#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
+#: ../../any.pm_.c:1091
+#, fuzzy
+msgid "DrakSec Basic Options"
+msgstr "Pasirinktys"
+
+#: ../../any.pm_.c:1092
+#, fuzzy
+msgid "Please choose the desired security level"
+msgstr "Pasirink saugumo lygį"
+
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "Security level"
msgstr "Nustatomas saugumo lygis"
-#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
+#: ../../any.pm_.c:1097
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Pasirink serverio nuostatas"
-#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
+#: ../../any.pm_.c:1098
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+#: ../../any.pm_.c:1099
msgid "Security Administrator (login or email)"
msgstr ""
+#: ../../any.pm_.c:1189
+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 ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:356
+#: ../../bootloader.pm_.c:375
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1030,156 +1092,279 @@ 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:912
+#: ../../bootloader.pm_.c:935
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Sveiki, besinaudojantys GRUB, operaciniu sistemu parinkikliu!"
#. -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:915
+#: ../../bootloader.pm_.c:938
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Naudok %c ir %c klavisus, kad pasirinktum, kuris irasas pazymetas"
#. -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:918
+#: ../../bootloader.pm_.c:941
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Spausk enter, noredami ikrauti pasirinkta OS, 'e', noredami keisti"
#. -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:921
+#: ../../bootloader.pm_.c:944
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pries ikrova, arba 'c', komandinei eilutei iskviesti "
#. -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:924
+#: ../../bootloader.pm_.c:947
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Pasirinktas irasas bus ikrautas automatiskai po %d sekundziu."
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:951
msgid "not enough room in /boot"
msgstr "nepakanka vietos /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:1028
+#: ../../bootloader.pm_.c:1051
msgid "Desktop"
msgstr "Darbastalis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1030
+#: ../../bootloader.pm_.c:1053
msgid "Start Menu"
msgstr "Paleidimo meniu"
-#: ../../bootloader.pm_.c:1049
+#: ../../bootloader.pm_.c:1072
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: ../../bootlook.pm_.c:46
+#: ../../bootlook.pm_.c:45
msgid "no help implemented yet.\n"
msgstr "pagalba dar nesukurta.\n"
-#: ../../bootlook.pm_.c:62
+#: ../../bootlook.pm_.c:61
msgid "Boot Style Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
-#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:78 ../../harddrake/ui.pm_.c:59
+#: ../../harddrake/ui.pm_.c:60 ../../standalone/drakfloppy_.c:81
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Byla"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Byla/_Išeiti"
-#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
-#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:60
+#: ../../standalone/drakfloppy_.c:82 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
-#: ../../bootlook.pm_.c:91
+#: ../../bootlook.pm_.c:90
msgid "NewStyle Categorizing Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:92
+#: ../../bootlook.pm_.c:91
#, fuzzy
msgid "NewStyle Monitor"
msgstr "Monitorius"
-#: ../../bootlook.pm_.c:93
+#: ../../bootlook.pm_.c:92
#, fuzzy
msgid "Traditional Monitor"
msgstr "Pakeisti monitorių"
-#: ../../bootlook.pm_.c:94
+#: ../../bootlook.pm_.c:93
msgid "Traditional Gtk+ Monitor"
msgstr ""
-#: ../../bootlook.pm_.c:95
+#: ../../bootlook.pm_.c:94
msgid "Launch Aurora at boot time"
msgstr "Įkrovos metu paleisti Aurora"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Lilo/grub mode"
msgstr "Skambinimo režimas"
-#: ../../bootlook.pm_.c:98
+#: ../../bootlook.pm_.c:97
#, fuzzy
msgid "Yaboot mode"
msgstr "Įkrovos režimas"
-#: ../../bootlook.pm_.c:104
+#: ../../bootlook.pm_.c:143
+#, fuzzy
+msgid "Install themes"
+msgstr "Įdiegti sistemą"
+
+#: ../../bootlook.pm_.c:144
+msgid "Display theme under console"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166
+msgid "Can't create Bootsplash preview"
+msgstr ""
+
+#: ../../bootlook.pm_.c:166 ../../bootlook.pm_.c:184 ../../bootlook.pm_.c:187
+#: ../../bootlook.pm_.c:190 ../../bootlook.pm_.c:220 ../../bootlook.pm_.c:222
+#: ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:241 ../../bootlook.pm_.c:248
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:336
+#: ../../diskdrake/interactive.pm_.c:351 ../../diskdrake/interactive.pm_.c:464
+#: ../../diskdrake/interactive.pm_.c:469 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
+#: ../../install_steps_interactive.pm_.c:365 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:80
+msgid "Error"
+msgstr "Klaida"
+
+#: ../../bootlook.pm_.c:183
+#, c-format
+msgid "Backup %s to %s.old"
+msgstr ""
+
+#: ../../bootlook.pm_.c:184
+msgid "unable to backup lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:186
+#, c-format
+msgid "Copy %s to %s"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "can't change lilo message"
+msgstr ""
+
+#: ../../bootlook.pm_.c:190
+msgid "Lilo message not found"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+msgid "Can't write /etc/sysconfig/bootsplash."
+msgstr ""
+
+#: ../../bootlook.pm_.c:220
+#, fuzzy, c-format
+msgid "Write %s"
+msgstr "XFree %s"
+
+#: ../../bootlook.pm_.c:222
+msgid ""
+"Can't write /etc/sysconfig/bootsplash\n"
+"File not found."
+msgstr ""
+
+#: ../../bootlook.pm_.c:233
+#, c-format
+msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
+msgstr ""
+
+#: ../../bootlook.pm_.c:236
+#, c-format
+msgid "Make initrd 'mkinird -f /boot/initrd-%s.img %s'."
+msgstr ""
+
+#: ../../bootlook.pm_.c:242
+msgid ""
+"Can't relaunch LiLo!\n"
+"Launch \"lilo\" as root in command line to complete LiLo theme installation."
+msgstr ""
+
+#: ../../bootlook.pm_.c:246
+msgid "Relaunch 'lilo'"
+msgstr ""
+
+#: ../../bootlook.pm_.c:248
+#, fuzzy
+msgid "Notice"
+msgstr "nuostabu"
+
+#: ../../bootlook.pm_.c:249
+msgid "LiLo and Bootsplash themes installation successfull"
+msgstr ""
+
+#: ../../bootlook.pm_.c:249
+#, fuzzy
+msgid "Theme installation failed!"
+msgstr "Parink įdiegimo klasę"
+
+#: ../../bootlook.pm_.c:258
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
-#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
-#: ../../standalone/tinyfirewall_.c:59
+#: ../../bootlook.pm_.c:260 ../../standalone/drakbackup_.c:2352
+#: ../../standalone/drakbackup_.c:2362 ../../standalone/drakbackup_.c:2372
+#: ../../standalone/drakbackup_.c:2380 ../../standalone/drakgw_.c:592
+#: ../../standalone/tinyfirewall_.c:58
#, fuzzy
msgid "Configure"
msgstr "Nustatyti X"
-#: ../../bootlook.pm_.c:141
+#: ../../bootlook.pm_.c:267
+#, fuzzy
+msgid "Splash selection"
+msgstr "Išsaugoti paketų pasirinkimą"
+
+#: ../../bootlook.pm_.c:270
+msgid "Themes"
+msgstr ""
+
+#: ../../bootlook.pm_.c:272
+msgid ""
+"\n"
+"Select a theme for\n"
+"lilo and bootsplash,\n"
+"you can choose\n"
+"them separatly"
+msgstr ""
+
+#: ../../bootlook.pm_.c:275
+msgid "Lilo screen"
+msgstr ""
+
+#: ../../bootlook.pm_.c:279
+msgid "Bootsplash"
+msgstr ""
+
+#: ../../bootlook.pm_.c:314
msgid "System mode"
msgstr "Sistemos režimas"
-#: ../../bootlook.pm_.c:143
+#: ../../bootlook.pm_.c:316
msgid "Launch the graphical environment when your system starts"
msgstr "Startuojant paleisti X_Windows"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:321
msgid "No, I don't want autologin"
msgstr "Ne, aš nenoriu automatinio pasisveikinimo"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:323
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Taip, aš noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
-#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
-#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
-#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
-#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
-#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
-#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
-#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
-#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
+#: ../../bootlook.pm_.c:333 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:3513
+#: ../../standalone/drakbackup_.c:4290 ../../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:521
msgid "OK"
msgstr "Gerai"
-#: ../../bootlook.pm_.c:229
+#: ../../bootlook.pm_.c:403
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "negaliu atidaryti /etc/inittab skaitymui: %s"
@@ -1224,67 +1409,118 @@ msgstr "Aš daugiau negaliu pridėti nė vieno skirsnio"
msgid "Screenshots will be available after install in %s"
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:113
msgid "France"
msgstr "Prancūzija"
-#: ../../crypto.pm_.c:13
+#: ../../crypto.pm_.c:15
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
+#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgų"
-#: ../../crypto.pm_.c:15 ../../crypto.pm_.c:28
+#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
msgid "Czech Republic"
msgstr ""
-#: ../../crypto.pm_.c:16 ../../crypto.pm_.c:29
+#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
msgid "Germany"
msgstr "Vokiečių"
-#: ../../crypto.pm_.c:17 ../../crypto.pm_.c:30
+#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
#, fuzzy
msgid "Greece"
msgstr "Graikų"
-#: ../../crypto.pm_.c:18 ../../crypto.pm_.c:31
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:33
#, fuzzy
msgid "Norway"
msgstr "Norvegų"
-#: ../../crypto.pm_.c:19 ../../crypto.pm_.c:32
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:34
#, fuzzy
msgid "Sweden"
msgstr "Pasižiūrėti"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
+#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
-#: ../../standalone/drakxtv_.c:74
+#: ../../crypto.pm_.c:23 ../../crypto.pm_.c:37 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:115 ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Italy"
msgstr "Italų"
-#: ../../crypto.pm_.c:22 ../../crypto.pm_.c:36
+#: ../../crypto.pm_.c:24 ../../crypto.pm_.c:38
#, fuzzy
msgid "Austria"
msgstr "nuoseklioji"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
+#: ../../crypto.pm_.c:35 ../../crypto.pm_.c:61 ../../network/tools.pm_.c:104
+#: ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
+#: ../../detect_devices.pm_.c:599 ../../detect_devices.pm_.c:641
+#: ../../detect_devices.pm_.c:803
+msgid "Unknown Model"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:23
+#, fuzzy
+msgid "New"
+msgstr "naujas"
+
+#: ../../diskdrake/dav.pm_.c:57
+#, fuzzy
+msgid "Server"
+msgstr "serveris"
+
+#: ../../diskdrake/dav.pm_.c:58 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:558 ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/removable.pm_.c:24 ../../diskdrake/removable_gtk.pm_.c:15
+#: ../../diskdrake/smbnfs_gtk.pm_.c:85
+msgid "Mount point"
+msgstr "Prijungimo vieta"
+
+#: ../../diskdrake/dav.pm_.c:68
+#, fuzzy
+msgid "Please enter the WebDAV server URL"
+msgstr "Prašom išbandyti pelę"
+
+#: ../../diskdrake/dav.pm_.c:71
+msgid "The URL must begin with http:// or https://"
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:92
+#, fuzzy
+msgid "Server: "
+msgstr "serveris"
+
+#: ../../diskdrake/dav.pm_.c:93 ../../diskdrake/interactive.pm_.c:435
+#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1153
+msgid "Mount point: "
+msgstr "Montavimo taškas: "
+
+#: ../../diskdrake/dav.pm_.c:94 ../../diskdrake/interactive.pm_.c:1159
+#, c-format
+msgid "Options: %s"
+msgstr "Pasirinktys: %s"
+
#: ../../diskdrake/hd_gtk.pm_.c:94
msgid "Please make a backup of your data first"
msgstr "Pradžiai padaryk atsarginę savo duomenų kopiją"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
-#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:933 ../../diskdrake/interactive.pm_.c:999
msgid "Read carefully!"
msgstr "Perskaityk įdėmiai!"
@@ -1298,15 +1534,6 @@ msgstr ""
"sektorių pakanka)\n"
"kaupiklio pradžioje"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
-#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
-#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
-#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
-#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
-msgid "Error"
-msgstr "Klaida"
-
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
msgstr "Meistras"
@@ -1332,7 +1559,7 @@ msgid "Please click on a partition"
msgstr "Prašom spragtelėti ant skirsnio"
#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:471
msgid "Details"
msgstr "Detalės"
@@ -1361,13 +1588,13 @@ msgstr "SunOS"
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1095
msgid "Empty"
msgstr "Tuščias"
-#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
-#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:331
+#: ../../install_steps_gtk.pm_.c:389 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1679
msgid "Other"
msgstr "Kitas"
@@ -1375,12 +1602,12 @@ msgstr "Kitas"
msgid "Filesystem types:"
msgstr "Bylų sistemos tipai:"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:397
msgid "Create"
msgstr "Sukurti"
-#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
-#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:521 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Rūšis"
@@ -1390,7 +1617,7 @@ msgstr "Rūšis"
msgid "Use ``%s'' instead"
msgstr "Naudok „%s“ vietoj to"
-#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:385
msgid "Delete"
msgstr "Ištrinti"
@@ -1398,83 +1625,83 @@ msgstr "Ištrinti"
msgid "Use ``Unmount'' first"
msgstr "Pirmiau naudok „Numontuoti“"
-#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s tipą, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose a partition"
msgstr "Pasirink veiksmą"
-#: ../../diskdrake/interactive.pm_.c:172
+#: ../../diskdrake/interactive.pm_.c:173
#, fuzzy
msgid "Choose another partition"
msgstr "Sukurti naują skirsnį"
-#: ../../diskdrake/interactive.pm_.c:197
+#: ../../diskdrake/interactive.pm_.c:198
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to expert mode"
msgstr "Pakeisti į eksperto režimą"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Toggle to normal mode"
msgstr "Pakeisti į normalų režimą"
-#: ../../diskdrake/interactive.pm_.c:219
+#: ../../diskdrake/interactive.pm_.c:220
msgid "Undo"
msgstr "Sugrįžti"
-#: ../../diskdrake/interactive.pm_.c:238
+#: ../../diskdrake/interactive.pm_.c:239
msgid "Continue anyway?"
msgstr "Ar vis tiek tęsti?"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without saving"
msgstr "Išeiti neišsaugojus"
-#: ../../diskdrake/interactive.pm_.c:243
+#: ../../diskdrake/interactive.pm_.c:244
msgid "Quit without writing the partition table?"
msgstr "Išeiti neišsaugojus skirsnių lentelės?"
-#: ../../diskdrake/interactive.pm_.c:248
+#: ../../diskdrake/interactive.pm_.c:249
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ar tu nori išbandyti nustatymus?"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Auto allocate"
msgstr "Automatinis suskirstymas"
-#: ../../diskdrake/interactive.pm_.c:260
+#: ../../diskdrake/interactive.pm_.c:261
msgid "Clear all"
msgstr "Išvalyti viską"
-#: ../../diskdrake/interactive.pm_.c:260
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../diskdrake/interactive.pm_.c:261
+#: ../../install_steps_interactive.pm_.c:214
msgid "More"
msgstr "Dar"
-#: ../../diskdrake/interactive.pm_.c:263
+#: ../../diskdrake/interactive.pm_.c:264
#, fuzzy
msgid "Hard drive information"
msgstr "Pašto informaciją"
-#: ../../diskdrake/interactive.pm_.c:293
+#: ../../diskdrake/interactive.pm_.c:294
msgid "All primary partitions are used"
msgstr "Visi pirminiai skirsniai yra naudojami"
-#: ../../diskdrake/interactive.pm_.c:294
+#: ../../diskdrake/interactive.pm_.c:295
msgid "I can't add any more partition"
msgstr "Aš daugiau negaliu pridėti nė vieno skirsnio"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:296
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1482,35 +1709,35 @@ msgstr ""
"Jei nori turėti daugiau skirsnių, prašom ištrinti vieną, kad vietoj jo "
"galėtum sukurti išplėstinį"
-#: ../../diskdrake/interactive.pm_.c:305
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Save partition table"
msgstr "Įrašyti skirsnių lentelę"
-#: ../../diskdrake/interactive.pm_.c:306
+#: ../../diskdrake/interactive.pm_.c:307
#, fuzzy
msgid "Restore partition table"
msgstr "Išgelbėti skirsnių lentelę"
-#: ../../diskdrake/interactive.pm_.c:307
+#: ../../diskdrake/interactive.pm_.c:308
msgid "Rescue partition table"
msgstr "Išgelbėti skirsnių lentelę"
-#: ../../diskdrake/interactive.pm_.c:309
+#: ../../diskdrake/interactive.pm_.c:310
#, fuzzy
msgid "Reload partition table"
msgstr "Išgelbėti skirsnių lentelę"
-#: ../../diskdrake/interactive.pm_.c:314
+#: ../../diskdrake/interactive.pm_.c:315
#, fuzzy
msgid "Removable media automounting"
msgstr "Išimamų laikmenų automatinis montavimas"
-#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
+#: ../../diskdrake/interactive.pm_.c:324 ../../diskdrake/interactive.pm_.c:344
msgid "Select file"
msgstr "Pasirink bylą"
-#: ../../diskdrake/interactive.pm_.c:330
+#: ../../diskdrake/interactive.pm_.c:331
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1518,11 +1745,11 @@ msgstr ""
"Atsarginė skirsnių lentelė nėra tokio paties dydžio\n"
"Vis tiek tęsti?"
-#: ../../diskdrake/interactive.pm_.c:344
+#: ../../diskdrake/interactive.pm_.c:345
msgid "Warning"
msgstr "Dėmesio"
-#: ../../diskdrake/interactive.pm_.c:345
+#: ../../diskdrake/interactive.pm_.c:346
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1530,131 +1757,114 @@ msgstr ""
"Įdėk diskelį į kaupiklį\n"
"Visi duomenys diskelyje bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:356
+#: ../../diskdrake/interactive.pm_.c:357
msgid "Trying to rescue partition table"
msgstr "Bandau išgelbėti skirsnių lentelę"
-#: ../../diskdrake/interactive.pm_.c:362
+#: ../../diskdrake/interactive.pm_.c:363
#, fuzzy
msgid "Detailed information"
msgstr "Pašto informaciją"
-#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
-#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
-msgid "Mount point"
-msgstr "Prijungimo vieta"
-
-#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
-msgid "Options"
-msgstr "Pasirinktys"
-
-#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:652
msgid "Resize"
msgstr "Pakeisti dydį"
-#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
+#: ../../diskdrake/interactive.pm_.c:379 ../../diskdrake/interactive.pm_.c:705
msgid "Move"
msgstr "Perkelti"
-#: ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/interactive.pm_.c:380
msgid "Format"
msgstr "Formatuoti"
-#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
+#: ../../diskdrake/interactive.pm_.c:381 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Primontuoti"
-#: ../../diskdrake/interactive.pm_.c:381
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to RAID"
msgstr "Pridėti į RAID"
-#: ../../diskdrake/interactive.pm_.c:382
+#: ../../diskdrake/interactive.pm_.c:383
msgid "Add to LVM"
msgstr "Pridėti į LVM"
-#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
+#: ../../diskdrake/interactive.pm_.c:384 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Atjungti"
-#: ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from RAID"
msgstr "Pašalinti iš RAID"
-#: ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Remove from LVM"
msgstr "Pašalinti iš LVM"
-#: ../../diskdrake/interactive.pm_.c:387
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Modify RAID"
msgstr "Taisyti RAID"
-#: ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/interactive.pm_.c:389
msgid "Use for loopback"
msgstr "Naudoti loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:427
+#: ../../diskdrake/interactive.pm_.c:428
msgid "Create a new partition"
msgstr "Sukurti naują skirsnį"
-#: ../../diskdrake/interactive.pm_.c:430
+#: ../../diskdrake/interactive.pm_.c:431
msgid "Start sector: "
msgstr "Pradžios sektorius: "
-#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:805
msgid "Size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:434 ../../diskdrake/interactive.pm_.c:806
msgid "Filesystem type: "
msgstr "Bylų sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:434
-#: ../../diskdrake/interactive.pm_.c:1077
-#: ../../diskdrake/interactive.pm_.c:1151
-msgid "Mount point: "
-msgstr "Montavimo taškas: "
-
-#: ../../diskdrake/interactive.pm_.c:438
+#: ../../diskdrake/interactive.pm_.c:439
msgid "Preference: "
msgstr "Pirmenybė: "
-#: ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:464
msgid ""
"You can't create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:493
+#: ../../diskdrake/interactive.pm_.c:494
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Sužymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:518
+#: ../../diskdrake/interactive.pm_.c:519
msgid "Change partition type"
msgstr "Pakeisti skirsnio tipą"
-#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kokios bylų sistemos tu nori?"
-#: ../../diskdrake/interactive.pm_.c:525
+#: ../../diskdrake/interactive.pm_.c:526
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:555
+#: ../../diskdrake/interactive.pm_.c:556
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kur nori primontuoti loopback bylą %s?"
-#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
+#: ../../diskdrake/interactive.pm_.c:557
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kur nori primontuoti įrenginį %s?"
-#: ../../diskdrake/interactive.pm_.c:562
+#: ../../diskdrake/interactive.pm_.c:563
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1662,133 +1872,138 @@ msgstr ""
"Negaliu nuimti montavimo taško, nes šis skirsnis naudojamas loopback'ui.\n"
"Pirma pašalink loopback'us"
-#: ../../diskdrake/interactive.pm_.c:607
+#: ../../diskdrake/interactive.pm_.c:584
+#, fuzzy, c-format
+msgid "Where do you want to mount %s?"
+msgstr "Kur nori primontuoti įrenginį %s?"
+
+#: ../../diskdrake/interactive.pm_.c:608
msgid "Computing FAT filesystem bounds"
msgstr "Skaičiuojami FAT bylų sistemos rėžiai"
-#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../diskdrake/interactive.pm_.c:608 ../../diskdrake/interactive.pm_.c:667
#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Keičiamas dydis"
-#: ../../diskdrake/interactive.pm_.c:639
+#: ../../diskdrake/interactive.pm_.c:640
msgid "This partition is not resizeable"
msgstr "Šio skirsnio dydžio neina pakeisti"
-#: ../../diskdrake/interactive.pm_.c:644
+#: ../../diskdrake/interactive.pm_.c:645
msgid "All data on this partition should be backed-up"
msgstr "Pasidaryk atsarginę duomenų šiame skirsnyje kopiją"
-#: ../../diskdrake/interactive.pm_.c:646
+#: ../../diskdrake/interactive.pm_.c:647
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Pakeitus skirsnio %s dydį, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:651
+#: ../../diskdrake/interactive.pm_.c:652
msgid "Choose the new size"
msgstr "Pasirink naują dydį"
-#: ../../diskdrake/interactive.pm_.c:652
+#: ../../diskdrake/interactive.pm_.c:653
#, fuzzy
msgid "New size in MB: "
msgstr "Dydis (MB): "
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Which disk do you want to move it to?"
msgstr "Į kurį diską tu nori jį perkelti?"
-#: ../../diskdrake/interactive.pm_.c:706
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Sector"
msgstr "Sektorius"
-#: ../../diskdrake/interactive.pm_.c:707
+#: ../../diskdrake/interactive.pm_.c:708
msgid "Which sector do you want to move it to?"
msgstr "Į kurį sektorių tu nori jį perkelti?"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving"
msgstr "Perkeliama"
-#: ../../diskdrake/interactive.pm_.c:710
+#: ../../diskdrake/interactive.pm_.c:711
msgid "Moving partition..."
msgstr "Perkeliamas skirsnis..."
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:728
msgid "Choose an existing RAID to add to"
msgstr "Pasirink jau esantį RAID, prie kurio pridėti"
-#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
+#: ../../diskdrake/interactive.pm_.c:729 ../../diskdrake/interactive.pm_.c:746
msgid "new"
msgstr "naujas"
-#: ../../diskdrake/interactive.pm_.c:743
+#: ../../diskdrake/interactive.pm_.c:744
msgid "Choose an existing LVM to add to"
msgstr "Pasirink jau esantį LVM, prie kurio pridėti"
-#: ../../diskdrake/interactive.pm_.c:748
+#: ../../diskdrake/interactive.pm_.c:749
msgid "LVM name?"
msgstr "LVM vardas?"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:790
msgid "This partition can't be used for loopback"
msgstr "Šis skirsnis negali būti naudojamas loopback'ui"
-#: ../../diskdrake/interactive.pm_.c:801
+#: ../../diskdrake/interactive.pm_.c:803
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:802
+#: ../../diskdrake/interactive.pm_.c:804
msgid "Loopback file name: "
msgstr "Loopback bylos vardas: "
-#: ../../diskdrake/interactive.pm_.c:807
+#: ../../diskdrake/interactive.pm_.c:809
#, fuzzy
msgid "Give a file name"
msgstr "Tikras vardas"
-#: ../../diskdrake/interactive.pm_.c:810
+#: ../../diskdrake/interactive.pm_.c:812
msgid "File already used by another loopback, choose another one"
msgstr "Byla jau naudojama kitam loopback'ui, pasirink kitą"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:813
msgid "File already exists. Use it?"
msgstr "Ši byla jau yra. Naudoti ją?"
-#: ../../diskdrake/interactive.pm_.c:834
+#: ../../diskdrake/interactive.pm_.c:836
#, fuzzy
msgid "Mount options"
msgstr "Modulio parinktys:"
-#: ../../diskdrake/interactive.pm_.c:841
+#: ../../diskdrake/interactive.pm_.c:843
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:907 ../../standalone/drakfloppy_.c:103
msgid "device"
msgstr "įrenginys"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:908
msgid "level"
msgstr "lygis"
-#: ../../diskdrake/interactive.pm_.c:907
+#: ../../diskdrake/interactive.pm_.c:909
msgid "chunk size"
msgstr "gabalo dydis"
-#: ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:924
msgid "Be careful: this operation is dangerous."
msgstr "Būk atsargus: ši operacija yra pavojinga."
-#: ../../diskdrake/interactive.pm_.c:937
+#: ../../diskdrake/interactive.pm_.c:939
msgid "What type of partitioning?"
msgstr "Kokio tipo skirsnių skaidymas?"
-#: ../../diskdrake/interactive.pm_.c:953
+#: ../../diskdrake/interactive.pm_.c:955
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
msgstr "Kokius jūs norite įdiegti paketus"
-#: ../../diskdrake/interactive.pm_.c:967
+#: ../../diskdrake/interactive.pm_.c:969
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1798,7 +2013,7 @@ msgstr ""
"Deja, neįmanoma sukurti /boot taip toli kaupiklyje (cilindre >1024).\n"
"Arba naudok LILO ir tai neveiks, arba nenaudok LILO ir tau nereikės /boot"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:973
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1809,7 +2024,7 @@ msgstr ""
"disko kaupiklio cilindro, bet tu neturi /boot skirsnio. Jeigu planuoji\n"
"naudoti LILO įkrovos programą, neužmiršk pridėti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:979
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1819,137 +2034,137 @@ msgstr ""
"Jokia įkrovos tvarkyklė negali su ja dirbti be /boot skirsnio.\n"
"Taigi, nepamiršk sukurti /boot skirsnio"
-#: ../../diskdrake/interactive.pm_.c:997
+#: ../../diskdrake/interactive.pm_.c:999
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Įrenginio %s skirsnių lentelė bus įrašyta į diską!"
-#: ../../diskdrake/interactive.pm_.c:1001
+#: ../../diskdrake/interactive.pm_.c:1003
msgid "You'll need to reboot before the modification can take place"
msgstr "Tau reikia perkrauti, kad pakeitimai būtų veiksmingi"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1014
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sužymėjus skirsnį %s, visi duomenys jame bus prarasti"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1016
msgid "Formatting"
msgstr "Sužymima"
-#: ../../diskdrake/interactive.pm_.c:1015
+#: ../../diskdrake/interactive.pm_.c:1017
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sužymima loopback byla %s"
-#: ../../diskdrake/interactive.pm_.c:1016
-#: ../../install_steps_interactive.pm_.c:477
+#: ../../diskdrake/interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Formatting partition %s"
msgstr "Sužymimas skirsnis %s"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Hide files"
msgstr "mkraid nepavyko"
-#: ../../diskdrake/interactive.pm_.c:1027
+#: ../../diskdrake/interactive.pm_.c:1029
#, fuzzy
msgid "Move files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:1028
+#: ../../diskdrake/interactive.pm_.c:1030
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1039
+#: ../../diskdrake/interactive.pm_.c:1041
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../diskdrake/interactive.pm_.c:1043
+#: ../../diskdrake/interactive.pm_.c:1045
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1047
+#: ../../diskdrake/interactive.pm_.c:1049
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Skiriamoji geba: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1059
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1078
-#: ../../diskdrake/interactive.pm_.c:1137
+#: ../../diskdrake/interactive.pm_.c:1080
+#: ../../diskdrake/interactive.pm_.c:1139
msgid "Device: "
msgstr "Įrenginys: "
-#: ../../diskdrake/interactive.pm_.c:1079
+#: ../../diskdrake/interactive.pm_.c:1081
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS kaupiklio raidė: %s (spėjama)\n"
-#: ../../diskdrake/interactive.pm_.c:1083
-#: ../../diskdrake/interactive.pm_.c:1091
-#: ../../diskdrake/interactive.pm_.c:1155
+#: ../../diskdrake/interactive.pm_.c:1085
+#: ../../diskdrake/interactive.pm_.c:1093
+#: ../../diskdrake/interactive.pm_.c:1157
msgid "Type: "
msgstr "Tipas: "
-#: ../../diskdrake/interactive.pm_.c:1087
+#: ../../diskdrake/interactive.pm_.c:1089
msgid "Name: "
msgstr "Pavadinimas: "
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1097
#, c-format
msgid "Start: sector %s\n"
msgstr "Pradžia: sektorius %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid "Size: %s"
msgstr "Dydis: %s"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid ", %s sectors"
msgstr ", %s sektoriai(-ių)"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1102
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Nuo cilindro %d iki cilindro %d\n"
-#: ../../diskdrake/interactive.pm_.c:1101
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Formatted\n"
msgstr "Sužymėtas\n"
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1104
msgid "Not formatted\n"
msgstr "Nesužymėtas\n"
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1105
msgid "Mounted\n"
msgstr "Primontuotas\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1108
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Loopback byla(os): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1109
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1957,27 +2172,27 @@ msgstr ""
"Skirsnis, įkraunamas pagal nutylėjimą\n"
" (MS-DOS užkrovimui, ne LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1109
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "Level %s\n"
msgstr "Lygis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1110
+#: ../../diskdrake/interactive.pm_.c:1112
#, c-format
msgid "Chunk size %s\n"
msgstr "Gabalo dydis %s\n"
-#: ../../diskdrake/interactive.pm_.c:1111
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1113
+#: ../../diskdrake/interactive.pm_.c:1115
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback bylos vardas: %s"
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:1118
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -1989,7 +2204,7 @@ msgstr ""
"yra Tvarkyklės skirsnis\n"
"gariau palikite jį ramybėje.\n"
-#: ../../diskdrake/interactive.pm_.c:1119
+#: ../../diskdrake/interactive.pm_.c:1121
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2001,65 +2216,60 @@ msgstr ""
"skirsnis yra skirtas jūsų\n"
"sistemos dvigubai įkrovai.\n"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1140
#, c-format
msgid "Size: %s\n"
msgstr "Dydis: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindrų(-ai), %s galvučių(-os), %s sektorių(-iai)\n"
-#: ../../diskdrake/interactive.pm_.c:1140
+#: ../../diskdrake/interactive.pm_.c:1142
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1141
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM kaupikliai %s\n"
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1144
#, c-format
msgid "Partition table type: %s\n"
msgstr "Skirsnių lentelės tipas: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1145
#, fuzzy, c-format
msgid "on channel %d id %d\n"
msgstr "ant magistralės %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1157
-#, c-format
-msgid "Options: %s"
-msgstr "Pasirinktys: %s"
-
-#: ../../diskdrake/interactive.pm_.c:1173
+#: ../../diskdrake/interactive.pm_.c:1175
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Bylų sistemos tipas: "
-#: ../../diskdrake/interactive.pm_.c:1174
+#: ../../diskdrake/interactive.pm_.c:1176
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1177
+#: ../../diskdrake/interactive.pm_.c:1179
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Šis slaptažodis yra pernelyg paprastas (turi būti bent %d simbolių ilgio)"
-#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../diskdrake/interactive.pm_.c:1180
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Slaptažodžiai nesutampa"
-#: ../../diskdrake/interactive.pm_.c:1181
+#: ../../diskdrake/interactive.pm_.c:1183
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1182
+#: ../../diskdrake/interactive.pm_.c:1184
msgid "Encryption key (again)"
msgstr ""
@@ -2113,23 +2323,23 @@ msgstr "NIS domenas"
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
-#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
+#: ../../fs.pm_.c:552 ../../fs.pm_.c:562 ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:574 ../../fs.pm_.c:578
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s sužymėjimas nepavyko"
-#: ../../fs.pm_.c:614
+#: ../../fs.pm_.c:615
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nežinau, kaip sužymėti %s tipu %s"
-#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
+#: ../../fs.pm_.c:687 ../../fs.pm_.c:731
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
+#: ../../fs.pm_.c:746 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "klaida numontuojant %s: %s"
@@ -2146,33 +2356,33 @@ msgstr ""
msgid "server"
msgstr "serveris"
-#: ../../fsedit.pm_.c:471
+#: ../../fsedit.pm_.c:472
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Tu negali naudoti JFS skirsniams, mažesniems nei 16MB"
-#: ../../fsedit.pm_.c:472
+#: ../../fsedit.pm_.c:473
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Tu negali naudoti ReiserFS skirsniams, mažesniems nei 32MB"
-#: ../../fsedit.pm_.c:491
+#: ../../fsedit.pm_.c:492
msgid "Mount points must begin with a leading /"
msgstr "Montavimo taškai turi prasidėti /"
-#: ../../fsedit.pm_.c:492
+#: ../../fsedit.pm_.c:493
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Jau yra skirsnis su montavimo tašku %s\n"
-#: ../../fsedit.pm_.c:496
+#: ../../fsedit.pm_.c:497
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:498
+#: ../../fsedit.pm_.c:499
msgid "This directory should remain within the root filesystem"
msgstr "Šis katalogas turi pasilikti šakninėje bylų sistemoje"
-#: ../../fsedit.pm_.c:500
+#: ../../fsedit.pm_.c:501
#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
@@ -2180,27 +2390,27 @@ msgid ""
msgstr ""
"Tau reikia tikros bylų sistemos (ext2, reiserfs) šiam montavimo taškui\n"
-#: ../../fsedit.pm_.c:502
+#: ../../fsedit.pm_.c:503
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Tau reikia tikros bylų sistemos (ext2, reiserfs) šiam montavimo taškui\n"
-#: ../../fsedit.pm_.c:560
+#: ../../fsedit.pm_.c:570
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Naujiems skirsniams nepakanka laisvos vietos"
-#: ../../fsedit.pm_.c:562
+#: ../../fsedit.pm_.c:572
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:626
+#: ../../fsedit.pm_.c:665
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Klaida atidarant %s įrašymui: %s"
-#: ../../fsedit.pm_.c:711
+#: ../../fsedit.pm_.c:750
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"
@@ -2208,259 +2418,263 @@ msgstr ""
"Įvyko klaida -- nerasta tinkamų įrenginių, kur būtų galima sukurti naujus "
"skirsnius. Prašom pasitikrinti savo įrangą dėl galimo gedimo"
-#: ../../fsedit.pm_.c:734
+#: ../../fsedit.pm_.c:773
msgid "You don't have any partitions!"
msgstr "Tu neturi jokių skirsnių!"
-#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
-#, fuzzy
-msgid "Auto-detect"
-msgstr "Naudokite automatinį aptikimą"
-
-#: ../../harddrake/bttv.pm_.c:64
-#, fuzzy
-msgid "Unknown|Generic"
-msgstr "Paprasta"
-
-#: ../../harddrake/bttv.pm_.c:96
-msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:97
-msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:193
-msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
-"detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types "
-"here. Just select your tv card parameters if needed"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:196
-#, fuzzy
-msgid "Card model :"
-msgstr "Plokštės mem (DMA)"
-
-#: ../../harddrake/bttv.pm_.c:197
-#, fuzzy
-msgid "PLL setting :"
-msgstr "sužymimas"
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "Number of capture buffers :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:198
-msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:199
-#, fuzzy
-msgid "Tuner type :"
-msgstr "Pakeisti skirsnio tipą"
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "Radio support :"
-msgstr ""
-
-#: ../../harddrake/bttv.pm_.c:200
-msgid "enable radio support"
-msgstr ""
-
-#: ../../harddrake/ui.pm_.c:12
-#, fuzzy
-msgid "/_Quit"
-msgstr "Išeiti"
-
-#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
-#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pagalba"
-
-#: ../../harddrake/ui.pm_.c:14
-#, fuzzy
-msgid "/_Help..."
-msgstr "/_Pagalba"
-
#: ../../harddrake/ui.pm_.c:15
#, fuzzy
-msgid "/_About..."
-msgstr "/Pagalba/_Apie..."
-
-#: ../../harddrake/ui.pm_.c:22
-#, fuzzy
msgid "Model"
msgstr "Pelė"
-#: ../../harddrake/ui.pm_.c:22
+#: ../../harddrake/ui.pm_.c:15
#, fuzzy
msgid "hard disk model"
msgstr "Plokštės mem (DMA)"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
#, fuzzy
msgid "Channel"
msgstr "Nutraukti"
-#: ../../harddrake/ui.pm_.c:23
+#: ../../harddrake/ui.pm_.c:16
msgid "EIDE/SCSI channel"
msgstr ""
-#: ../../harddrake/ui.pm_.c:25
+#: ../../harddrake/ui.pm_.c:18
msgid "Bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:26
+#: ../../harddrake/ui.pm_.c:19
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
#, fuzzy
msgid "Module"
msgstr "Pelė"
-#: ../../harddrake/ui.pm_.c:27
+#: ../../harddrake/ui.pm_.c:20
msgid "the module of the GNU/Linux kernel that handle that device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "Media class"
msgstr ""
-#: ../../harddrake/ui.pm_.c:28
+#: ../../harddrake/ui.pm_.c:21
msgid "class of hardware device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#: ../../harddrake/ui.pm_.c:22 ../../printerdrake.pm_.c:1404
msgid "Description"
msgstr "Aprašymas"
-#: ../../harddrake/ui.pm_.c:29
+#: ../../harddrake/ui.pm_.c:22
msgid "this field describe the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:31
+#: ../../harddrake/ui.pm_.c:24
#, fuzzy
msgid "Bus identification"
msgstr "Autentikacija"
-#: ../../harddrake/ui.pm_.c:32
+#: ../../harddrake/ui.pm_.c:25
msgid ""
"- PCI and USB devices : this list the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:34
+#: ../../harddrake/ui.pm_.c:27
msgid "Location on the bus"
msgstr ""
-#: ../../harddrake/ui.pm_.c:35
+#: ../../harddrake/ui.pm_.c:28
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"
"- scsi devices: the scsi bus and the scsi device ids"
msgstr ""
-#: ../../harddrake/ui.pm_.c:38
+#: ../../harddrake/ui.pm_.c:31
#, fuzzy
msgid "Old device file"
msgstr "Pasirink bylą"
-#: ../../harddrake/ui.pm_.c:39
+#: ../../harddrake/ui.pm_.c:32
msgid "old static device name used in dev package"
msgstr ""
-#: ../../harddrake/ui.pm_.c:40
+#: ../../harddrake/ui.pm_.c:33
#, fuzzy
msgid "New devfs device"
msgstr "Šliuzo (gateway) įrenginys"
-#: ../../harddrake/ui.pm_.c:41
+#: ../../harddrake/ui.pm_.c:34
msgid "new dinamic device name generated by incore kernel devfs"
msgstr ""
-#: ../../harddrake/ui.pm_.c:42
+#: ../../harddrake/ui.pm_.c:35
#, fuzzy
msgid "Number of buttons"
msgstr "2 klavišų"
-#: ../../harddrake/ui.pm_.c:43
+#: ../../harddrake/ui.pm_.c:36
msgid "the vendor name of the device"
msgstr ""
-#: ../../harddrake/ui.pm_.c:92
+#: ../../harddrake/ui.pm_.c:60
+#, fuzzy
+msgid "/_Quit"
+msgstr "Išeiti"
+
+#: ../../harddrake/ui.pm_.c:61 ../../harddrake/ui.pm_.c:62
+#: ../../harddrake/ui.pm_.c:68 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pagalba"
+
+#: ../../harddrake/ui.pm_.c:62
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pagalba"
+
+#: ../../harddrake/ui.pm_.c:63
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:64
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:68
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pagalba/_Apie..."
+
+#: ../../harddrake/ui.pm_.c:69
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:70
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:71
+#, fuzzy
+msgid "Author:"
+msgstr "Automatinis bandymas"
+
+#: ../../harddrake/ui.pm_.c:83
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kieto disko nustatymas"
-#: ../../harddrake/ui.pm_.c:122
+#: ../../harddrake/ui.pm_.c:91
#, fuzzy
msgid "Detected hardware"
msgstr "Pažiūrėk įrangos informaciją"
-#: ../../harddrake/ui.pm_.c:136
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Configure module"
+msgstr "Pelės nustatymas"
+
+#: ../../harddrake/ui.pm_.c:92
#, fuzzy
msgid "Informations"
msgstr "Rodyti informaciją"
-#: ../../harddrake/ui.pm_.c:152
+#: ../../harddrake/ui.pm_.c:92
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:158
-#, fuzzy
-msgid "Configure module"
-msgstr "Pelės nustatymas"
-
-#: ../../harddrake/ui.pm_.c:168
+#: ../../harddrake/ui.pm_.c:96
#, fuzzy
msgid "Detection in progress"
msgstr "aptiktas prievade %s"
-#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+#: ../../harddrake/ui.pm_.c:96 ../../interactive.pm_.c:388
msgid "Please wait"
msgstr "Prašom palaukti"
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:217
+#: ../../harddrake/ui.pm_.c:139
#, fuzzy
msgid "secondary"
msgstr "%d sekundės"
-#: ../../harddrake/ui.pm_.c:260
+#: ../../harddrake/ui.pm_.c:176
+msgid "You can configure each parameter of the module here."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:192
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../harddrake/ui.pm_.c:279
-msgid "About Harddrake"
+#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Naudokite automatinį aptikimą"
+
+#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Paprasta"
+
+#: ../../harddrake/v4l.pm_.c:98
+msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr ""
-#: ../../harddrake/ui.pm_.c:280
+#: ../../harddrake/v4l.pm_.c:99
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:210
msgid ""
-"This is HardDrake, a Mandrake hardware configuration tool.\n"
-"Version:"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
msgstr ""
-#: ../../harddrake/ui.pm_.c:281
+#: ../../harddrake/v4l.pm_.c:213
#, fuzzy
-msgid "Author:"
-msgstr "Automatinis bandymas"
+msgid "Card model :"
+msgstr "Plokštės mem (DMA)"
-#: ../../harddrake/ui.pm_.c:286
-msgid "Harddrake help"
+#: ../../harddrake/v4l.pm_.c:214
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Pakeisti skirsnio tipą"
+
+#: ../../harddrake/v4l.pm_.c:215
+msgid "Number of capture buffers :"
msgstr ""
-#: ../../harddrake/ui.pm_.c:287
-msgid ""
-"Description of the fields:\n"
-"\n"
+#: ../../harddrake/v4l.pm_.c:215
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:217
+#, fuzzy
+msgid "PLL setting :"
+msgstr "sužymimas"
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/v4l.pm_.c:218
+msgid "enable radio support"
msgstr ""
#: ../../help.pm_.c:13
@@ -3842,7 +4056,7 @@ msgstr ""
"Spausk \"Atšaukti\", kad nutrauktum operaciją ir neprarastum jokių duomenų\n"
"nei skirsnių, esančių šiame kietajame diske."
-#: ../../install2.pm_.c:114
+#: ../../install2.pm_.c:111
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3850,7 +4064,7 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:166
+#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr ""
@@ -3870,20 +4084,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:454
+#: ../../install_any.pm_.c:453
msgid "Can't use broadcast with no NIS domain"
msgstr "Negalima naudoti transliavimo be NIS domeno"
-#: ../../install_any.pm_.c:837
+#: ../../install_any.pm_.c:841
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Įdėk FAT formatuotą diskelį į kaupiklį %s"
-#: ../../install_any.pm_.c:841
+#: ../../install_any.pm_.c:845
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:853
+#: ../../install_any.pm_.c:857
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3891,7 +4105,7 @@ msgstr ""
"Kad išsaugoti šių paketų pasirinkimą įkraukite sistemą su ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
+#: ../../install_any.pm_.c:880 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Klaida skaitant bylą %s"
@@ -3931,7 +4145,7 @@ msgstr ""
"\n"
"Vis tiek tęsti?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:168
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Tu privalai turėti swap skirsnį"
@@ -4113,12 +4327,12 @@ msgstr ""
"Įvyko klaida, bet aš nežinau, kaip su ja gražiai susitvarkyti.\n"
"Tęsk darbą savo paties rizika."
-#: ../../install_steps.pm_.c:206
+#: ../../install_steps.pm_.c:210
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pasikartojantis montavimo taškas %s"
-#: ../../install_steps.pm_.c:392
+#: ../../install_steps.pm_.c:379
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4130,12 +4344,12 @@ msgstr ""
"Patikrink CD įdiegtame kompiuteryje, naudodamas \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:464
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Sveiki atvykę į %s"
-#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
+#: ../../install_steps.pm_.c:530 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neprieinamas nė vienas diskelių kaupiklis"
@@ -4145,7 +4359,7 @@ msgstr "Neprieinamas nė vienas diskelių kaupiklis"
msgid "Entering step `%s'\n"
msgstr "Įeinama į žingsnį „%s“\n"
-#: ../../install_steps_gtk.pm_.c:149
+#: ../../install_steps_gtk.pm_.c:150
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -4156,79 +4370,79 @@ msgstr ""
"Mandrake Linux. Jei taip atsitiktų, gali pabandyti tekstinį diegimo būdą:\n"
"Kai užsikrauna iš CDROM'o, paspausk `F1', o tada įvesk \"text\"."
-#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
msgstr "Įdiegimo klasė"
-#: ../../install_steps_gtk.pm_.c:163
+#: ../../install_steps_gtk.pm_.c:164
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Prašom pasirinkti vieną iš šių įdiegimo klasių:"
-#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:243 ../../install_steps_interactive.pm_.c:694
msgid "Package Group Selection"
msgstr "Paketų grupių pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
+#: ../../install_steps_gtk.pm_.c:276 ../../install_steps_interactive.pm_.c:709
msgid "Individual package selection"
msgstr "Atskirų paketų pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
+#: ../../install_steps_gtk.pm_.c:299 ../../install_steps_interactive.pm_.c:633
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Bendras dydis: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:339
+#: ../../install_steps_gtk.pm_.c:341
msgid "Bad package"
msgstr "Blogas paketas"
-#: ../../install_steps_gtk.pm_.c:340
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Name: %s\n"
msgstr "Pavadinimas: %s\n"
-#: ../../install_steps_gtk.pm_.c:341
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Version: %s\n"
msgstr "Versija: %s\n"
-#: ../../install_steps_gtk.pm_.c:342
+#: ../../install_steps_gtk.pm_.c:344
#, c-format
msgid "Size: %d KB\n"
msgstr "Dydis: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:343
+#: ../../install_steps_gtk.pm_.c:345
#, c-format
msgid "Importance: %s\n"
msgstr "Svarba: %s\n"
-#: ../../install_steps_gtk.pm_.c:365
+#: ../../install_steps_gtk.pm_.c:367
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Tu negali pasirinkti šio paketo, kadangi nebėra pakankamai vietos jam įdiegti"
-#: ../../install_steps_gtk.pm_.c:370
+#: ../../install_steps_gtk.pm_.c:372
msgid "The following packages are going to be installed"
msgstr "Ruošiamasi įdiegti šiuos paketus"
-#: ../../install_steps_gtk.pm_.c:371
+#: ../../install_steps_gtk.pm_.c:373
msgid "The following packages are going to be removed"
msgstr "Ruošiamasi pašalinti šiuos paketus"
-#: ../../install_steps_gtk.pm_.c:383
+#: ../../install_steps_gtk.pm_.c:385
msgid "You can't select/unselect this package"
msgstr "Tu negali pažymėti/atžymėti šio paketo"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:397
msgid "This is a mandatory package, it can't be unselected"
msgstr "Tai yra privalomas paketas, jis negali būti atžymėtas"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It is already installed"
msgstr "Tu negali atžymėti šio paketo. Jis jau yra įdiegtas"
-#: ../../install_steps_gtk.pm_.c:400
+#: ../../install_steps_gtk.pm_.c:402
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -4236,77 +4450,77 @@ msgstr ""
"Šis paketas privalo būti atnaujintas\n"
"Ar tu tikrai nori jį atžymėti?"
-#: ../../install_steps_gtk.pm_.c:403
+#: ../../install_steps_gtk.pm_.c:405
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tu negali atžymėti šio paketo. Jis privalo būti atnaujintas"
-#: ../../install_steps_gtk.pm_.c:408
+#: ../../install_steps_gtk.pm_.c:410
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
-#: ../../standalone/drakbackup_.c:2935
+#: ../../install_steps_gtk.pm_.c:411 ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
+#: ../../standalone/drakbackup_.c:3600
msgid "Install"
msgstr "Įdiegti"
-#: ../../install_steps_gtk.pm_.c:412
+#: ../../install_steps_gtk.pm_.c:414
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Išsaugoti į diskelį"
-#: ../../install_steps_gtk.pm_.c:413
+#: ../../install_steps_gtk.pm_.c:415
#, fuzzy
msgid "Updating package selection"
msgstr "Išsaugoti paketų pasirinkimą"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:420
#, fuzzy
msgid "Minimal install"
msgstr "Išmesti"
-#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
+#: ../../install_steps_gtk.pm_.c:435 ../../install_steps_interactive.pm_.c:538
msgid "Choose the packages you want to install"
msgstr "Pasirink paketus, kuriuos tu nori įdiegti"
-#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_gtk.pm_.c:451 ../../install_steps_interactive.pm_.c:778
msgid "Installing"
msgstr "Įdiegiama"
-#: ../../install_steps_gtk.pm_.c:455
+#: ../../install_steps_gtk.pm_.c:457
msgid "Estimating"
msgstr "Skaičiuojama"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:464
msgid "Time remaining "
msgstr "Liko laiko "
-#: ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_gtk.pm_.c:476
msgid "Please wait, preparing installation..."
msgstr "Prašome palaukti. Ruošiamas įdiegimas"
-#: ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_gtk.pm_.c:560
#, c-format
msgid "%d packages"
msgstr "%d paketų"
-#: ../../install_steps_gtk.pm_.c:563
+#: ../../install_steps_gtk.pm_.c:565
#, c-format
msgid "Installing package %s"
msgstr "Įdiegiamas paketas %s"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
-#: ../../standalone/drakautoinst_.c:203
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
+#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Sutinku"
-#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:801
+#: ../../install_steps_gtk.pm_.c:602 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:802
msgid "Refuse"
msgstr "Atmetu"
-#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
+#: ../../install_steps_gtk.pm_.c:603 ../../install_steps_interactive.pm_.c:803
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4320,17 +4534,17 @@ msgstr ""
"Prašom įkišti CD su užrašu „%s“ į kaupiklį, tada paspausk Gerai.\n"
"Jei tu jo neturi, spausk Nutraukti, kad išvengtum įdiegimo iš šio CD."
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
-#: ../../install_steps_interactive.pm_.c:814
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_gtk.pm_.c:621
+#: ../../install_steps_interactive.pm_.c:815
+#: ../../install_steps_interactive.pm_.c:819
msgid "Go on anyway?"
msgstr "Vis tiek tęsti?"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_gtk.pm_.c:617 ../../install_steps_interactive.pm_.c:815
msgid "There was an error ordering packages:"
msgstr "Įvyko klaida, bandant sutvarkyti paketus:"
-#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_gtk.pm_.c:621 ../../install_steps_interactive.pm_.c:819
msgid "There was an error installing packages:"
msgstr "Įvyko klaida, įdiegiant paketus:"
@@ -4533,109 +4747,109 @@ msgstr ""
msgid "Are you sure you refuse the licence?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:213
-#: ../../install_steps_interactive.pm_.c:1037
-#: ../../standalone/keyboarddrake_.c:28
+#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:1038
+#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatūra"
-#: ../../install_steps_interactive.pm_.c:214
+#: ../../install_steps_interactive.pm_.c:212
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Prašom pasirinkti klaviatūros išdėstymą."
-#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:213
msgid "Here is the full list of keyboards available"
msgstr "Čia yra galimų klaviatūrų sąrašas"
-#: ../../install_steps_interactive.pm_.c:232
+#: ../../install_steps_interactive.pm_.c:231
msgid "Which installation class do you want?"
msgstr "Kurios Įdiegimo klasės tu nori?"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Install/Update"
msgstr "Įdiegti/Atnaujinti"
-#: ../../install_steps_interactive.pm_.c:236
+#: ../../install_steps_interactive.pm_.c:235
msgid "Is this an install or an update?"
msgstr "Ar tai įdiegimas, ar atnaujinimas?"
-#: ../../install_steps_interactive.pm_.c:245
+#: ../../install_steps_interactive.pm_.c:244
msgid "Recommended"
msgstr "Rekomenduojama"
-#: ../../install_steps_interactive.pm_.c:248
-#: ../../install_steps_interactive.pm_.c:251
+#: ../../install_steps_interactive.pm_.c:247
+#: ../../install_steps_interactive.pm_.c:250
msgid "Expert"
msgstr "Eksperto"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade"
msgstr "Atnaujinimas"
-#: ../../install_steps_interactive.pm_.c:256
-#: ../../install_steps_interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:255
+#: ../../install_steps_interactive.pm_.c:259
#, fuzzy
msgid "Upgrade packages only"
msgstr "Išsaugoti paketų pasirinkimą"
-#: ../../install_steps_interactive.pm_.c:276
+#: ../../install_steps_interactive.pm_.c:275
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Prašom pasirinkti savo pelės rūšį."
-#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
+#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:59
msgid "Mouse Port"
msgstr "Pelės prievadas"
-#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties prijungta tavo pelė."
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:293
+#: ../../install_steps_interactive.pm_.c:292
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:294
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "Configuring PCMCIA cards..."
msgstr "Nustatomos PCMCIA plokštes..."
-#: ../../install_steps_interactive.pm_.c:315
+#: ../../install_steps_interactive.pm_.c:314
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "Configuring IDE"
msgstr "Nustatome IDE"
-#: ../../install_steps_interactive.pm_.c:322
+#: ../../install_steps_interactive.pm_.c:321
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:336
msgid "No partition available"
msgstr "nėra prieinamų skirsnių"
-#: ../../install_steps_interactive.pm_.c:340
+#: ../../install_steps_interactive.pm_.c:339
msgid "Scanning partitions to find mount points"
msgstr "Peržiūrimi skirsniai, ieškant montavimo taškų"
-#: ../../install_steps_interactive.pm_.c:348
+#: ../../install_steps_interactive.pm_.c:347
msgid "Choose the mount points"
msgstr "Pasirink montavimo taškus"
-#: ../../install_steps_interactive.pm_.c:367
+#: ../../install_steps_interactive.pm_.c:366
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4652,7 +4866,7 @@ msgstr ""
"\n"
"Ar sutinki prarasti visus skirsnius?\n"
-#: ../../install_steps_interactive.pm_.c:380
+#: ../../install_steps_interactive.pm_.c:379
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4660,139 +4874,139 @@ msgstr ""
"DiskDrake nesugebėjo teisingai perskaityti skirsnių lentelės.\n"
"Tęsk savo paties rizika!"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:396
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:406
+#: ../../install_steps_interactive.pm_.c:405
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Nerastas pagrindinis skirsnis"
-#: ../../install_steps_interactive.pm_.c:407
+#: ../../install_steps_interactive.pm_.c:406
msgid "Root Partition"
msgstr "Šakninis skirsnis"
-#: ../../install_steps_interactive.pm_.c:408
+#: ../../install_steps_interactive.pm_.c:407
msgid "What is the root partition (/) of your system?"
msgstr "Kur yra tavo sistemos šakninis skirsnis (/)?"
-#: ../../install_steps_interactive.pm_.c:422
+#: ../../install_steps_interactive.pm_.c:421
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Tau reikia perkrauti kompiuterį, kad skirsnių lentelės pakeitimai būtų "
"naudojami"
-#: ../../install_steps_interactive.pm_.c:446
+#: ../../install_steps_interactive.pm_.c:445
msgid "Choose the partitions you want to format"
msgstr "Pasirink skirsnius, kuriuos nori sužymėti"
-#: ../../install_steps_interactive.pm_.c:447
+#: ../../install_steps_interactive.pm_.c:446
msgid "Check bad blocks?"
msgstr "Ieškoti blogų blokų?"
-#: ../../install_steps_interactive.pm_.c:474
+#: ../../install_steps_interactive.pm_.c:473
msgid "Formatting partitions"
msgstr "Sužymimi skirsniai"
-#: ../../install_steps_interactive.pm_.c:476
+#: ../../install_steps_interactive.pm_.c:475
#, c-format
msgid "Creating and formatting file %s"
msgstr "Sukuriama ir sužymima byla %s"
-#: ../../install_steps_interactive.pm_.c:481
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:483
+#: ../../install_steps_interactive.pm_.c:482
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nepakanka swap atminties įdiegimo vykdymui, prašom praplėsti"
-#: ../../install_steps_interactive.pm_.c:490
+#: ../../install_steps_interactive.pm_.c:489
#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Ieškomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:491
+#: ../../install_steps_interactive.pm_.c:490
msgid "Looking for available packages..."
msgstr "Ieškomi galimi paketai"
-#: ../../install_steps_interactive.pm_.c:495
-msgid "Finding packages to upgrade..."
-msgstr "Ieškoma atnaujintinų paketų"
-
-#: ../../install_steps_interactive.pm_.c:498
+#: ../../install_steps_interactive.pm_.c:493
#, fuzzy
msgid "Looking at packages already installed..."
msgstr "Tu negali atžymėti šio paketo. Jis jau yra įdiegtas"
-#: ../../install_steps_interactive.pm_.c:516
+#: ../../install_steps_interactive.pm_.c:497
+msgid "Finding packages to upgrade..."
+msgstr "Ieškoma atnaujintinų paketų"
+
+#: ../../install_steps_interactive.pm_.c:515
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Tavo sistemoje neužtenka vietos įdiegimui arba atnaujinimui (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:551
+#: ../../install_steps_interactive.pm_.c:550
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:554
+#: ../../install_steps_interactive.pm_.c:553
#, fuzzy
msgid "Load from floppy"
msgstr "Atstatyti iš diskelio"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Loading from floppy"
msgstr "Atstatyti iš diskelio"
-#: ../../install_steps_interactive.pm_.c:556
+#: ../../install_steps_interactive.pm_.c:555
#, fuzzy
msgid "Package selection"
msgstr "Paketų grupių pasirinkimas"
-#: ../../install_steps_interactive.pm_.c:561
+#: ../../install_steps_interactive.pm_.c:560
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Įdėk diskelį į kaupiklį %s"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:572
msgid "Save on floppy"
msgstr "Išsaugoti į diskelį"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:646
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:661
+#: ../../install_steps_interactive.pm_.c:660
#, fuzzy
msgid "Type of install"
msgstr "Pasirink paketą įdiegimui"
-#: ../../install_steps_interactive.pm_.c:662
+#: ../../install_steps_interactive.pm_.c:661
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:665
+#: ../../install_steps_interactive.pm_.c:664
#, fuzzy
msgid "With X"
msgstr "Palauk"
-#: ../../install_steps_interactive.pm_.c:667
+#: ../../install_steps_interactive.pm_.c:666
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:668
+#: ../../install_steps_interactive.pm_.c:667
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
@@ -4811,11 +5025,11 @@ msgstr ""
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM su užrašu \"%s\""
-#: ../../install_steps_interactive.pm_.c:777
+#: ../../install_steps_interactive.pm_.c:778
msgid "Preparing installation"
msgstr "Ruošiamas įdiegimas"
-#: ../../install_steps_interactive.pm_.c:786
+#: ../../install_steps_interactive.pm_.c:787
#, c-format
msgid ""
"Installing package %s\n"
@@ -4824,21 +5038,21 @@ msgstr ""
"Įdiegiamas paketas %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:832
+#: ../../install_steps_interactive.pm_.c:833
msgid "Post-install configuration"
msgstr "Konfigūracija po įdiegimo"
-#: ../../install_steps_interactive.pm_.c:838
+#: ../../install_steps_interactive.pm_.c:839
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Įdėk diskelį į kaupiklį %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:845
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Įdėk tuščią diskelį į kaupiklį %s"
-#: ../../install_steps_interactive.pm_.c:864
+#: ../../install_steps_interactive.pm_.c:865
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4893,7 +5107,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:904
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4905,190 +5119,199 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:918
+#: ../../install_steps_interactive.pm_.c:919
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Jungiamasi prie atvaizdžio (mirror), kad gautume prieinamų paketų sąrašą"
-#: ../../install_steps_interactive.pm_.c:923
+#: ../../install_steps_interactive.pm_.c:924
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirink atvaizdį (mirror), iš kurio imti paketus"
-#: ../../install_steps_interactive.pm_.c:932
+#: ../../install_steps_interactive.pm_.c:933
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Jungiamasi prie atvaizdžio (mirror), kad gautume prieinamų paketų sąrašą"
-#: ../../install_steps_interactive.pm_.c:959
+#: ../../install_steps_interactive.pm_.c:960
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: ../../install_steps_interactive.pm_.c:964
+#: ../../install_steps_interactive.pm_.c:965
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"
-#: ../../install_steps_interactive.pm_.c:965
+#: ../../install_steps_interactive.pm_.c:966
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:973
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1006
-#: ../../install_steps_interactive.pm_.c:1014
+#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1015
msgid "Remote CUPS server"
msgstr "Nutolęs CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "No printer"
msgstr "Spausdintuvo nėra"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ar turi dar vieną?"
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1027
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1029
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1034 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Apibendrinimas"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1037
msgid "Mouse"
msgstr "Pelė"
-#: ../../install_steps_interactive.pm_.c:1038
+#: ../../install_steps_interactive.pm_.c:1039
msgid "Timezone"
msgstr "Laiko juosta"
-#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
-#: ../../printerdrake.pm_.c:2425
+#: ../../install_steps_interactive.pm_.c:1040 ../../printerdrake.pm_.c:2728
+#: ../../printerdrake.pm_.c:2814
msgid "Printer"
msgstr "Spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1041
+#: ../../install_steps_interactive.pm_.c:1042
#, fuzzy
msgid "ISDN card"
msgstr "Vidinė ISDN plokštė"
-#: ../../install_steps_interactive.pm_.c:1044
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:1047
#, fuzzy
msgid "Sound card"
msgstr "Standartinė"
-#: ../../install_steps_interactive.pm_.c:1048
+#: ../../install_steps_interactive.pm_.c:1049
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1088
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1117
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1118
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1089
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1127
#, fuzzy
msgid "NIS"
msgstr "Naudoti NIS"
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1113
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1141
#, fuzzy
-msgid "Windows PDC"
-msgstr "Išmesti Windows(TM)"
+msgid "Windows Domain"
+msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1091
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1092
+#: ../../install_steps_interactive.pm_.c:1114
#, fuzzy
msgid "Local files"
msgstr "Vietinis spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1100
-#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1101
+#: ../../install_steps_interactive.pm_.c:1102 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nurodyti root slaptažodį"
-#: ../../install_steps_interactive.pm_.c:1102
+#: ../../install_steps_interactive.pm_.c:1103
msgid "No password"
msgstr "Jokio slaptažodžio"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1108
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Šis slaptažodis yra pernelyg paprastas (turi būti bent %d simbolių ilgio)"
-#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
-#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1114 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1121
+#: ../../install_steps_interactive.pm_.c:1122
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1129
+#: ../../install_steps_interactive.pm_.c:1130
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentikacijos NIS"
-#: ../../install_steps_interactive.pm_.c:1130
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1132
msgid "NIS Server"
msgstr "NIS serveris"
#: ../../install_steps_interactive.pm_.c:1138
-#, fuzzy
-msgid "Authentication Windows PDC"
-msgstr "Autentikacija"
-
-#: ../../install_steps_interactive.pm_.c:1139
-#, fuzzy
-msgid "Windows Domain"
-msgstr "NIS domenas"
+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 /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
+msgstr ""
#: ../../install_steps_interactive.pm_.c:1140
#, fuzzy
-msgid "PDC Server Name"
-msgstr "NIS serveris"
+msgid "Authentication Windows Domain"
+msgstr "Autentikacija"
#: ../../install_steps_interactive.pm_.c:1142
-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 /"
-"add and reboot the server"
+#, fuzzy
+msgid "Domain Admin User Name"
+msgstr "Domeno vardas"
+
+#: ../../install_steps_interactive.pm_.c:1143
+msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1178
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 "
@@ -5118,19 +5341,19 @@ msgstr ""
"Jei nori sukurti įkrovos diskelį savo sistemai, įkišk diskelį į pirmąjį\n"
"įrenginį ir spausk \"Gerai\"."
-#: ../../install_steps_interactive.pm_.c:1192
+#: ../../install_steps_interactive.pm_.c:1194
msgid "First floppy drive"
msgstr "Pirmasis diskelių įrenginys"
-#: ../../install_steps_interactive.pm_.c:1193
+#: ../../install_steps_interactive.pm_.c:1195
msgid "Second floppy drive"
msgstr "Antrasis diskelių įrenginys"
-#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
+#: ../../install_steps_interactive.pm_.c:1196 ../../printerdrake.pm_.c:2277
msgid "Skip"
msgstr "Praleisti"
-#: ../../install_steps_interactive.pm_.c:1199
+#: ../../install_steps_interactive.pm_.c:1201
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5159,7 +5382,7 @@ msgstr ""
"Ar tu nori sukurti įkrovos diskelį?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1207
msgid ""
"\n"
"\n"
@@ -5168,28 +5391,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1213
+#: ../../install_steps_interactive.pm_.c:1215
msgid "Sorry, no floppy drive available"
msgstr "Atleisk, bet neradau jokio diskelių kaupiklio"
-#: ../../install_steps_interactive.pm_.c:1217
+#: ../../install_steps_interactive.pm_.c:1219
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pasirink kaupiklį, kurį nori naudoti įkrovos diskeliui sukurti"
-#: ../../install_steps_interactive.pm_.c:1221
+#: ../../install_steps_interactive.pm_.c:1223
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Įdėk diskelį į kaupiklį %s"
-#: ../../install_steps_interactive.pm_.c:1224
+#: ../../install_steps_interactive.pm_.c:1226
msgid "Creating bootdisk..."
msgstr "Kuriamas įkrovos diskelis"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Preparing bootloader..."
msgstr "Ruošiama įkrovos tvarkyklė"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1244
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5197,11 +5420,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1250
msgid "Do you want to use aboot?"
msgstr "Ar nori naudoti aboot?"
-#: ../../install_steps_interactive.pm_.c:1251
+#: ../../install_steps_interactive.pm_.c:1253
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5209,16 +5432,16 @@ msgstr ""
"Klaida įdiegiant aboot,\n"
"bandyti įdiegti priverstinai, net jei tai sunaikintų pirmąjį skirsnį?"
-#: ../../install_steps_interactive.pm_.c:1258
+#: ../../install_steps_interactive.pm_.c:1260
#, fuzzy
msgid "Installing bootloader"
msgstr "Įdiegti įkrovos tvarkyklę"
-#: ../../install_steps_interactive.pm_.c:1264
+#: ../../install_steps_interactive.pm_.c:1266
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Nepavyko įdiegti įkrovos tvarkyklės. Įvyko tokia klaida:"
-#: ../../install_steps_interactive.pm_.c:1272
+#: ../../install_steps_interactive.pm_.c:1274
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5229,17 +5452,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1306
-#: ../../standalone/drakautoinst_.c:81
+#: ../../install_steps_interactive.pm_.c:1308
+#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Įdėk tuščią diskelį į kaupiklį %s"
-#: ../../install_steps_interactive.pm_.c:1310
+#: ../../install_steps_interactive.pm_.c:1312
msgid "Creating auto install floppy..."
msgstr "Kuriamas automatinio įdiegimo diskelis"
-#: ../../install_steps_interactive.pm_.c:1321
+#: ../../install_steps_interactive.pm_.c:1323
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5249,7 +5472,7 @@ msgstr ""
"\n"
"Ar tu nori išeiti dabar?"
-#: ../../install_steps_interactive.pm_.c:1332
+#: ../../install_steps_interactive.pm_.c:1334
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5281,15 +5504,15 @@ msgstr ""
"Informacija apie tavo sistemos konfigūravimą yra oficialioje\n"
"Mandrake Linux User's Guide knygoje."
-#: ../../install_steps_interactive.pm_.c:1345
+#: ../../install_steps_interactive.pm_.c:1347
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1350
+#: ../../install_steps_interactive.pm_.c:1352
msgid "Generate auto install floppy"
msgstr "Sukurti automatinio įdiegimo diskelį"
-#: ../../install_steps_interactive.pm_.c:1352
+#: ../../install_steps_interactive.pm_.c:1354
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5303,15 +5526,15 @@ msgstr ""
"\n"
"Jūs galbūt norėsite pakartoti įdiegimą.\n"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Automated"
msgstr "Automatinis"
-#: ../../install_steps_interactive.pm_.c:1357
+#: ../../install_steps_interactive.pm_.c:1359
msgid "Replay"
msgstr "Parodyti vėl"
-#: ../../install_steps_interactive.pm_.c:1360
+#: ../../install_steps_interactive.pm_.c:1362
msgid "Save packages selection"
msgstr "Išsaugoti paketų pasirinkimą"
@@ -5340,406 +5563,469 @@ msgstr ""
msgid "Choose a file"
msgstr "Pasirink veiksmą"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:317
msgid "Advanced"
msgstr "Išplėstinis"
-#: ../../interactive.pm_.c:316
+#: ../../interactive.pm_.c:318
msgid "Basic"
msgstr ""
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
+#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:155
+#: ../../printerdrake.pm_.c:1990
+msgid "<- Previous"
+msgstr "<- Ankstesnis"
+
+#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../standalone/drakbackup_.c:3464 ../../standalone/drakbackup_.c:3491
+#: ../../standalone/drakbackup_.c:3517
+#, fuzzy
+msgid "Next"
+msgstr "Tekstas"
+
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
msgid "Bad choice, try again\n"
msgstr "Blogas pasirinkimas, bandyk vėl\n"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
#, c-format
msgid "Your choice? (default %s) "
msgstr "Tavo pasirinkimas? (pagal nutylėjimą %s) "
-#: ../../interactive/stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Tavo pasirinkimas? (pagal nutylėjimą %s) "
-#: ../../interactive/stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:95
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Pasirinktys: %s"
-#: ../../interactive/stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:96
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Ar nori naudoti aboot?"
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive/stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:105
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Tavo pasirinkimas? (pagal nutylėjimą %s) "
-#: ../../interactive/stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:123
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive/stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:126
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive/stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:139
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive/stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:146
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:208
msgid "Czech (QWERTZ)"
msgstr "Čekų (QWERTZ)"
-#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:210
msgid "German"
msgstr "Vokiečių"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:175
msgid "Dvorak"
msgstr "Dvorako"
-#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:218
msgid "Spanish"
msgstr "Ispanų"
-#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:219
msgid "Finnish"
msgstr "Suomių"
-#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:220
msgid "French"
msgstr "Prancūzų"
-#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:252
msgid "Norwegian"
msgstr "Norvegų"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:180
msgid "Polish"
msgstr "Lenkų"
-#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:181 ../../keyboard.pm_.c:260
msgid "Russian"
msgstr "Rusų"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:183 ../../keyboard.pm_.c:262
msgid "Swedish"
msgstr "Švedų"
-#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
+#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:278
msgid "UK keyboard"
msgstr "Jungtinės karalystės klaviatūra"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:279
msgid "US keyboard"
msgstr "JAV klaviatūra"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:187
#, fuzzy
msgid "Albanian"
msgstr "Iraniečių"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:188
msgid "Armenian (old)"
msgstr "Armėnų (senoji)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:189
msgid "Armenian (typewriter)"
msgstr "Armėnų (spausd. mašinėlės)"
-#: ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:190
msgid "Armenian (phonetic)"
msgstr "Armėnų (fonetinė)"
-#: ../../keyboard.pm_.c:187
+#: ../../keyboard.pm_.c:195
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidžaniečių (lotyniška)"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:197
msgid "Belgian"
msgstr "Belgų"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:198
+#, fuzzy
+msgid "Bengali"
+msgstr "įjungti"
+
+#: ../../keyboard.pm_.c:199
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armėnų (fonetinė)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:200
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgarų"
-#: ../../keyboard.pm_.c:192
+#: ../../keyboard.pm_.c:201
msgid "Brazilian (ABNT-2)"
msgstr "Brazilų (ABNT-2)"
-#: ../../keyboard.pm_.c:193
+#: ../../keyboard.pm_.c:204
+#, fuzzy
+msgid "Bosnian"
+msgstr "Estų"
+
+#: ../../keyboard.pm_.c:205
msgid "Belarusian"
msgstr "Baltarusių"
-#: ../../keyboard.pm_.c:194
+#: ../../keyboard.pm_.c:206
msgid "Swiss (German layout)"
msgstr "Šveicarų (Vokiškas išdėstymas)"
-#: ../../keyboard.pm_.c:195
+#: ../../keyboard.pm_.c:207
msgid "Swiss (French layout)"
msgstr "Šveicarų. (Prancūziškas išdėstymas)"
-#: ../../keyboard.pm_.c:197
+#: ../../keyboard.pm_.c:209
msgid "Czech (QWERTY)"
msgstr "Čekų (QWERTY)"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:211
msgid "German (no dead keys)"
msgstr "Vokiečių (be mirusių klavišų)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:212
+msgid "Devanagari"
+msgstr ""
+
+#: ../../keyboard.pm_.c:213
msgid "Danish"
msgstr "Danų"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:214
msgid "Dvorak (US)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:215
msgid "Dvorak (Norwegian)"
msgstr "Dvorako (Norvegų)"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:216
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorako (JAV)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:217
msgid "Estonian"
msgstr "Estų"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:221
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzinų (\"Rusiškas\" išdėstymas)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:222
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzinų (\"Latin\" išdėstymas)"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:223
msgid "Greek"
msgstr "Graikų"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:224
+msgid "Gujarati"
+msgstr ""
+
+#: ../../keyboard.pm_.c:225
+msgid "Gurmukhi"
+msgstr ""
+
+#: ../../keyboard.pm_.c:226
msgid "Hungarian"
msgstr "Vengrų"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:227
msgid "Croatian"
msgstr "Kroatų"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:228
msgid "Israeli"
msgstr "Izraelio"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:229
msgid "Israeli (Phonetic)"
msgstr "Žydų (Fonetinė)"
-#: ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:230
msgid "Iranian"
msgstr "Iraniečių"
-#: ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:231
msgid "Icelandic"
msgstr "Islandų"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:232
msgid "Italian"
msgstr "Italų"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:233
+msgid "Inuktitut"
+msgstr ""
+
+#: ../../keyboard.pm_.c:234
msgid "Japanese 106 keys"
msgstr "Japoniška 106 klavišų"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:237
#, fuzzy
msgid "Korean keyboard"
msgstr "Jungtinės karalystės klaviatūra"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:238
msgid "Latin American"
msgstr "Lotynų Amerikos"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:239
+#, fuzzy
+msgid "Laotian"
+msgstr "Vieta"
+
+#: ../../keyboard.pm_.c:240
msgid "Lithuanian AZERTY (old)"
msgstr "Lietuvių ĄŽERTY (sena)"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:242
msgid "Lithuanian AZERTY (new)"
msgstr "Lietuvių ĄŽERTY (nauja)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:243
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lietuvių \"skaičių eilė\" QWERTY"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:244
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lietuvių \"fonetinė\" QWERTY"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:245
#, fuzzy
msgid "Latvian"
msgstr "Vieta"
-#: ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:246
msgid "Macedonian"
msgstr "Makedoniečių"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:247
+msgid "Myanmar (Burmese)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:248
+#, fuzzy
+msgid "Mongolian (cyrillic)"
+msgstr "Azerbaidžaniečių (kirilica)"
+
+#: ../../keyboard.pm_.c:249
+msgid "Maltese (UK)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:250
+msgid "Maltese (US)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:251
msgid "Dutch"
msgstr "Olandų"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:253
msgid "Polish (qwerty layout)"
msgstr "Lenkų (QWERTY išdėstymas)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:254
msgid "Polish (qwertz layout)"
msgstr "Lenkų (QWERTZ išdėstymas)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:255
msgid "Portuguese"
msgstr "Portugalų"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:256
msgid "Canadian (Quebec)"
msgstr "Kanadiečių (Kvebeko)"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:258
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiška (Yawerty)"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:259
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiška (Yawerty)"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:261
msgid "Russian (Yawerty)"
msgstr "Rusiška (Yawerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:263
msgid "Slovenian"
msgstr "Slovėnų"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:264
msgid "Slovakian (QWERTZ)"
msgstr "Slovakų (QWERTZ)"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:265
msgid "Slovakian (QWERTY)"
msgstr "Slovakų (QWERTY)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:267
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidžaniečių (kirilica)"
-#: ../../keyboard.pm_.c:249
-#, fuzzy
-msgid "Tamil"
-msgstr "Lentelė"
+#: ../../keyboard.pm_.c:269
+msgid "Tamil (Unicode)"
+msgstr ""
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:270
+msgid "Tamil (TSCII)"
+msgstr ""
+
+#: ../../keyboard.pm_.c:271
msgid "Thai keyboard"
msgstr "Thai klaviatūra"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:273
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatūra"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:274
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkų (tradicinis \"F\" modelis)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:275
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkų (šiuolaikinis \"Q\" modelis)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:277
msgid "Ukrainian"
msgstr "Ukrainiečių"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:280
msgid "US keyboard (international)"
msgstr "JAV klaviatūra (tarptautinė)"
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:281
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamiečių \"skaičių eilė\" QWERTY"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:282
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Jugoslavų (lotyniškas/kirilikos)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:289
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:290
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:291
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:292
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:293
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:294
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:295
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:296
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:297
msgid "Right \"Windows\" key"
msgstr ""
@@ -5748,37 +6034,37 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Loopback montavimai %s\n"
-#: ../../lvm.pm_.c:88
+#: ../../lvm.pm_.c:98
msgid "Remove the logical volumes first\n"
msgstr "Pirmiausia išmeskite loginius tomus\n"
-#: ../../modparm.pm_.c:51
+#: ../../modparm.pm_.c:50
#, fuzzy
msgid "a number"
msgstr "Telefono numeris"
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:53
+#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
msgstr ""
-#: ../../modparm.pm_.c:55
+#: ../../modparm.pm_.c:54
#, fuzzy
msgid "comma separated strings"
msgstr "Sužymėti skirsnius"
-#: ../../modules.pm_.c:283
+#: ../../modules.pm_.c:292
msgid ""
-"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
+"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
@@ -5882,51 +6168,43 @@ msgstr "jokios"
msgid "No mouse"
msgstr "Pelės nėra"
-#: ../../mouse.pm_.c:447
+#: ../../mouse.pm_.c:445
msgid "Please test the mouse"
msgstr "Prašom išbandyti pelę"
-#: ../../mouse.pm_.c:448
+#: ../../mouse.pm_.c:446
msgid "To activate the mouse,"
msgstr "Kad sužadintum pelę,"
-#: ../../mouse.pm_.c:449
+#: ../../mouse.pm_.c:447
msgid "MOVE YOUR WHEEL!"
msgstr "PASUK RATUKĄ!"
-#: ../../my_gtk.pm_.c:688
-msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
-
-#: ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:156
msgid "Finish"
msgstr "Suomių"
-#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:156 ../../printerdrake.pm_.c:1992
msgid "Next ->"
msgstr "Toliau ->"
-#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
-msgid "<- Previous"
-msgstr "<- Ankstesnis"
-
-#: ../../my_gtk.pm_.c:1056
+#: ../../my_gtk.pm_.c:284
msgid "Is this correct?"
msgstr "Ar taip teisinga?"
-#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:356 ../../services.pm_.c:222
msgid "Info"
msgstr "Info"
-#: ../../my_gtk.pm_.c:1141
+#: ../../my_gtk.pm_.c:377
msgid "Expand Tree"
msgstr "Išskleisti medį"
-#: ../../my_gtk.pm_.c:1142
+#: ../../my_gtk.pm_.c:378
msgid "Collapse Tree"
msgstr "Suskleisti medį"
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:379
msgid "Toggle between flat and group sorted"
msgstr "Perjungti tarp rikiavimo pagal grupes ar abėcėlę"
@@ -5949,6 +6227,10 @@ msgid "Alcatel speedtouch usb"
msgstr ""
#: ../../network/adsl.pm_.c:22
+msgid "ECI Hi-Focus"
+msgstr ""
+
+#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
msgstr "naudoti dhcp"
@@ -5976,7 +6258,7 @@ msgstr ""
"Neradau jokio ethernet tinklo adapterio tavo sistemoje.\n"
"Aš negaliu sutvarkyti šio jungties tipo."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:247
msgid "Choose the network interface"
msgstr "Pasirink tinklo interfeisą"
@@ -5991,7 +6273,7 @@ msgstr ""
msgid "no network card found"
msgstr "nerasta jokia tinklo plokštė"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
msgid "Configuring network"
msgstr "Konfigūruojamas tinklas"
@@ -6007,7 +6289,7 @@ msgstr ""
"tai turėtų būti pilnai aprašytas hosto vardas, panašus\n"
"į \"mano.filialas.istaiga.lt\"."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:370
msgid "Host name"
msgstr "Hosto vardas"
@@ -6035,7 +6317,7 @@ msgstr "Kokios rūšies tavo ISDN jungtis?"
msgid ""
"Which ISDN configuration do you prefer?\n"
"\n"
-"* The Old configuration uses isdn4net. It contains powerfull\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
" tools, but is tricky to configure, and not standard.\n"
"\n"
"* The New configuration is easier to understand, more\n"
@@ -6159,44 +6441,44 @@ msgstr ""
msgid "Dialup options"
msgstr "Prisiskambinimo nustatymai"
-#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:621
msgid "Connection name"
msgstr "Jungties pavadinimas"
-#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:622
msgid "Phone number"
msgstr "Telefono numeris"
-#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:623
msgid "Login ID"
msgstr "Pasisveikinimo ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Script-based"
msgstr "Paremtas skriptu"
-#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:625
msgid "Terminal-based"
msgstr "Paremtas terminalu"
-#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:626
msgid "Domain name"
msgstr "Domeno vardas"
-#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:627
#, fuzzy
msgid "First DNS Server (optional)"
msgstr "Pirmasis DNS serveris"
-#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "Antrasis DNS serveris"
@@ -6311,13 +6593,13 @@ msgstr "Konfiguravimui pasirinkite prifailą"
msgid "Use auto detection"
msgstr "Naudokite automatinį aptikimą"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
-#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
-#: ../../standalone/drakfloppy_.c:146
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2930
+#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
+#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Experto režimas"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:283
msgid "Detecting devices..."
msgstr "Ieškoma įranga..."
@@ -6428,7 +6710,7 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:293
+#: ../../network/network.pm_.c:294
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6441,7 +6723,7 @@ msgstr ""
"Jei pakeisi ką nors žemiau esančiuose laukuose, tai įsigalios vietoj senųjų "
"nuostatų."
-#: ../../network/network.pm_.c:298
+#: ../../network/network.pm_.c:299
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6451,43 +6733,43 @@ msgstr ""
"Kiekvienas laukas turi būti įrašytas kaip IP adresas\n"
"dešimtainiais skaičiais su taškais (pvz. 192.168.2.36)."
-#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigūruojamas tinklo įrenginys %s"
-#: ../../network/network.pm_.c:309
+#: ../../network/network.pm_.c:310
#, c-format
msgid " (driver %s)"
msgstr " (tvarkyklė %s)"
-#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
-#: ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresas"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
+#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:313
+#: ../../network/network.pm_.c:314
msgid "Automatic IP"
msgstr "Automatinis IP"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:315
#, fuzzy
msgid "Start at boot"
msgstr "Startavo įkrovos metu"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
+#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:753
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresas turėtų būti 1.2.3.4 formato"
-#: ../../network/network.pm_.c:365
+#: ../../network/network.pm_.c:366
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6499,40 +6781,40 @@ msgstr ""
"į \"mano.filialas.istaiga.lt\".\n"
"Taip pat gali įvesti šliuzo (gateway) IP adresą, jeigu tokį turi"
-#: ../../network/network.pm_.c:370
+#: ../../network/network.pm_.c:371
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:372
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:373
+#: ../../network/network.pm_.c:374
msgid "Gateway device"
msgstr "Šliuzo (gateway) įrenginys"
-#: ../../network/network.pm_.c:385
+#: ../../network/network.pm_.c:386
msgid "Proxies configuration"
msgstr "Proxy konfigūracija"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:387
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:388
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:389
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:391
+#: ../../network/network.pm_.c:392
msgid "Proxy should be http://..."
msgstr "Proxy turėtų būti http://..."
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:393
msgid "Proxy should be ftp://..."
msgstr "Proxy turėtų būti ftp://..."
@@ -6544,7 +6826,7 @@ msgstr "Interneto konfigūravimas"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Ar nori pabandyti prisijungti prie interneto dabar?"
-#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:196
msgid "Testing your connection..."
msgstr "Išbandoma jungtis..."
@@ -6572,43 +6854,43 @@ msgstr "Jungties konfigūravimas"
msgid "Please fill or check the field below"
msgstr "Prašom užpildyti arba patikrinti šį laukelį"
-#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:607
msgid "Card IRQ"
msgstr "Plokštės IRQ"
-#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:608
msgid "Card mem (DMA)"
msgstr "Plokštės mem (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:609
msgid "Card IO"
msgstr "Plokštės IO"
-#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:610
msgid "Card IO_0"
msgstr "Plokštės IO_0"
-#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:611
msgid "Card IO_1"
msgstr "Plokštės IO_1"
-#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:612
msgid "Your personal phone number"
msgstr "Tavo asmeninis tel. numeris"
-#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:613
msgid "Provider name (ex provider.net)"
msgstr "Tiekėjo pavadinimas (pvz. tiekejas.lt)"
-#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:614
msgid "Provider phone number"
msgstr "Tiekėjo telefono numeris"
-#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:615
msgid "Provider dns 1 (optional)"
msgstr "Tiekėjo DNS 1 (pasirinktinai)"
-#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:616
msgid "Provider dns 2 (optional)"
msgstr "Tiekėjo DNS 2 (pasirinktinai)"
@@ -6617,30 +6899,30 @@ msgstr "Tiekėjo DNS 2 (pasirinktinai)"
msgid "Choose your country"
msgstr "Pasirink klaviatūrą"
-#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:619
msgid "Dialing mode"
msgstr "Skambinimo režimas"
-#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:631
#, fuzzy
msgid "Connection speed"
msgstr "Jungties tipas: "
-#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Jungties tipas: "
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:617
msgid "Account Login (user name)"
msgstr "Pasisveikinimas (vartotojo vardas)"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
-#: ../../standalone/drakconnect_.c:650
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:618
+#: ../../standalone/drakconnect_.c:649
msgid "Account Password"
msgstr "Slaptažodis"
-#: ../../network/tools.pm_.c:118
+#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
msgstr ""
@@ -6676,7 +6958,7 @@ msgstr "Bloga atsarginė byla"
msgid "Error writing to file %s"
msgstr "Klaida įrašant į bylą %s"
-#: ../../partition_table/raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:187
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6722,7 +7004,7 @@ msgstr ""
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:854
msgid "CUPS"
msgstr ""
@@ -6751,7 +7033,7 @@ msgstr "Nutolęs spausdintuvas"
msgid "Printer on remote CUPS server"
msgstr "Nutolęs CUPS serveris"
-#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:776
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Nutolęs lpd serveris"
@@ -6770,7 +7052,7 @@ msgstr "SMB/Windows 95/98/NT"
msgid "Printer on NetWare server"
msgstr "Spausdinimo serveris"
-#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:780
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Spausdintuvo įrenginio URI"
@@ -6779,112 +7061,112 @@ msgstr "Spausdintuvo įrenginio URI"
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
+#: ../../printer.pm_.c:487 ../../printer.pm_.c:678 ../../printer.pm_.c:1000
+#: ../../printerdrake.pm_.c:2070 ../../printerdrake.pm_.c:3189
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:535
+#: ../../printer.pm_.c:515
#, fuzzy
msgid "Local Printers"
msgstr "Vietinis spausdintuvas"
-#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
+#: ../../printer.pm_.c:517 ../../printer.pm_.c:855
#, fuzzy
msgid "Remote Printers"
msgstr "Nutolęs spausdintuvas"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
+#: ../../printer.pm_.c:524 ../../printerdrake.pm_.c:301
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
+#: ../../printer.pm_.c:527 ../../printerdrake.pm_.c:303
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:532
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:555
+#: ../../printer.pm_.c:535
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:557
+#: ../../printer.pm_.c:537
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:539
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:562
+#: ../../printer.pm_.c:542
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Klaida įrašant į bylą %s"
-#: ../../printer.pm_.c:564
+#: ../../printer.pm_.c:544
#, c-format
-msgid "on LPD server \"%s\", printer \"%s\""
+msgid " on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:566
+#: ../../printer.pm_.c:546
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:570
+#: ../../printer.pm_.c:550
#, c-format
-msgid "on Windows server \"%s\", share \"%s\""
+msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:574
+#: ../../printer.pm_.c:554
#, c-format
-msgid "on Novell server \"%s\", printer \"%s\""
+msgid " on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:576
+#: ../../printer.pm_.c:556
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
+#: ../../printer.pm_.c:675 ../../printerdrake.pm_.c:1540
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:844
+#: ../../printer.pm_.c:824
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modulis %s)"
-#: ../../printer.pm_.c:846
+#: ../../printer.pm_.c:826
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:871
+#: ../../printer.pm_.c:851
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS serverio IP"
-#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
-#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
-#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
+#: ../../printer.pm_.c:857 ../../printerdrake.pm_.c:2851
+#: ../../printerdrake.pm_.c:2862 ../../printerdrake.pm_.c:3078
+#: ../../printerdrake.pm_.c:3130 ../../printerdrake.pm_.c:3156
+#: ../../printerdrake.pm_.c:3326 ../../printerdrake.pm_.c:3328
msgid " (Default)"
msgstr " (Įprastas)"
-#: ../../printerdrake.pm_.c:22
+#: ../../printerdrake.pm_.c:25
msgid "Select Printer Connection"
msgstr "Pasirink spausdintuvo jungtį"
-#: ../../printerdrake.pm_.c:23
+#: ../../printerdrake.pm_.c:26
msgid "How is the printer connected?"
msgstr "Kaip yra prijungtas spausdintuvas?"
-#: ../../printerdrake.pm_.c:25
+#: ../../printerdrake.pm_.c:28
#, fuzzy
msgid ""
"\n"
@@ -6895,17 +7177,21 @@ msgstr ""
"jokių spausdintuvų; jie bus automatiškai atpažįstami.\n"
"Jeigu abejoji, pasirink \"Nutolęs CUPS serveris\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
+#: ../../printerdrake.pm_.c:36
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:2914
#, fuzzy
msgid "CUPS configuration"
msgstr "LAN Konfiguravimas"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
+#: ../../printerdrake.pm_.c:85 ../../printerdrake.pm_.c:2915
#, fuzzy
msgid "Specify CUPS server"
msgstr "Nutolęs CUPS serveris"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:86
msgid ""
"To get access to printers on remote CUPS servers in your local network you "
"do not have to configure anything; the CUPS servers inform your machine "
@@ -6916,7 +7202,7 @@ msgid ""
"the printer information from the server, otherwise leave these fields blank."
msgstr ""
-#: ../../printerdrake.pm_.c:72
+#: ../../printerdrake.pm_.c:87
msgid ""
"\n"
"Normally, CUPS is automatically configured according to your network "
@@ -6926,36 +7212,36 @@ msgid ""
"forget to restart CUPS afterwards (command: \"service cups restart\")."
msgstr ""
-#: ../../printerdrake.pm_.c:76
+#: ../../printerdrake.pm_.c:91
#, fuzzy
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresas turėtų būti 1.2.3.4 formato"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
+#: ../../printerdrake.pm_.c:95 ../../printerdrake.pm_.c:987
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Prievado numeris turi būti skaičius"
-#: ../../printerdrake.pm_.c:87
+#: ../../printerdrake.pm_.c:102
msgid "CUPS server IP"
msgstr "CUPS serverio IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
+#: ../../printerdrake.pm_.c:103 ../../printerdrake.pm_.c:1007
msgid "Port"
msgstr "Prievadas"
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:105
#, fuzzy
msgid "Automatic CUPS configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
-#: ../../printerdrake.pm_.c:2628
+#: ../../printerdrake.pm_.c:183 ../../printerdrake.pm_.c:192
+#: ../../printerdrake.pm_.c:2897 ../../printerdrake.pm_.c:3017
#, fuzzy
msgid "Add a new printer"
msgstr "Spausdintuvo nėra"
-#: ../../printerdrake.pm_.c:163
+#: ../../printerdrake.pm_.c:184
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6968,37 +7254,68 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
-#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
-#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
-#, fuzzy
-msgid "Local Printer"
-msgstr "Vietinis spausdintuvas"
+#: ../../printerdrake.pm_.c:193
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) and you Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
+msgstr ""
-#: ../../printerdrake.pm_.c:172
+#: ../../printerdrake.pm_.c:202
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
+"computer or connected directly to the network.\n"
"\n"
-"Please plug in your printer(s) on this computer and turn it/them on. Click "
-"on \"Next\" when you are ready, and on \"Cancel\" when you do not want to "
-"set up your printer(s) now.\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
"\n"
-"Note that some computers can crash during the printer auto-detection, turn "
-"off \"Auto-detect printers\" to do a printer installation without auto-"
-"detection. Use the \"Expert Mode\" of printerdrake when you want to set up "
-"printing on a remote printer if printerdrake does not list it automatically."
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
+"want to set up your printer(s) now."
msgstr ""
-#: ../../printerdrake.pm_.c:181
+#: ../../printerdrake.pm_.c:213
#, fuzzy
-msgid "Auto-detect printers"
+msgid "Auto-detect printers connected to this machine"
msgstr "Nutolęs spausdintuvas"
-#: ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:215
+msgid "Auto-detect printers connected directly to the local network"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:218
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:245 ../../printerdrake.pm_.c:459
+#: ../../printerdrake.pm_.c:484
+#, fuzzy
+msgid "Local Printer"
+msgstr "Vietinis spausdintuvas"
+
+#: ../../printerdrake.pm_.c:246
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7012,53 +7329,50 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:218
-msgid "Auto-Detection of Printers"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:219
-msgid ""
-"Printerdrake is able to auto-detect your locally connected parallel and USB "
-"printers for you, but note that on some systems the auto-detection CAN "
-"FREEZE YOUR SYSTEM AND THIS CAN LEAD TO CORRUPTED FILE SYSTEMS! So do it ON "
-"YOUR OWN RISK!\n"
-"\n"
-"Do you really want to get your printers auto-detected?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
-#: ../../printerdrake.pm_.c:225
+#: ../../printerdrake.pm_.c:283 ../../printerdrake.pm_.c:474
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
#, fuzzy
-msgid "Do auto-detection"
+msgid "Printer auto-detection"
msgstr "Naudokite automatinį aptikimą"
-#: ../../printerdrake.pm_.c:223
-#, fuzzy
-msgid "Set up printer manually"
-msgstr "Nutolęs spausdintuvas"
+#: ../../printerdrake.pm_.c:305
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ""
-#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Patikrinti prievadus"
+#: ../../printerdrake.pm_.c:307
+#, fuzzy, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
-#: ../../printerdrake.pm_.c:252
+#: ../../printerdrake.pm_.c:313
#, fuzzy, c-format
msgid "Detected %s"
msgstr "aptiktas %s"
-#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
-#: ../../printerdrake.pm_.c:302
+#: ../../printerdrake.pm_.c:317 ../../printerdrake.pm_.c:348
+#: ../../printerdrake.pm_.c:367
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
-#: ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:319 ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:372
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:375
+#: ../../printerdrake.pm_.c:321
+#, fuzzy, c-format
+msgid "Network printer \"%s\", port %s"
+msgstr "Tinklo spausdintuvas (TCP/lizdas)"
+
+#: ../../printerdrake.pm_.c:323
+#, fuzzy, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "SMB/Windows 95/98/NT"
+
+#: ../../printerdrake.pm_.c:460
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7066,43 +7380,34 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:464
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Spausdintuvo įrenginio URI"
-#: ../../printerdrake.pm_.c:390
+#: ../../printerdrake.pm_.c:475
#, fuzzy
-msgid ""
-"No local printer found!\n"
-"\n"
+msgid "No printer found!"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:391
-msgid ""
-"Network printers can only be installed after the installation. Choose "
-"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:392
-msgid ""
-"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
-"\", and click \"Add a new printer\" again."
-msgstr ""
+#: ../../printerdrake.pm_.c:485
+#, fuzzy
+msgid "Available printers"
+msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:403
+#: ../../printerdrake.pm_.c:489
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:404
+#: ../../printerdrake.pm_.c:490
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:406
+#: ../../printerdrake.pm_.c:492
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7110,7 +7415,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:493
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7118,85 +7423,40 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:409
+#: ../../printerdrake.pm_.c:495
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:496
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../printerdrake.pm_.c:412
+#: ../../printerdrake.pm_.c:498
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:503
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Spausdintuvo įrenginio URI"
-#: ../../printerdrake.pm_.c:437
+#: ../../printerdrake.pm_.c:523
#, fuzzy
msgid "Manual configuration"
msgstr "Nustatymai"
-#: ../../printerdrake.pm_.c:463
-msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
-"2200?"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:480
-#, fuzzy
-msgid "Installing HPOJ package..."
-msgstr "Įdiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:485
-msgid "Checking device and configuring HPOJ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:504
-#, fuzzy
-msgid "Installing SANE packages..."
-msgstr "Įdiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:524
-#, fuzzy
-msgid "Installing mtools packages..."
-msgstr "Įdiegiamas paketas %s"
-
-#: ../../printerdrake.pm_.c:535
-msgid "Scanning on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:541
-msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:558
-#, fuzzy
-msgid "Making printer port available for CUPS..."
-msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-
-#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
-#: ../../printerdrake.pm_.c:1156
-#, fuzzy
-msgid "Reading printer database..."
-msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-
-#: ../../printerdrake.pm_.c:648
+#: ../../printerdrake.pm_.c:577
msgid "Remote lpd Printer Options"
msgstr "Nutolusio lpd spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:649
+#: ../../printerdrake.pm_.c:578
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7206,31 +7466,51 @@ msgstr ""
"nurodyti to serverio hosto vardą ir pavadinimą eilės, kurioje\n"
"bus talpinami darbai."
-#: ../../printerdrake.pm_.c:650
+#: ../../printerdrake.pm_.c:579
#, fuzzy
msgid "Remote host name"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:651
+#: ../../printerdrake.pm_.c:580
#, fuzzy
msgid "Remote printer name"
msgstr "Nutolęs spausdintuvas"
-#: ../../printerdrake.pm_.c:654
+#: ../../printerdrake.pm_.c:583
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:658
+#: ../../printerdrake.pm_.c:587
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nutolusio hosto vardas"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:609 ../../printerdrake.pm_.c:1119
+#, fuzzy, c-format
+msgid "Detected model: %s %s"
+msgstr "aptiktas %s"
+
+#: ../../printerdrake.pm_.c:683 ../../printerdrake.pm_.c:923
+#, fuzzy
+msgid "Scanning network..."
+msgstr "Išbandoma jungtis..."
+
+#: ../../printerdrake.pm_.c:692 ../../printerdrake.pm_.c:713
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ""
+
+#: ../../printerdrake.pm_.c:695 ../../printerdrake.pm_.c:716
+#, fuzzy, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "Išjungiamas tinklas"
+
+#: ../../printerdrake.pm_.c:736
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:737
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7243,35 +7523,46 @@ msgstr ""
"jo TCP/IP hosto vardo!) ir galbūt spausdinimo serverio IP adresą,\n"
"spausdintuvo share'o vardą, vartotojo vardą, slaptažodį ir darbo grupės vardą"
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:738
+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:739
msgid "SMB server host"
msgstr "SMB serverio hostas"
-#: ../../printerdrake.pm_.c:729
+#: ../../printerdrake.pm_.c:740
msgid "SMB server IP"
msgstr "SMB serverio IP"
-#: ../../printerdrake.pm_.c:730
+#: ../../printerdrake.pm_.c:741
msgid "Share name"
msgstr "Share'o vardas"
-#: ../../printerdrake.pm_.c:733
+#: ../../printerdrake.pm_.c:744
msgid "Workgroup"
msgstr "Darbo grupė"
-#: ../../printerdrake.pm_.c:740
+#: ../../printerdrake.pm_.c:746
+#, fuzzy
+msgid "Auto-detected"
+msgstr "Naudokite automatinį aptikimą"
+
+#: ../../printerdrake.pm_.c:757
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:744
+#: ../../printerdrake.pm_.c:761
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:749
+#: ../../printerdrake.pm_.c:767
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:750
+#: ../../printerdrake.pm_.c:768
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7295,7 +7586,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:760
+#: ../../printerdrake.pm_.c:778
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7304,7 +7595,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:763
+#: ../../printerdrake.pm_.c:781
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7312,11 +7603,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:825
+#: ../../printerdrake.pm_.c:853
msgid "NetWare Printer Options"
msgstr "NetWare spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:826
+#: ../../printerdrake.pm_.c:854
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7330,88 +7621,109 @@ msgstr ""
"spausdintuvui,\n"
"prie kurio nori prieiti, bei reikalingus vartotojo vardą ir slaptažodį."
-#: ../../printerdrake.pm_.c:827
+#: ../../printerdrake.pm_.c:855
msgid "Printer Server"
msgstr "Spausdinimo serveris"
-#: ../../printerdrake.pm_.c:828
+#: ../../printerdrake.pm_.c:856
msgid "Print Queue Name"
msgstr "Spausdinimo eilės pavadinimas"
-#: ../../printerdrake.pm_.c:833
+#: ../../printerdrake.pm_.c:861
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:837
+#: ../../printerdrake.pm_.c:865
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:876
+#: ../../printerdrake.pm_.c:932 ../../printerdrake.pm_.c:952
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:935 ../../printerdrake.pm_.c:955
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:975
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Lizdinio spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:877
+#: ../../printerdrake.pm_.c:977
+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 ""
+
+#: ../../printerdrake.pm_.c:978
#, fuzzy
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name of "
-"the printer and optionally the port number. On HP JetDirect servers the port "
-"number is usually 9100, on other servers it can vary. See the manual of your "
-"hardware."
+"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 ""
"Kad galėtum spausdinti į lizdinį spausdintuvą, turi pateikti\n"
"spausdintuvo hosto vardą ir, galbūt, prievado numerį."
-#: ../../printerdrake.pm_.c:878
+#: ../../printerdrake.pm_.c:983
#, fuzzy
-msgid "Printer host name"
+msgid "Printer host name or IP missing!"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:882
+#: ../../printerdrake.pm_.c:1005
#, fuzzy
-msgid "Printer host name missing!"
+msgid "Printer host name or IP"
msgstr "Spausdintuvo hosto vardas"
-#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
+#: ../../printerdrake.pm_.c:1054 ../../printerdrake.pm_.c:1056
msgid "Printer Device URI"
msgstr "Spausdintuvo įrenginio URI"
-#: ../../printerdrake.pm_.c:912
+#: ../../printerdrake.pm_.c:1055
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:927
+#: ../../printerdrake.pm_.c:1070
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1028
+#: ../../printerdrake.pm_.c:1402
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1029
+#: ../../printerdrake.pm_.c:1403
msgid "Name of printer"
msgstr "Spausdintuvo vardas"
-#: ../../printerdrake.pm_.c:1031
+#: ../../printerdrake.pm_.c:1405
msgid "Location"
msgstr "Vieta"
-#: ../../printerdrake.pm_.c:1045
+#: ../../printerdrake.pm_.c:1416 ../../printerdrake.pm_.c:1536
+#, fuzzy
+msgid "Reading printer database..."
+msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
+
+#: ../../printerdrake.pm_.c:1419
#, fuzzy
msgid "Preparing printer database..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../printerdrake.pm_.c:1136
+#: ../../printerdrake.pm_.c:1516
#, fuzzy
msgid "Your printer model"
msgstr "Nutolęs spausdintuvas"
-#: ../../printerdrake.pm_.c:1137
+#: ../../printerdrake.pm_.c:1517
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7426,28 +7738,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
+#: ../../printerdrake.pm_.c:1522 ../../printerdrake.pm_.c:1525
#, fuzzy
msgid "The model is correct"
msgstr "Ar taip teisinga?"
-#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
-#: ../../printerdrake.pm_.c:1147
+#: ../../printerdrake.pm_.c:1523 ../../printerdrake.pm_.c:1524
+#: ../../printerdrake.pm_.c:1527
#, fuzzy
msgid "Select model manually"
msgstr "Nutolęs spausdintuvas"
-#: ../../printerdrake.pm_.c:1163
+#: ../../printerdrake.pm_.c:1543
#, fuzzy
msgid "Printer model selection"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:1164
+#: ../../printerdrake.pm_.c:1544
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Kokio tipo yra tavo spausdintuvas?"
-#: ../../printerdrake.pm_.c:1165
+#: ../../printerdrake.pm_.c:1545
msgid ""
"\n"
"\n"
@@ -7456,18 +7768,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1168
+#: ../../printerdrake.pm_.c:1548
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1244
+#: ../../printerdrake.pm_.c:1624
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:1245
+#: ../../printerdrake.pm_.c:1625
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7477,12 +7789,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
+#: ../../printerdrake.pm_.c:1668 ../../printerdrake.pm_.c:1695
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Interneto konfigūravimas"
-#: ../../printerdrake.pm_.c:1289
+#: ../../printerdrake.pm_.c:1669
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7490,7 +7802,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1316
+#: ../../printerdrake.pm_.c:1696
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."
@@ -7503,7 +7815,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1532
+#: ../../printerdrake.pm_.c:1912
msgid ""
"Printer default settings\n"
"\n"
@@ -7513,34 +7825,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1541
+#: ../../printerdrake.pm_.c:1921
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1545
+#: ../../printerdrake.pm_.c:1925
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1550
+#: ../../printerdrake.pm_.c:1930
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1969
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ar tu nori išbandyti spausdinimą?"
-#: ../../printerdrake.pm_.c:1606
+#: ../../printerdrake.pm_.c:1986
#, fuzzy
msgid "Test pages"
msgstr "Patikrinti prievadus"
-#: ../../printerdrake.pm_.c:1607
+#: ../../printerdrake.pm_.c:1987
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7548,45 +7860,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1611
+#: ../../printerdrake.pm_.c:1991
#, fuzzy
msgid "No test pages"
msgstr "Taip, spausdinti abu bandomuosius puslapius"
-#: ../../printerdrake.pm_.c:1612
+#: ../../printerdrake.pm_.c:1992
#, fuzzy
msgid "Print"
msgstr "Spausdintuvas"
-#: ../../printerdrake.pm_.c:1614
+#: ../../printerdrake.pm_.c:1994
#, fuzzy
msgid "Standard test page"
msgstr "Standartinė"
-#: ../../printerdrake.pm_.c:1617
+#: ../../printerdrake.pm_.c:1997
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1620
+#: ../../printerdrake.pm_.c:2000
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1622
+#: ../../printerdrake.pm_.c:2002
#, fuzzy
msgid "Photo test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1626
+#: ../../printerdrake.pm_.c:2006
#, fuzzy
msgid "Do not print any test page"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
+#: ../../printerdrake.pm_.c:2014 ../../printerdrake.pm_.c:2166
msgid "Printing test page(s)..."
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:1659
+#: ../../printerdrake.pm_.c:2039
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7602,7 +7914,7 @@ msgstr ""
"\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:1663
+#: ../../printerdrake.pm_.c:2043
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7612,16 +7924,16 @@ msgstr ""
"Kol bus pradėta spausdinti, gali tekti palaukti.\n"
"Ar jis veikia teisingai?"
-#: ../../printerdrake.pm_.c:1670
+#: ../../printerdrake.pm_.c:2050
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2072 ../../printerdrake.pm_.c:3191
#, fuzzy
msgid "Raw printer"
msgstr "Spausdintuvo nėra"
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:2098
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7630,15 +7942,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:2100
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
-#: ../../printerdrake.pm_.c:1750
+#: ../../printerdrake.pm_.c:2103 ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2130
#, c-format
msgid ""
"\n"
@@ -7647,7 +7959,7 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:2106 ../../printerdrake.pm_.c:2146
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
@@ -7655,41 +7967,41 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1730
+#: ../../printerdrake.pm_.c:2110
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
+#: ../../printerdrake.pm_.c:2115 ../../printerdrake.pm_.c:2125
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
-#: ../../printerdrake.pm_.c:1757
+#: ../../printerdrake.pm_.c:2117 ../../printerdrake.pm_.c:2127
+#: ../../printerdrake.pm_.c:2137
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
+#: ../../printerdrake.pm_.c:2122 ../../printerdrake.pm_.c:2132
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:2135
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1759
+#: ../../printerdrake.pm_.c:2139
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7699,7 +8011,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1763
+#: ../../printerdrake.pm_.c:2143
#, c-format
msgid ""
"\n"
@@ -7708,47 +8020,47 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1773
+#: ../../printerdrake.pm_.c:2153
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Išjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1774
+#: ../../printerdrake.pm_.c:2154
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Išjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1776
+#: ../../printerdrake.pm_.c:2156
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Išjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1777
+#: ../../printerdrake.pm_.c:2157
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Išjungiamas tinklas"
-#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
-#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
-#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
-#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
-#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
-#: ../../standalone/drakfont_.c:1015
+#: ../../printerdrake.pm_.c:2160 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2164 ../../printerdrake.pm_.c:2165
+#: ../../printerdrake.pm_.c:3175 ../../standalone/drakTermServ_.c:248
+#: ../../standalone/drakbackup_.c:1485 ../../standalone/drakbackup_.c:3530
+#: ../../standalone/drakbug_.c:129 ../../standalone/drakfont_.c:705
+#: ../../standalone/drakfont_.c:1014
#, fuzzy
msgid "Close"
msgstr "Pelė"
-#: ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:2163
#, fuzzy
msgid "Print option list"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:1802
+#: ../../printerdrake.pm_.c:2182
#, c-format
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
-"the scanner when you have more than one) from the command line or with the "
+"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 "
+"scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
"\" menu. Call also \"man scanimage\" on the command line to get more "
@@ -7757,9 +8069,9 @@ msgid ""
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:2202
msgid ""
-"Your HP printer was configured automatically to give you access to the photo "
+"Your printer was configured automatically to give you access to the photo "
"card drives from your PC. Now you can access your photo cards using the "
"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
@@ -7770,19 +8082,19 @@ msgid ""
"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:2223 ../../printerdrake.pm_.c:2673
+#: ../../printerdrake.pm_.c:2945
#, fuzzy
msgid "Reading printer data..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
-#: ../../printerdrake.pm_.c:1925
+#: ../../printerdrake.pm_.c:2243 ../../printerdrake.pm_.c:2271
+#: ../../printerdrake.pm_.c:2306
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Interneto konfigūravimas"
-#: ../../printerdrake.pm_.c:1863
+#: ../../printerdrake.pm_.c:2244
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7792,51 +8104,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1866
+#: ../../printerdrake.pm_.c:2247
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1868
+#: ../../printerdrake.pm_.c:2249
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:2251
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1872
+#: ../../printerdrake.pm_.c:2253
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1873
+#: ../../printerdrake.pm_.c:2254
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1874
+#: ../../printerdrake.pm_.c:2255
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:2258
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
+#: ../../printerdrake.pm_.c:2259 ../../printerdrake.pm_.c:2276
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1891
+#: ../../printerdrake.pm_.c:2272
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7844,62 +8156,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:2280
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1904
+#: ../../printerdrake.pm_.c:2285
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1912
+#: ../../printerdrake.pm_.c:2293
#, fuzzy
msgid "New printer name"
msgstr "Spausdintuvo nėra"
-#: ../../printerdrake.pm_.c:1915
+#: ../../printerdrake.pm_.c:2296
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1926
+#: ../../printerdrake.pm_.c:2307
#, 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 ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:2316
#, fuzzy
msgid "Refreshing printer data..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
-#: ../../printerdrake.pm_.c:2026
+#: ../../printerdrake.pm_.c:2324 ../../printerdrake.pm_.c:2395
+#: ../../printerdrake.pm_.c:2407
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Nustatyti spausdintuvą"
-#: ../../printerdrake.pm_.c:1944
+#: ../../printerdrake.pm_.c:2325
#, fuzzy
msgid "Starting network..."
msgstr "Išbandoma jungtis..."
-#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
-#: ../../printerdrake.pm_.c:1984
+#: ../../printerdrake.pm_.c:2359 ../../printerdrake.pm_.c:2363
+#: ../../printerdrake.pm_.c:2365
#, fuzzy
msgid "Configure the network now"
msgstr "Nustatyti tinklą"
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2360
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitorius nenurodytas"
-#: ../../printerdrake.pm_.c:1980
+#: ../../printerdrake.pm_.c:2361
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 "
@@ -7907,12 +8219,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1983
+#: ../../printerdrake.pm_.c:2364
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Konfigūruojamas tinklas"
-#: ../../printerdrake.pm_.c:2016
+#: ../../printerdrake.pm_.c:2397
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7922,34 +8234,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2398
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 ""
-#: ../../printerdrake.pm_.c:2027
+#: ../../printerdrake.pm_.c:2408
#, fuzzy
msgid "Restarting printing system..."
msgstr "Kurią spausdinimo sistemą nori naudoti?"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "high"
msgstr "Aukštas"
-#: ../../printerdrake.pm_.c:2065
+#: ../../printerdrake.pm_.c:2446
#, fuzzy
msgid "paranoid"
msgstr "Paranojiškas"
-#: ../../printerdrake.pm_.c:2066
+#: ../../printerdrake.pm_.c:2447
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2067
+#: ../../printerdrake.pm_.c:2448
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7964,12 +8276,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2099
+#: ../../printerdrake.pm_.c:2480
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Kurią spausdinimo sistemą nori naudoti?"
-#: ../../printerdrake.pm_.c:2100
+#: ../../printerdrake.pm_.c:2481
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7983,69 +8295,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
-#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
-#: ../../printerdrake.pm_.c:2352
+#: ../../printerdrake.pm_.c:2504 ../../printerdrake.pm_.c:2544
+#: ../../printerdrake.pm_.c:2581 ../../printerdrake.pm_.c:2621
+#: ../../printerdrake.pm_.c:2733
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2167
+#: ../../printerdrake.pm_.c:2548
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2204
+#: ../../printerdrake.pm_.c:2585
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2276
+#: ../../printerdrake.pm_.c:2657
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Pasirink spausdintuvo jungtį"
-#: ../../printerdrake.pm_.c:2277
+#: ../../printerdrake.pm_.c:2658
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kurią spausdinimo sistemą nori naudoti?"
-#: ../../printerdrake.pm_.c:2310
+#: ../../printerdrake.pm_.c:2691
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Nustatyti spausdintuvą"
-#: ../../printerdrake.pm_.c:2323
+#: ../../printerdrake.pm_.c:2704
#, fuzzy
msgid "Installing Foomatic..."
msgstr "Įdiegiamas paketas %s"
-#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
-#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
+#: ../../printerdrake.pm_.c:2769 ../../printerdrake.pm_.c:2808
+#: ../../printerdrake.pm_.c:3192 ../../printerdrake.pm_.c:3262
msgid "Printer options"
msgstr "Spausdintuvo nuostatos"
-#: ../../printerdrake.pm_.c:2389
+#: ../../printerdrake.pm_.c:2778
#, fuzzy
msgid "Preparing PrinterDrake..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
+#: ../../printerdrake.pm_.c:2795 ../../printerdrake.pm_.c:3349
#, fuzzy
msgid "Configuring applications..."
msgstr "Nustatyti spausdintuvą"
-#: ../../printerdrake.pm_.c:2426
+#: ../../printerdrake.pm_.c:2815
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Ar nori nustatyti spausdintuvą?"
-#: ../../printerdrake.pm_.c:2438
+#: ../../printerdrake.pm_.c:2827
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2486
+#: ../../printerdrake.pm_.c:2875
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2490
+#: ../../printerdrake.pm_.c:2879
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8056,7 +8368,7 @@ msgstr ""
"Čia yra šios spausdinimo eilės.\n"
"Tu gali čia pridėti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2491
+#: ../../printerdrake.pm_.c:2880
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8066,142 +8378,138 @@ msgstr ""
"Čia yra šios spausdinimo eilės.\n"
"Tu gali čia pridėti daugiau arba pakeisti esamas."
-#: ../../printerdrake.pm_.c:2517
+#: ../../printerdrake.pm_.c:2906
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2535
+#: ../../printerdrake.pm_.c:2924
#, fuzzy
msgid "Change the printing system"
msgstr "Nustatyti tinklą"
-#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
+#: ../../printerdrake.pm_.c:2929 ../../standalone/drakconnect_.c:277
#, fuzzy
msgid "Normal Mode"
msgstr "Normali"
-#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Išeiti"
-
-#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
-#: ../../printerdrake.pm_.c:2955
+#: ../../printerdrake.pm_.c:3085 ../../printerdrake.pm_.c:3135
+#: ../../printerdrake.pm_.c:3343
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Ar tu nori išbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2782
+#: ../../printerdrake.pm_.c:3170
#, fuzzy
msgid "Modify printer configuration"
msgstr "Modemo Nustatymai"
-#: ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:3172
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Ar tu nori išbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2788
+#: ../../printerdrake.pm_.c:3176
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
+#: ../../printerdrake.pm_.c:3181 ../../printerdrake.pm_.c:3236
#, fuzzy
msgid "Printer connection type"
msgstr "Interneto jungties dalinimas"
-#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
+#: ../../printerdrake.pm_.c:3182 ../../printerdrake.pm_.c:3240
#, fuzzy
msgid "Printer name, description, location"
msgstr "Spausdintuvo jungtis"
-#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
+#: ../../printerdrake.pm_.c:3184 ../../printerdrake.pm_.c:3255
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
+#: ../../printerdrake.pm_.c:3185 ../../printerdrake.pm_.c:3256
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
+#: ../../printerdrake.pm_.c:3194 ../../printerdrake.pm_.c:3266
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
+#: ../../printerdrake.pm_.c:3196 ../../printerdrake.pm_.c:3271
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
+#: ../../printerdrake.pm_.c:3197 ../../printerdrake.pm_.c:3280
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
+#: ../../printerdrake.pm_.c:3198 ../../printerdrake.pm_.c:3289
#, fuzzy
msgid "Print test pages"
msgstr "Spausdinamas bandomasis puslapis..."
-#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
+#: ../../printerdrake.pm_.c:3199 ../../printerdrake.pm_.c:3291
#, fuzzy
msgid "Know how to use this printer"
msgstr "Ar tu nori išbandyti nustatymus?"
-#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
+#: ../../printerdrake.pm_.c:3201 ../../printerdrake.pm_.c:3293
#, fuzzy
msgid "Remove printer"
msgstr "Nutolęs spausdintuvas"
-#: ../../printerdrake.pm_.c:2857
+#: ../../printerdrake.pm_.c:3245
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../printerdrake.pm_.c:2881
+#: ../../printerdrake.pm_.c:3269
#, fuzzy
msgid "Default printer"
msgstr "Vietinis spausdintuvas"
-#: ../../printerdrake.pm_.c:2882
+#: ../../printerdrake.pm_.c:3270
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
+#: ../../printerdrake.pm_.c:3274 ../../printerdrake.pm_.c:3277
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:3275
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:3278
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
+#: ../../printerdrake.pm_.c:3283 ../../printerdrake.pm_.c:3286
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2896
+#: ../../printerdrake.pm_.c:3284
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2899
+#: ../../printerdrake.pm_.c:3287
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2907
+#: ../../printerdrake.pm_.c:3295
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ar tu nori iš naujo paleisti tinklą"
-#: ../../printerdrake.pm_.c:2909
+#: ../../printerdrake.pm_.c:3297
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
@@ -8253,8 +8561,8 @@ msgstr ""
#: ../../proxy.pm_.c:65
#, fuzzy
-msgid "Url should begin with 'ftp:'"
-msgstr "Proxy turėtų būti ftp://..."
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy turėtų būti http://..."
#: ../../proxy.pm_.c:79
msgid ""
@@ -8305,43 +8613,6 @@ msgstr "mkraid nepavyko (gal būt trūksta raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nėra pakankamai sričių %d lygio RAID\n"
-#: ../../security/msec.pm_.c:144
-#, fuzzy
-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 ""
-"Šiame lygyje reikia elgtis atsargiai. Tai leidžia lengviau naudoti sistemą,\n"
-"bet labai jautriai: ji turėtų nebūti naudojama kompiuteriuose,\n"
-"sujungtais su kitais arba prie Interneto. Čia nėra slaptažodžių."
-
-#: ../../security/msec.pm_.c:150
-#, fuzzy
-msgid ""
-"With this security level, the use of this system as a server becomes "
-"possible.\n"
-" The security is now high enough to use the system as a "
-"server which can accept\n"
-" connections from many clients. Note: if your machine is only "
-"a client on the Internet, you should choose a lower level."
-msgstr ""
-"Su šiuo saugumo lygiu sistemą jau galima naudoti kaip serverį. Saugumas\n"
-"yra pakankamai aukštas, kad sistemą būtų galima naudoti serveriui, kuris "
-"priima\n"
-"prisijungimus iš daugybės klientų."
-
-#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
-#, fuzzy
-msgid "Advanced Options"
-msgstr "LAN Konfiguravimas"
-
-#: ../../security/msec.pm_.c:199
-#, fuzzy
-msgid "Basic Options"
-msgstr "Pasirinktys"
-
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8639,7 +8910,7 @@ msgstr "Internetas"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1669
#, fuzzy
msgid "System"
msgstr "Sistemos režimas"
@@ -8764,7 +9035,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
-#: ../../standalone/drakbug_.c:49
+#: ../../standalone/drakbug_.c:69
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Prisijungti prie interneto"
@@ -8864,21 +9135,21 @@ msgstr ""
msgid "http://www.mandrakesoft.com/sales/contact"
msgstr ""
-#: ../../standalone.pm_.c:25
+#: ../../standalone.pm_.c:40
#, fuzzy
msgid "Installing packages..."
msgstr "Įdiegiamas paketas %s"
-#: ../../standalone/XFdrake_.c:131
+#: ../../standalone/XFdrake_.c:143
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Prašom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:135
+#: ../../standalone/XFdrake_.c:147
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Prašom iš naujo paleisti %s, kad pakeitimai būtų aktyvuoti"
-#: ../../standalone/diskdrake_.c:85
+#: ../../standalone/diskdrake_.c:81
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -8886,177 +9157,177 @@ msgstr ""
"Aš negaliu perskaityti tavo skirsnių lentelės, ji man pernelyg sugadinta :(\n"
"Pabandysiu išvalyti blogus skirsnius"
-#: ../../standalone/drakTermServ_.c:189
+#: ../../standalone/drakTermServ_.c:188
#, fuzzy
msgid "Mandrake Terminal Server Configuration"
msgstr "Interneto konfigūravimas"
-#: ../../standalone/drakTermServ_.c:204
+#: ../../standalone/drakTermServ_.c:203
#, fuzzy
msgid "Enable Server"
msgstr "Serveris, Duomenų bazių"
-#: ../../standalone/drakTermServ_.c:211
+#: ../../standalone/drakTermServ_.c:210
#, fuzzy
msgid "Disable Server"
msgstr "Serveris, Duomenų bazių"
-#: ../../standalone/drakTermServ_.c:219
+#: ../../standalone/drakTermServ_.c:218
#, fuzzy
msgid "Start Server"
msgstr "NIS serveris"
-#: ../../standalone/drakTermServ_.c:226
+#: ../../standalone/drakTermServ_.c:225
#, fuzzy
msgid "Stop Server"
msgstr "NIS serveris"
-#: ../../standalone/drakTermServ_.c:234
+#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:236
+#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
msgstr ""
-#: ../../standalone/drakTermServ_.c:240
+#: ../../standalone/drakTermServ_.c:239
#, fuzzy
msgid "Add/Del Users"
msgstr "Pridėti vartotoją"
-#: ../../standalone/drakTermServ_.c:242
+#: ../../standalone/drakTermServ_.c:241
#, fuzzy
msgid "Add/Del Clients"
msgstr "DHCP klientas"
-#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
-#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
-#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
-#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
-#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
-#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3315 ../../standalone/drakbackup_.c:3341
+#: ../../standalone/drakbackup_.c:3368 ../../standalone/drakbackup_.c:3395
+#: ../../standalone/drakbackup_.c:3434 ../../standalone/drakbackup_.c:3455
+#: ../../standalone/drakbackup_.c:3482 ../../standalone/drakbackup_.c:3508
+#: ../../standalone/drakbackup_.c:3533 ../../standalone/drakfont_.c:700
#, fuzzy
msgid "Help"
msgstr "/Pagalba"
-#: ../../standalone/drakTermServ_.c:434
+#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
-#: ../../standalone/drakTermServ_.c:436
+#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
msgstr ""
-#: ../../standalone/drakTermServ_.c:505
+#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
msgstr ""
-#: ../../standalone/drakTermServ_.c:519
+#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:522
+#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:533
+#: ../../standalone/drakTermServ_.c:535
#, fuzzy
msgid "No nic selected!"
msgstr "Nepajungtas"
-#: ../../standalone/drakTermServ_.c:536
+#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:550
+#: ../../standalone/drakTermServ_.c:552
#, fuzzy
msgid "<-- Delete"
msgstr "Ištrinti"
-#: ../../standalone/drakTermServ_.c:557
+#: ../../standalone/drakTermServ_.c:559
#, fuzzy
msgid "Delete All NBIs"
msgstr "Pasirink bylą"
-#: ../../standalone/drakTermServ_.c:619
+#: ../../standalone/drakTermServ_.c:621
#, fuzzy
msgid "Add User -->"
msgstr "Pridėti vartotoją"
-#: ../../standalone/drakTermServ_.c:627
+#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:701
+#: ../../standalone/drakTermServ_.c:703
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:733
+#: ../../standalone/drakTermServ_.c:735
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klientas"
-#: ../../standalone/drakTermServ_.c:739
+#: ../../standalone/drakTermServ_.c:741
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigūruojama..."
-#: ../../standalone/drakTermServ_.c:886
+#: ../../standalone/drakTermServ_.c:888
#, fuzzy
msgid "Write Config"
msgstr "iš naujo nustatyti"
-#: ../../standalone/drakTermServ_.c:944
+#: ../../standalone/drakTermServ_.c:946
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Įdėk diskelį į kaupiklį %s"
-#: ../../standalone/drakTermServ_.c:948
+#: ../../standalone/drakTermServ_.c:950
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:950
+#: ../../standalone/drakTermServ_.c:952
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:953
+#: ../../standalone/drakTermServ_.c:955
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neprieinamas nė vienas diskelių kaupiklis"
-#: ../../standalone/drakTermServ_.c:962
+#: ../../standalone/drakTermServ_.c:964
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:966
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:983
+#: ../../standalone/drakTermServ_.c:985
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:45
+#: ../../standalone/drakautoinst_.c:43
#, fuzzy
msgid "Error!"
msgstr "Klaida"
-#: ../../standalone/drakautoinst_.c:46
+#: ../../standalone/drakautoinst_.c:44
#, c-format
msgid "I can't find needed image file `%s'."
msgstr ""
-#: ../../standalone/drakautoinst_.c:48
+#: ../../standalone/drakautoinst_.c:46
#, fuzzy
msgid "Auto Install Configurator"
msgstr "Konfigūracija po įdiegimo"
-#: ../../standalone/drakautoinst_.c:49
+#: ../../standalone/drakautoinst_.c:47
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9071,23 +9342,23 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:71
+#: ../../standalone/drakautoinst_.c:69
#, fuzzy
msgid "Automatic Steps Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: ../../standalone/drakautoinst_.c:72
+#: ../../standalone/drakautoinst_.c:70
msgid ""
"Please choose for each step whether it will replay like your install, or it "
"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:83
+#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
#, fuzzy
msgid "Creating auto install floppy"
msgstr "Kuriamas automatinio įdiegimo diskelis"
-#: ../../standalone/drakautoinst_.c:145
+#: ../../standalone/drakautoinst_.c:144
msgid ""
"\n"
"Welcome.\n"
@@ -9095,40 +9366,53 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
-#: ../../standalone/scannerdrake_.c:106
+#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:548
+#: ../../standalone/scannerdrake_.c:105
msgid "Congratulations!"
msgstr "Sveikiname!"
-#: ../../standalone/drakautoinst_.c:241
+#: ../../standalone/drakautoinst_.c:240
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:279
+#: ../../standalone/drakautoinst_.c:278
#, fuzzy
msgid "Auto Install"
msgstr "Įdiegti"
-#: ../../standalone/drakautoinst_.c:349
+#: ../../standalone/drakautoinst_.c:348
#, fuzzy
msgid "Add an item"
msgstr "Pridėti vartotoją"
-#: ../../standalone/drakautoinst_.c:356
+#: ../../standalone/drakautoinst_.c:355
#, fuzzy
msgid "Remove the last item"
msgstr "Sužymima loopback byla %s"
-#: ../../standalone/drakbackup_.c:599
+#: ../../standalone/drakbackup_.c:625
+msgid "Cron not available yet as non-root"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:731
+msgid "WARNING"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:732
+#, fuzzy
+msgid "FATAL"
+msgstr "FAT"
+
+#: ../../standalone/drakbackup_.c:744
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:600
+#: ../../standalone/drakbackup_.c:745
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9136,7 +9420,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:749
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9144,34 +9428,98 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
-msgid "total progess"
+#: ../../standalone/drakbackup_.c:770 ../../standalone/drakbackup_.c:840
+#: ../../standalone/drakbackup_.c:894
+#, fuzzy
+msgid "Total progess"
+msgstr "Patikrinti prievadus"
+
+#: ../../standalone/drakbackup_.c:822
+#, c-format
+msgid ""
+"%s exists, delete?\n"
+"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:831
+msgid "This may take a moment to generate the keys."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:838
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:865
+#, c-format
+msgid ""
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"without being prompted for a password."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:908
+msgid "WebDAV remote site already in sync!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:912
+msgid "WebDAV transfer failed!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:934
+msgid "No CDR/DVDR in drive!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:938
+msgid "Does not appear to be recordable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:942
+msgid "Not erasable media!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:981
+msgid "This may take a moment to erase the media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1045
+msgid "Permission problem accessing CD."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1144 ../../standalone/drakbackup_.c:1193
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:1194 ../../standalone/drakbackup_.c:1261
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:808
+#: ../../standalone/drakbackup_.c:1206
#, fuzzy
msgid "Backup User files..."
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:809
+#: ../../standalone/drakbackup_.c:1207
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:857
+#: ../../standalone/drakbackup_.c:1260
#, fuzzy
msgid "Backup Other files..."
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#: ../../standalone/drakbackup_.c:1266
+#, fuzzy
+msgid "No changes to backup!"
+msgstr "Bloga atsarginė byla"
+
+#: ../../standalone/drakbackup_.c:1282 ../../standalone/drakbackup_.c:1305
#, c-format
msgid ""
"\n"
@@ -9179,740 +9527,803 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:880
+#: ../../standalone/drakbackup_.c:1289
#, c-format
msgid ""
"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:883
+#: ../../standalone/drakbackup_.c:1292
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1310
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:1315
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:914
+#: ../../standalone/drakbackup_.c:1324
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Klaida skaitant bylą %s"
-#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
-#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
+#: ../../standalone/drakbackup_.c:1346
+msgid "Can't create catalog!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1459 ../../standalone/drakbackup_.c:1470
+#: ../../standalone/drakbackup_.c:1481 ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketų grupių pasirinkimas"
-#: ../../standalone/drakbackup_.c:1038
+#: ../../standalone/drakbackup_.c:1486
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078
+#: ../../standalone/drakbackup_.c:1525
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1079
+#: ../../standalone/drakbackup_.c:1526
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1080
-msgid "Backup your System files. ( /etc directory )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1527
+#, fuzzy
+msgid "Backup your System files. (/etc directory)"
+msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:1081
+#: ../../standalone/drakbackup_.c:1528
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1082
+#: ../../standalone/drakbackup_.c:1529
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1083
+#: ../../standalone/drakbackup_.c:1530
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1100
+#: ../../standalone/drakbackup_.c:1547
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-#: ../../standalone/drakbackup_.c:1127
+#: ../../standalone/drakbackup_.c:1574
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
+#: ../../standalone/drakbackup_.c:1575 ../../standalone/drakbackup_.c:1599
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
+#: ../../standalone/drakbackup_.c:1597 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Pašalinti eilę"
-#: ../../standalone/drakbackup_.c:1188
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Išmesti Windows(TM)"
-#: ../../standalone/drakbackup_.c:1227
+#: ../../standalone/drakbackup_.c:1674
#, fuzzy
msgid "Users"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1700
#, fuzzy
msgid "Use network connection to backup"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:1264
+#: ../../standalone/drakbackup_.c:1706
+msgid "Use Expect for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1707
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1708
+msgid ""
+" Transfer \n"
+"Now"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1709
+msgid "Keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1713
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Prašom išbandyti pelę"
-#: ../../standalone/drakbackup_.c:1269
+#: ../../standalone/drakbackup_.c:1718
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1274
+#: ../../standalone/drakbackup_.c:1723
#, fuzzy
msgid "Please enter your login"
msgstr "Prašom bandyti vėl"
-#: ../../standalone/drakbackup_.c:1279
+#: ../../standalone/drakbackup_.c:1728
#, fuzzy
msgid "Please enter your password"
msgstr "Prašom bandyti vėl"
-#: ../../standalone/drakbackup_.c:1285
+#: ../../standalone/drakbackup_.c:1734
#, fuzzy
msgid "Remember this password"
msgstr "Jokio slaptažodžio"
-#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
+#: ../../standalone/drakbackup_.c:1745
+msgid "Need hostname, username and password!"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1841
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
+#: ../../standalone/drakbackup_.c:1844
+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:1849
#, fuzzy
-msgid "Please choose your CD space"
+msgid "Please choose your CD/DVD media size"
msgstr "Prašom pasirinkti klaviatūros išdėstymą."
-#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
+#: ../../standalone/drakbackup_.c:1855
+#, fuzzy
+msgid "Please check for multisession CD"
+msgstr "Prašom spragtelėti ant skirsnio"
+
+#: ../../standalone/drakbackup_.c:1861
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prašom spragtelėti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
-msgid "Please check if you want to erase your CDRW before"
+#: ../../standalone/drakbackup_.c:1867
+#, fuzzy
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr "Prašom spragtelėti ant skirsnio"
+
+#: ../../standalone/drakbackup_.c:1868
+msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1382
+#: ../../standalone/drakbackup_.c:1874
#, fuzzy
-msgid ""
-"Please check if you want to include\n"
-" install boot on your CD."
-msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
+msgid "Please check if you are using a DVDR device"
+msgstr "Prašom spragtelėti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1388
+#: ../../standalone/drakbackup_.c:1880
+#, fuzzy
+msgid "Please check if you are using a DVDRAM device"
+msgstr "Prašom spragtelėti ant skirsnio"
+
+#: ../../standalone/drakbackup_.c:1893
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1437
+#: ../../standalone/drakbackup_.c:1926
+#, fuzzy
+msgid "No CD device defined!"
+msgstr "Pasirink bylą"
+
+#: ../../standalone/drakbackup_.c:1974
#, fuzzy
msgid "Use tape to backup"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:1440
+#: ../../standalone/drakbackup_.c:1977
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1446
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy
+msgid "Please check if you want to use the non-rewinding device."
+msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
+
+#: ../../standalone/drakbackup_.c:1989
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
-#: ../../standalone/drakbackup_.c:2381
+#: ../../standalone/drakbackup_.c:1995
+#, fuzzy
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
+
+#: ../../standalone/drakbackup_.c:2001 ../../standalone/drakbackup_.c:2074
+#: ../../standalone/drakbackup_.c:3025
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1497
+#: ../../standalone/drakbackup_.c:2066
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Prašom išbandyti pelę"
-#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
+#: ../../standalone/drakbackup_.c:2080 ../../standalone/drakbackup_.c:3031
#, fuzzy
msgid "Use quota for backup files."
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:1580
+#: ../../standalone/drakbackup_.c:2146
#, fuzzy
msgid "Network"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakbackup_.c:1585
+#: ../../standalone/drakbackup_.c:2151
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1590
+#: ../../standalone/drakbackup_.c:2156
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1595
+#: ../../standalone/drakbackup_.c:2161
#, fuzzy
msgid "Tape"
msgstr "Rūšis"
-#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2175 ../../standalone/drakbackup_.c:2179
+#: ../../standalone/drakbackup_.c:2183
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2176 ../../standalone/drakbackup_.c:2180
+#: ../../standalone/drakbackup_.c:2183
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2177 ../../standalone/drakbackup_.c:2181
+#: ../../standalone/drakbackup_.c:2183
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:2178 ../../standalone/drakbackup_.c:2182
+#: ../../standalone/drakbackup_.c:2183
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:2196
#, fuzzy
msgid "Use daemon"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:2201
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:2207
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Prašom pasirinkti kalbą, kurią naudosi."
-#: ../../standalone/drakbackup_.c:1648
+#: ../../standalone/drakbackup_.c:2214
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:1706
+#: ../../standalone/drakbackup_.c:2251
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup_.c:2257
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2296
#, fuzzy
msgid "What"
msgstr "Palauk"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2301
#, fuzzy
msgid "Where"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:1758
+#: ../../standalone/drakbackup_.c:2306
#, fuzzy
msgid "When"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:1763
+#: ../../standalone/drakbackup_.c:2311
#, fuzzy
msgid "More Options"
msgstr "Modulio parinktys:"
-#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
+#: ../../standalone/drakbackup_.c:2330 ../../standalone/drakbackup_.c:3873
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tinklo konfigūravimas"
-#: ../../standalone/drakbackup_.c:1800
+#: ../../standalone/drakbackup_.c:2348
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-#: ../../standalone/drakbackup_.c:1802
+#: ../../standalone/drakbackup_.c:2350
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1813
+#: ../../standalone/drakbackup_.c:2360
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1877
+#: ../../standalone/drakbackup_.c:2370
+msgid "on CDROM"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2378
+msgid "on Tape Device"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2421
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-#: ../../standalone/drakbackup_.c:1878
+#: ../../standalone/drakbackup_.c:2422
#, fuzzy
msgid "Backup system"
msgstr "Nustatyti bylų sistemas"
-#: ../../standalone/drakbackup_.c:1879
+#: ../../standalone/drakbackup_.c:2423
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup_.c:2426
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2508
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:2509
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1967
+#: ../../standalone/drakbackup_.c:2511
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1969
+#: ../../standalone/drakbackup_.c:2513
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1971
+#: ../../standalone/drakbackup_.c:2515
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1976
+#: ../../standalone/drakbackup_.c:2518
+msgid ""
+"\n"
+"- Delete hard drive tar files after backup.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2524
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1977
+#: ../../standalone/drakbackup_.c:2525
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:1978
+#: ../../standalone/drakbackup_.c:2526
#, fuzzy, c-format
msgid " on device : %s"
msgstr "Pelės įrenginys: %s\n"
-#: ../../standalone/drakbackup_.c:1979
+#: ../../standalone/drakbackup_.c:2527
+msgid " (multi-session)"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2528
#, c-format
msgid ""
"\n"
"- Save to Tape on device : %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1980
+#: ../../standalone/drakbackup_.c:2529
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1983
+#: ../../standalone/drakbackup_.c:2532
#, c-format
msgid ""
"\n"
"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1984
+#: ../../standalone/drakbackup_.c:2533
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1985
+#: ../../standalone/drakbackup_.c:2534
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Pasirinktys"
-#: ../../standalone/drakbackup_.c:1986
+#: ../../standalone/drakbackup_.c:2535
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1989
+#: ../../standalone/drakbackup_.c:2538
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1991
+#: ../../standalone/drakbackup_.c:2540
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1994
+#: ../../standalone/drakbackup_.c:2543
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:2544
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1996
+#: ../../standalone/drakbackup_.c:2545
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1997
+#: ../../standalone/drakbackup_.c:2546
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2547
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1999
+#: ../../standalone/drakbackup_.c:2548
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2000
+#: ../../standalone/drakbackup_.c:2549
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2001
+#: ../../standalone/drakbackup_.c:2550
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:2552
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:2558
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2113
+#: ../../standalone/drakbackup_.c:2725
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2115
+#: ../../standalone/drakbackup_.c:2727
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Prašom pasirinkti, prie kurios nuosekliosios jungties yra prijungtas tavo "
"modemas."
-#: ../../standalone/drakbackup_.c:2125
+#: ../../standalone/drakbackup_.c:2737
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2146
-msgid " All your selectionned data have been "
+#: ../../standalone/drakbackup_.c:2758
+msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2147
+#: ../../standalone/drakbackup_.c:2759
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2254
+#: ../../standalone/drakbackup_.c:2877
#, fuzzy
msgid " Restore Configuration "
msgstr "Tinklo konfigūravimas"
-#: ../../standalone/drakbackup_.c:2272
+#: ../../standalone/drakbackup_.c:2895
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2290
+#: ../../standalone/drakbackup_.c:2912
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2340
+#: ../../standalone/drakbackup_.c:2975
#, fuzzy
msgid "Backup the system files before:"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:2342
+#: ../../standalone/drakbackup_.c:2977
#, fuzzy
msgid "please choose the date to restore"
msgstr "Prašom pasirinkti savo pelės rūšį."
-#: ../../standalone/drakbackup_.c:2370
+#: ../../standalone/drakbackup_.c:3014
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:2373
+#: ../../standalone/drakbackup_.c:3017
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Prašom išbandyti pelę"
-#: ../../standalone/drakbackup_.c:2416
+#: ../../standalone/drakbackup_.c:3060
#, fuzzy
msgid "FTP Connection"
msgstr "LAN jungtis"
-#: ../../standalone/drakbackup_.c:2424
+#: ../../standalone/drakbackup_.c:3067
#, fuzzy
msgid "Secure Connection"
msgstr "Pasirink spausdintuvo jungtį"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:3093
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atstatyti iš diskelio"
-#: ../../standalone/drakbackup_.c:2453
+#: ../../standalone/drakbackup_.c:3095
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:3157
#, fuzzy
msgid "Select another media to restore from"
msgstr "Prašom pasirinkti savo pelės rūšį."
-#: ../../standalone/drakbackup_.c:2514
+#: ../../standalone/drakbackup_.c:3159
#, fuzzy
msgid "Other Media"
msgstr "Kitas"
-#: ../../standalone/drakbackup_.c:2520
+#: ../../standalone/drakbackup_.c:3164
#, fuzzy
msgid "Restore system"
msgstr "Įdiegti sistemą"
-#: ../../standalone/drakbackup_.c:2521
+#: ../../standalone/drakbackup_.c:3165
#, fuzzy
msgid "Restore Users"
msgstr "Atstatyti iš bylos"
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:3166
#, fuzzy
msgid "Restore Other"
msgstr "Atstatyti iš bylos"
-#: ../../standalone/drakbackup_.c:2524
-msgid "select path to restore (instead of / )"
-msgstr ""
+#: ../../standalone/drakbackup_.c:3168
+#, fuzzy
+msgid "select path to restore (instead of /)"
+msgstr "Prašom pasirinkti savo pelės rūšį."
-#: ../../standalone/drakbackup_.c:2528
+#: ../../standalone/drakbackup_.c:3172
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2529
+#: ../../standalone/drakbackup_.c:3174
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2586
+#: ../../standalone/drakbackup_.c:3232
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3241
#, fuzzy
msgid "Custom Restore"
msgstr "Prisitaikyti"
-#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
-#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
-#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
-#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3287 ../../standalone/drakbackup_.c:3320
+#: ../../standalone/drakbackup_.c:3346 ../../standalone/drakbackup_.c:3373
+#: ../../standalone/drakbackup_.c:3400 ../../standalone/drakbackup_.c:3460
+#: ../../standalone/drakbackup_.c:3487 ../../standalone/drakbackup_.c:3513
#, fuzzy
msgid "Previous"
msgstr "<- Ankstesnis"
-#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
-#: ../../standalone/logdrake_.c:224
+#: ../../standalone/drakbackup_.c:3291 ../../standalone/drakbackup_.c:3377
+#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Būsena:"
-#: ../../standalone/drakbackup_.c:2692
+#: ../../standalone/drakbackup_.c:3350
#, fuzzy
msgid "Build Backup"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
+#: ../../standalone/drakbackup_.c:3404 ../../standalone/drakbackup_.c:3974
#, fuzzy
msgid "Restore"
msgstr "Atstatyti iš bylos"
-#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
-#: ../../standalone/drakbackup_.c:2855
-#, fuzzy
-msgid "Next"
-msgstr "Tekstas"
-
-#: ../../standalone/drakbackup_.c:2888
+#: ../../standalone/drakbackup_.c:3553
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2909
+#: ../../standalone/drakbackup_.c:3574
msgid ""
-"Error durind sendmail\n"
+"Error during sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2933
+#: ../../standalone/drakbackup_.c:3598
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ruošiamasi įdiegti šiuos paketus"
-#: ../../standalone/drakbackup_.c:2956
+#: ../../standalone/drakbackup_.c:3621
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3644
#, fuzzy
msgid "Please select data to restore..."
msgstr "Prašom pasirinkti kalbą, kurią naudosi."
-#: ../../standalone/drakbackup_.c:3000
+#: ../../standalone/drakbackup_.c:3665
#, fuzzy
msgid "Please select media for backup..."
msgstr "Prašom pasirinkti kalbą, kurią naudosi."
-#: ../../standalone/drakbackup_.c:3022
+#: ../../standalone/drakbackup_.c:3687
#, fuzzy
msgid "Please select data to backup..."
msgstr "Prašom pasirinkti kalbą, kurią naudosi."
-#: ../../standalone/drakbackup_.c:3044
+#: ../../standalone/drakbackup_.c:3709
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:3065
+#: ../../standalone/drakbackup_.c:3730
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:3145
+#: ../../standalone/drakbackup_.c:3811
#, fuzzy
msgid "Backup system files"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:3147
+#: ../../standalone/drakbackup_.c:3813
#, fuzzy
msgid "Backup user files"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3815
#, fuzzy
msgid "Backup other files"
msgstr "Bloga atsarginė byla"
-#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3817 ../../standalone/drakbackup_.c:3850
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:3173
+#: ../../standalone/drakbackup_.c:3841
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:3177
+#: ../../standalone/drakbackup_.c:3845
#, fuzzy
msgid "Sending files..."
msgstr "Išsaugoti į bylą"
-#: ../../standalone/drakbackup_.c:3247
-msgid "Data list to include on CDROM."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3305
-#, fuzzy
-msgid "Please enter the cd writer speed"
-msgstr "Prašom išbandyti pelę"
-
-#: ../../standalone/drakbackup_.c:3323
-msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:3329
-#, fuzzy
-msgid "Please check if you want to include install boot on your CD."
-msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
-
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3931
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tinklo konfigūravimas"
-#: ../../standalone/drakbackup_.c:3419
+#: ../../standalone/drakbackup_.c:3936
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tinklo konfigūravimas"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup_.c:3956
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3445
+#: ../../standalone/drakbackup_.c:3961
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:3450
+#: ../../standalone/drakbackup_.c:3966
#, fuzzy
msgid "Backup Now"
msgstr "Nustatyti bylų sistemas"
-#: ../../standalone/drakbackup_.c:3480
+#: ../../standalone/drakbackup_.c:3996
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3529
+#: ../../standalone/drakbackup_.c:4045
msgid ""
"options description:\n"
"\n"
@@ -9923,7 +10334,7 @@ msgid ""
" If you check bzip2 compression, you will compress\n"
" your data better than gzip (about 2-10 %).\n"
" This option is not checked by default because\n"
-" this compression mode needs more time ( about 1000% more).\n"
+" this compression mode needs more time (about 1000% more).\n"
" \n"
" - The update mode:\n"
"\n"
@@ -9944,7 +10355,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3559
+#: ../../standalone/drakbackup_.c:4075
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9953,7 +10364,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3567
+#: ../../standalone/drakbackup_.c:4083
msgid ""
"options description:\n"
"\n"
@@ -9977,7 +10388,7 @@ msgid ""
"\n"
"\tThis option allows you to add more data to save.\n"
"\tWith the other backup it's not possible at the \n"
-"\tmoment to select select incremental backup.\t\t\n"
+"\tmoment to select incremental backup.\t\t\n"
" \n"
" - Incremental Backups:\n"
"\n"
@@ -9994,21 +10405,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3606
+#: ../../standalone/drakbackup_.c:4122
msgid ""
"restore description:\n"
" \n"
"Only the most recent date will be used ,because with incremental \n"
"backups it is necesarry to restore one by one each older backups.\n"
"\n"
-"So if you don't like to restore an user please unselect all his\n"
+"So if you don't like to restore a user please unselect all his\n"
"check box.\n"
"\n"
"Otherwise, you are able to select only one of this\n"
"\n"
" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerfull \n"
+"\tThe incremental backup is the most powerful \n"
"\toption to use backup, this option allow you \n"
"\tto backup all your data the first time, and \n"
"\tonly the changed after.\n"
@@ -10022,17 +10433,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
+#: ../../standalone/drakbackup_.c:4148 ../../standalone/drakbackup_.c:4225
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+#: ../../standalone/drakbackup_.c:4150 ../../standalone/drakbackup_.c:4227
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
+#: ../../standalone/drakbackup_.c:4152 ../../standalone/drakbackup_.c:4229
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"
@@ -10049,7 +10460,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3650
+#: ../../standalone/drakbackup_.c:4166
msgid ""
"Description:\n"
"\n"
@@ -10089,7 +10500,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3688
+#: ../../standalone/drakbackup_.c:4204
msgid ""
"options description:\n"
"\n"
@@ -10100,7 +10511,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3697
+#: ../../standalone/drakbackup_.c:4213
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10113,7 +10524,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3727
+#: ../../standalone/drakbackup_.c:4243
msgid ""
"Description:\n"
"\n"
@@ -10152,95 +10563,122 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakboot_.c:58
+#: ../../standalone/drakboot_.c:57
#, c-format
msgid "Installation of %s failed. The following error occured:"
msgstr "%s įdiegimas nepavyko. Įvyko tokia klaida:"
#: ../../standalone/drakbug_.c:40
+#, c-format
+msgid ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"This is free software and may be redistributed under the terms of the GNU "
+"GPL.\n"
+"\n"
+"usage: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:47
+msgid " --help - print this help message.\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:48
+msgid " --report - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:49
+msgid " --incident - program should be one of mandrake tools\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakbug_.c:50
+#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakbug_.c:51
+#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:85
+#: ../../standalone/drakbug_.c:150 ../../standalone/drakbug_.c:152
+#: ../../standalone/drakbug_.c:156
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolės įrankiai"
-#: ../../standalone/drakbug_.c:53
+#: ../../standalone/drakbug_.c:73
msgid "HardDrake"
msgstr ""
-#: ../../standalone/drakbug_.c:54
+#: ../../standalone/drakbug_.c:74
#, fuzzy
msgid "Mandrake Online"
msgstr "Prisijungti prie interneto"
-#: ../../standalone/drakbug_.c:55
+#: ../../standalone/drakbug_.c:75
#, fuzzy
msgid "Menudrake"
msgstr "privalomas"
-#: ../../standalone/drakbug_.c:56
+#: ../../standalone/drakbug_.c:76
#, fuzzy
msgid "Msec"
msgstr "Pelė"
-#: ../../standalone/drakbug_.c:57
+#: ../../standalone/drakbug_.c:77
#, fuzzy
msgid "Remote Control"
msgstr "Nutolęs spausdintuvas"
-#: ../../standalone/drakbug_.c:58
+#: ../../standalone/drakbug_.c:78
#, fuzzy
msgid "Software Manager"
msgstr "Share'o vardas"
-#: ../../standalone/drakbug_.c:59
+#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
msgstr ""
-#: ../../standalone/drakbug_.c:60
+#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
msgstr ""
-#: ../../standalone/drakbug_.c:61
+#: ../../standalone/drakbug_.c:81
#, fuzzy
msgid "Userdrake"
msgstr "Printerdrake"
-#: ../../standalone/drakbug_.c:62
+#: ../../standalone/drakbug_.c:82
#, fuzzy
msgid "Configuration Wizards"
msgstr "Tinklo Konfigūravimo Meistras"
-#: ../../standalone/drakbug_.c:71
+#: ../../standalone/drakbug_.c:96
#, fuzzy
msgid "Application:"
msgstr "Autentikacija"
-#: ../../standalone/drakbug_.c:75
+#: ../../standalone/drakbug_.c:97
#, fuzzy
msgid "Package: "
msgstr "Paketų grupių pasirinkimas"
-#: ../../standalone/drakbug_.c:79
+#: ../../standalone/drakbug_.c:98
msgid "Kernel:"
msgstr ""
-#: ../../standalone/drakbug_.c:83
+#: ../../standalone/drakbug_.c:99
#, fuzzy
msgid "Release: "
msgstr "Prašom palaukti"
-#: ../../standalone/drakbug_.c:87
+#: ../../standalone/drakbug_.c:114
msgid ""
"\n"
"\n"
@@ -10252,327 +10690,327 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:101
-#, fuzzy
-msgid "Not installed"
-msgstr "Išeiti iš įdiegimo"
-
-#: ../../standalone/drakbug_.c:110
+#: ../../standalone/drakbug_.c:135
#, fuzzy
msgid "Report"
msgstr "Prievadas"
-#: ../../standalone/drakbug_.c:123
+#: ../../standalone/drakbug_.c:165
+#, fuzzy
+msgid "Not installed"
+msgstr "Išeiti iš įdiegimo"
+
+#: ../../standalone/drakbug_.c:182
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:129
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: ../../standalone/drakconnect_.c:80
+#: ../../standalone/drakconnect_.c:79
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Tinklo konfigūravimas (%d adapteris)"
-#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#: ../../standalone/drakconnect_.c:86 ../../standalone/drakconnect_.c:594
msgid "Profile: "
msgstr "Profailas: "
-#: ../../standalone/drakconnect_.c:95
+#: ../../standalone/drakconnect_.c:94
msgid "Del profile..."
msgstr "Ištrinti profailą..."
-#: ../../standalone/drakconnect_.c:101
+#: ../../standalone/drakconnect_.c:100
msgid "Profile to delete:"
msgstr "Profailas ištrynimui:"
-#: ../../standalone/drakconnect_.c:129
+#: ../../standalone/drakconnect_.c:128
msgid "New profile..."
msgstr "Naujas profailas..."
-#: ../../standalone/drakconnect_.c:135
+#: ../../standalone/drakconnect_.c:134
msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
-#: ../../standalone/drakconnect_.c:161
+#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
msgstr "Kompiuterio vardas:"
-#: ../../standalone/drakconnect_.c:168
+#: ../../standalone/drakconnect_.c:167
msgid "Internet access"
msgstr "Priėjimas prie Interneto"
-#: ../../standalone/drakconnect_.c:181
+#: ../../standalone/drakconnect_.c:180
msgid "Type:"
msgstr "Tipas: "
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
msgstr "Šliuzas (Gateway):"
-#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
msgstr "Interfeisas:"
-#: ../../standalone/drakconnect_.c:195
+#: ../../standalone/drakconnect_.c:194
msgid "Status:"
msgstr "Būsena:"
-#: ../../standalone/drakconnect_.c:202
+#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
msgstr ""
-#: ../../standalone/drakconnect_.c:220
+#: ../../standalone/drakconnect_.c:219
msgid "Configure Internet Access..."
msgstr "Nustatyti Priėjimą prie Internet..."
-#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#: ../../standalone/drakconnect_.c:226 ../../standalone/drakconnect_.c:448
msgid "LAN configuration"
msgstr "LAN konfiguravimas"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Driver"
msgstr "Tvarkyklė"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
msgid "Interface"
msgstr "Interfeisas"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "Protocol"
msgstr "Protokolas"
-#: ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:231
#, fuzzy
msgid "State"
msgstr "Būsena:"
-#: ../../standalone/drakconnect_.c:244
+#: ../../standalone/drakconnect_.c:243
msgid "Configure Local Area Network..."
msgstr "Nustatyti Vietinį Tinklą..."
-#: ../../standalone/drakconnect_.c:256
+#: ../../standalone/drakconnect_.c:255
msgid "Click here to launch the wizard ->"
msgstr ""
-#: ../../standalone/drakconnect_.c:257
+#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
msgstr "Meistras..."
-#: ../../standalone/drakconnect_.c:283
+#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:302
+#: ../../standalone/drakconnect_.c:301
#, fuzzy
msgid "Please Wait... Applying the configuration"
msgstr "Nustatymų tikrinimas"
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
msgstr "Sujungimas..."
-#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Not connected"
msgstr "Nepajungtas"
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
msgid "Connect..."
msgstr "Sujungimas..."
-#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
#, fuzzy
msgid "Disconnect..."
msgstr "Sujungimas..."
-#: ../../standalone/drakconnect_.c:404
+#: ../../standalone/drakconnect_.c:403
msgid ""
"Warning, another Internet connection has been detected, maybe using your "
"network"
msgstr ""
-#: ../../standalone/drakconnect_.c:431
+#: ../../standalone/drakconnect_.c:430
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:453
+#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakconnect_.c:464
+#: ../../standalone/drakconnect_.c:463
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapteris %s: %s"
-#: ../../standalone/drakconnect_.c:470
+#: ../../standalone/drakconnect_.c:469
msgid "Boot Protocol"
msgstr "Įkrovos Protokolas"
-#: ../../standalone/drakconnect_.c:471
+#: ../../standalone/drakconnect_.c:470
msgid "Started on boot"
msgstr "Startavo įkrovos metu"
-#: ../../standalone/drakconnect_.c:472
+#: ../../standalone/drakconnect_.c:471
msgid "DHCP client"
msgstr "DHCP klientas"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "activate now"
msgstr "Aktyvus"
-#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#: ../../standalone/drakconnect_.c:496 ../../standalone/drakconnect_.c:499
#, fuzzy
msgid "deactivate now"
msgstr "Aktyvus"
-#: ../../standalone/drakconnect_.c:503
+#: ../../standalone/drakconnect_.c:502
msgid ""
"This interface has not been configured yet.\n"
"Launch the configuration wizard in the main window"
msgstr ""
-#: ../../standalone/drakconnect_.c:560
+#: ../../standalone/drakconnect_.c:559
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""
-#: ../../standalone/drakconnect_.c:584
+#: ../../standalone/drakconnect_.c:583
msgid "Internet connection configuration"
msgstr "Interneto jungties konfiguravimas"
-#: ../../standalone/drakconnect_.c:588
+#: ../../standalone/drakconnect_.c:587
msgid "Internet Connection Configuration"
msgstr "Interneto Jungties Konfiguravimas"
-#: ../../standalone/drakconnect_.c:597
+#: ../../standalone/drakconnect_.c:596
msgid "Connection type: "
msgstr "Jungties tipas: "
-#: ../../standalone/drakconnect_.c:603
+#: ../../standalone/drakconnect_.c:602
msgid "Parameters"
msgstr "Parametrai"
-#: ../../standalone/drakconnect_.c:621
+#: ../../standalone/drakconnect_.c:620
msgid "Gateway"
msgstr "Šliuzas (Gateway)"
-#: ../../standalone/drakconnect_.c:630
+#: ../../standalone/drakconnect_.c:629
msgid "Ethernet Card"
msgstr "Ethernet Korta"
-#: ../../standalone/drakconnect_.c:631
+#: ../../standalone/drakconnect_.c:630
msgid "DHCP Client"
msgstr "DHCP klientas"
-#: ../../standalone/drakfloppy_.c:64
+#: ../../standalone/drakfloppy_.c:63
msgid "usage: drakfloppy\n"
msgstr "naudojimas: drakfloppy\n"
-#: ../../standalone/drakfloppy_.c:68
+#: ../../standalone/drakfloppy_.c:67
msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
msgstr ""
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
msgstr "Modulio vardas"
-#: ../../standalone/drakfloppy_.c:69
+#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Dydis"
-#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
msgid "drakfloppy"
msgstr "drakfloppy"
-#: ../../standalone/drakfloppy_.c:91
+#: ../../standalone/drakfloppy_.c:90
msgid "boot disk creation"
msgstr "įkrovos diskelio sukūrimui"
-#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+#: ../../standalone/drakfloppy_.c:98 ../../standalone/drakfloppy_.c:111
msgid "default"
msgstr "įprastas"
-#: ../../standalone/drakfloppy_.c:115
+#: ../../standalone/drakfloppy_.c:114
#, c-format
msgid "DrakFloppy Error: %s"
msgstr "DrakFloppy klaida: %s"
-#: ../../standalone/drakfloppy_.c:126
+#: ../../standalone/drakfloppy_.c:125
msgid "kernel version"
msgstr "branduolio (kernel) versija"
-#: ../../standalone/drakfloppy_.c:132
+#: ../../standalone/drakfloppy_.c:131
msgid "General"
msgstr "Bendrai"
-#: ../../standalone/drakfloppy_.c:137
+#: ../../standalone/drakfloppy_.c:136
msgid "Expert Area"
msgstr "Experto sritis"
-#: ../../standalone/drakfloppy_.c:140
+#: ../../standalone/drakfloppy_.c:139
msgid "mkinitrd optional arguments"
msgstr "pasirinktini mkinitrd argumentai"
-#: ../../standalone/drakfloppy_.c:141
+#: ../../standalone/drakfloppy_.c:140
msgid "Add a module"
msgstr "Pridėti modulį"
-#: ../../standalone/drakfloppy_.c:161
+#: ../../standalone/drakfloppy_.c:160
msgid "force"
msgstr "per jėgą"
-#: ../../standalone/drakfloppy_.c:162
+#: ../../standalone/drakfloppy_.c:161
msgid "if needed"
msgstr "jeigu reikia"
-#: ../../standalone/drakfloppy_.c:163
+#: ../../standalone/drakfloppy_.c:162
msgid "omit scsi modules"
msgstr "praleisti SCSI modulius"
-#: ../../standalone/drakfloppy_.c:164
+#: ../../standalone/drakfloppy_.c:163
msgid "omit raid modules"
msgstr "praleisti RAID modulius"
-#: ../../standalone/drakfloppy_.c:200
+#: ../../standalone/drakfloppy_.c:199
msgid "Remove a module"
msgstr "Išmesti modulį"
-#: ../../standalone/drakfloppy_.c:222
+#: ../../standalone/drakfloppy_.c:221
msgid "Output"
msgstr "Išvedimas"
-#: ../../standalone/drakfloppy_.c:234
+#: ../../standalone/drakfloppy_.c:233
msgid "Build the disk"
msgstr "Sukurti diskelį"
-#: ../../standalone/drakfloppy_.c:422
+#: ../../standalone/drakfloppy_.c:421
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:427
+#: ../../standalone/drakfloppy_.c:426
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:429
+#: ../../standalone/drakfloppy_.c:428
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Uždrausti tinklą"
-#: ../../standalone/drakfloppy_.c:433
+#: ../../standalone/drakfloppy_.c:432
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -10580,105 +11018,105 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:231
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:234
+#: ../../standalone/drakfont_.c:233
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:258
+#: ../../standalone/drakfont_.c:257
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:261
+#: ../../standalone/drakfont_.c:260
#, fuzzy
msgid "no fonts found"
msgstr "%s nerastas"
-#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
-#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
-#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
-#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
+#: ../../standalone/drakfont_.c:269 ../../standalone/drakfont_.c:323
+#: ../../standalone/drakfont_.c:379 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:479 ../../standalone/drakfont_.c:506
+#: ../../standalone/drakfont_.c:520 ../../standalone/drakfont_.c:537
#, fuzzy
msgid "done"
msgstr "Atlikta"
-#: ../../standalone/drakfont_.c:276
+#: ../../standalone/drakfont_.c:275
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:322
+#: ../../standalone/drakfont_.c:321
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:326
+#: ../../standalone/drakfont_.c:325
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:349
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:378
+#: ../../standalone/drakfont_.c:377
#, fuzzy
msgid "Fonts copy"
msgstr "Sužymėti diskelį"
-#: ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:381
#, fuzzy
msgid "True Type fonts installation"
msgstr "Ruošiamas įdiegimas"
-#: ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:389
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:395
+#: ../../standalone/drakfont_.c:394
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
+#: ../../standalone/drakfont_.c:403 ../../standalone/drakfont_.c:429
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:409 ../../standalone/drakfont_.c:433
+#: ../../standalone/drakfont_.c:464
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
+#: ../../standalone/drakfont_.c:419 ../../standalone/drakfont_.c:442
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:453
+#: ../../standalone/drakfont_.c:452
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:460
+#: ../../standalone/drakfont_.c:459
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:471
+#: ../../standalone/drakfont_.c:470
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:474
+#: ../../standalone/drakfont_.c:473
#, fuzzy
msgid "Restart XFS"
msgstr "griežta"
-#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
+#: ../../standalone/drakfont_.c:518 ../../standalone/drakfont_.c:532
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:535
+#: ../../standalone/drakfont_.c:534
#, fuzzy
msgid "xfs restart"
msgstr "griežta"
-#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
+#: ../../standalone/drakfont_.c:542 ../../standalone/drakfont_.c:951
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10687,121 +11125,126 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:631
+#: ../../standalone/drakfont_.c:630
#, fuzzy
msgid "Fonts Importation"
msgstr "Sužymėti skirsnius"
-#: ../../standalone/drakfont_.c:661
+#: ../../standalone/drakfont_.c:660
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:669
+#: ../../standalone/drakfont_.c:668
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Išmetami RPM'ai"
-#: ../../standalone/drakfont_.c:688
+#: ../../standalone/drakfont_.c:679
+#, fuzzy
+msgid "Advanced Options"
+msgstr "LAN Konfiguravimas"
+
+#: ../../standalone/drakfont_.c:687
#, fuzzy
msgid "Font List"
msgstr "Prijungimo vieta"
-#: ../../standalone/drakfont_.c:910
+#: ../../standalone/drakfont_.c:909
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Pasirink skirsnius, kuriuos nori sužymėti"
-#: ../../standalone/drakfont_.c:919
+#: ../../standalone/drakfont_.c:918
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:926
+#: ../../standalone/drakfont_.c:925
#, fuzzy
msgid "StarOffice"
msgstr "Biuras"
-#: ../../standalone/drakfont_.c:933
+#: ../../standalone/drakfont_.c:932
#, fuzzy
msgid "Abiword"
msgstr "Nutraukti"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:939
#, fuzzy
msgid "Generic Printers"
msgstr "Spausdintuvas"
-#: ../../standalone/drakfont_.c:1017
+#: ../../standalone/drakfont_.c:1016
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:1064
+#: ../../standalone/drakfont_.c:1063
#, fuzzy
msgid "Install List"
msgstr "Įdiegti sistemą"
-#: ../../standalone/drakfont_.c:1107
+#: ../../standalone/drakfont_.c:1106
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:1114
+#: ../../standalone/drakfont_.c:1113
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:1175
+#: ../../standalone/drakfont_.c:1174
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:1179
+#: ../../standalone/drakfont_.c:1178
#, fuzzy
msgid "Selected All"
msgstr "Pasirink bylą"
-#: ../../standalone/drakfont_.c:1183
+#: ../../standalone/drakfont_.c:1182
#, fuzzy
msgid "Remove List"
msgstr "Nutolęs spausdintuvas"
-#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
+#: ../../standalone/drakfont_.c:1204 ../../standalone/drakfont_.c:1237
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:1208
+#: ../../standalone/drakfont_.c:1207
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokštė!"
-#: ../../standalone/drakfont_.c:1212
+#: ../../standalone/drakfont_.c:1211
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:1216
+#: ../../standalone/drakfont_.c:1215
#, fuzzy
msgid "Post Install"
msgstr "Įdiegti"
-#: ../../standalone/drakfont_.c:1241
+#: ../../standalone/drakfont_.c:1240
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Tavo sistemoje nerasta jokia tinklo plokštė!"
-#: ../../standalone/drakfont_.c:1245
+#: ../../standalone/drakfont_.c:1244
#, fuzzy
msgid "Post Uninstall"
msgstr "Išeiti iš įdiegimo"
-#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:42 ../../standalone/drakgw_.c:195
msgid "Internet Connection Sharing"
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:121
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:133
msgid "Internet Connection Sharing currently enabled"
msgstr "Interneto jungties dalinimas šiuo metu įjungtas"
-#: ../../standalone/drakgw_.c:136
+#: ../../standalone/drakgw_.c:134
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10813,33 +11256,33 @@ msgstr ""
"\n"
"Tai ką norėtum daryti?"
-#: ../../standalone/drakgw_.c:140
+#: ../../standalone/drakgw_.c:138
msgid "disable"
msgstr "išjungti"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "dismiss"
msgstr "nieko"
-#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:138 ../../standalone/drakgw_.c:163
msgid "reconfigure"
msgstr "iš naujo nustatyti"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:141
#, fuzzy
msgid "Disabling servers..."
msgstr "Ieškoma įranga..."
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:149
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Interneto jungties dalinimas šiuo metu išjungtas"
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:158
msgid "Internet Connection Sharing currently disabled"
msgstr "Interneto jungties dalinimas šiuo metu išjungtas"
-#: ../../standalone/drakgw_.c:161
+#: ../../standalone/drakgw_.c:159
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10851,20 +11294,20 @@ msgstr ""
"\n"
"Tai ką norėtum daryti?"
-#: ../../standalone/drakgw_.c:165
+#: ../../standalone/drakgw_.c:163
msgid "enable"
msgstr "įjungti"
-#: ../../standalone/drakgw_.c:172
+#: ../../standalone/drakgw_.c:170
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:177
+#: ../../standalone/drakgw_.c:175
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Interneto jungties dalinimas šiuo metu įjungtas"
-#: ../../standalone/drakgw_.c:198
+#: ../../standalone/drakgw_.c:196
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -10882,21 +11325,21 @@ msgstr ""
"\n"
"Ar norėtum sutvarkyti interneto jungties dalinimą?"
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:222
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:225
+#: ../../standalone/drakgw_.c:223
#, fuzzy, c-format
msgid "Interface %s"
msgstr "Interfeisas"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:231
msgid "No network adapter on your system!"
msgstr "Tavo sistemoje nerasta jokia tinklo plokštė!"
-#: ../../standalone/drakgw_.c:234
+#: ../../standalone/drakgw_.c:232
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10904,11 +11347,11 @@ msgstr ""
"Tavo sistemoje nerasta jokia tinklo plokštė. prašom paleisti įrangos "
"nustatymo įrankį."
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:238
msgid "Network interface"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakgw_.c:241
+#: ../../standalone/drakgw_.c:239
#, fuzzy, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10923,19 +11366,19 @@ msgstr ""
"\n"
"Ar norėtum sutvarkyti savo vietinį tinklą šiai plokštei?"
-#: ../../standalone/drakgw_.c:250
+#: ../../standalone/drakgw_.c:248
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Prašom pasirinkti, kuri tinklo plokštė bus prijungta prie vietinio tinklo."
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:266
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitorius nenurodytas"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:267
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10945,17 +11388,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:272
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: ../../standalone/drakgw_.c:275
+#: ../../standalone/drakgw_.c:273
#, fuzzy
msgid "Show current interface configuration"
msgstr "Modemo Nustatymai"
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:275
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10966,7 +11409,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:289
+#: ../../standalone/drakgw_.c:287
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10978,33 +11421,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:292
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:293
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS serverio IP"
-#: ../../standalone/drakgw_.c:296
+#: ../../standalone/drakgw_.c:294
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:303
+#: ../../standalone/drakgw_.c:301
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:314
+#: ../../standalone/drakgw_.c:312
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Rastas galimas LAN adreso konfliktas esamose %s nuostatose!\n"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:320
msgid "Firewalling configuration detected!"
msgstr "Aptikta ugniasienės konfigūracija!"
-#: ../../standalone/drakgw_.c:323
+#: ../../standalone/drakgw_.c:321
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11012,21 +11455,21 @@ msgstr ""
"Įspėjimas! Aptikta ugniasienės konfigūracija! Tau gali tekti kai ką "
"ištaisyti rankomis po įdiegimo."
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:328
msgid "Configuring..."
msgstr "Konfigūruojama..."
-#: ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:329
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Konfigūruojami skriptai, įdiegiamos programos, paleidžiami serveriai..."
-#: ../../standalone/drakgw_.c:367
+#: ../../standalone/drakgw_.c:365
#, c-format
msgid "Problems installing package %s"
msgstr "Yra problemų įdiegiant paketą %s"
-#: ../../standalone/drakgw_.c:551
+#: ../../standalone/drakgw_.c:549
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11036,7 +11479,7 @@ msgstr ""
"Tu gali dabar dalintis interneto jungtimi su kitais kompiuteriais vietiniame "
"tinkle, naudojant automatinę tinklo konfigūraciją (DHCP)."
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:566
#, fuzzy
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
@@ -11045,7 +11488,7 @@ msgstr ""
"\n"
"Tai ką norėtum daryti?"
-#: ../../standalone/drakgw_.c:569
+#: ../../standalone/drakgw_.c:567
#, fuzzy
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
@@ -11054,17 +11497,17 @@ msgstr ""
"\n"
"Tai ką norėtum daryti?"
-#: ../../standalone/drakgw_.c:570
+#: ../../standalone/drakgw_.c:568
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Interneto jungties dalinimas šiuo metu įjungtas"
-#: ../../standalone/drakgw_.c:575
+#: ../../standalone/drakgw_.c:573
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Interneto jungtis ir nustatymas"
-#: ../../standalone/drakgw_.c:582
+#: ../../standalone/drakgw_.c:580
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11074,21 +11517,13 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/drakxconf_.c:47
-#, fuzzy
-msgid "Control Center"
-msgstr "Prisijungti prie interneto"
-
-#: ../../standalone/drakxconf_.c:48
-msgid "Choose the tool you want to use"
-msgstr "Pasirink kurį įrankį norėtum naudoti"
-
-#: ../../standalone/drakxtv_.c:55
+#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
"\n"
"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv nor "
+"saa7134\n"
"module in \"/etc/modules\") nor installed xawtv, please send the\n"
"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
"with subject \"undetected TV card\".\n"
@@ -11097,108 +11532,112 @@ msgid ""
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadiečių (Kvebeko)"
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:66
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:73
+#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "France [SECAM]"
msgstr "Prancūzija"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "Ireland"
msgstr "Islandų"
-#: ../../standalone/drakxtv_.c:74
+#: ../../standalone/drakxtv_.c:68
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
#, fuzzy
msgid "Australia"
msgstr "nuoseklioji"
-#: ../../standalone/drakxtv_.c:75
+#: ../../standalone/drakxtv_.c:69
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:76
+#: ../../standalone/drakxtv_.c:70
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:77
+#: ../../standalone/drakxtv_.c:71
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:112
+#: ../../standalone/drakxtv_.c:72
+msgid "Australian Optus cable TV"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:107
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:114
+#: ../../standalone/drakxtv_.c:109
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:110
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:119
+#: ../../standalone/drakxtv_.c:114
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:127
+#: ../../standalone/drakxtv_.c:122
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:130
+#: ../../standalone/drakxtv_.c:125
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Įvyko klaida, įdiegiant paketus:"
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:134
+#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
@@ -11222,11 +11661,11 @@ msgstr ""
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "vartosena: keyboarddrake [--expert] [klaviatūra]\n"
-#: ../../standalone/keyboarddrake_.c:29
+#: ../../standalone/keyboarddrake_.c:32
msgid "Please, choose your keyboard layout."
msgstr "Prašom pasirinkti klaviatūros išdėstymą."
-#: ../../standalone/keyboarddrake_.c:36
+#: ../../standalone/keyboarddrake_.c:41
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Ar tu nori, kad BackSpace rašytų Delete konsolėje?"
@@ -11251,7 +11690,7 @@ msgstr "nepavyko paleisti gyvo atnaujinimo!!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:517
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -11364,148 +11803,149 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
-msgid "Mail/SMS alert"
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
+msgid "Mail alert"
msgstr ""
-#: ../../standalone/logdrake_.c:268
+#: ../../standalone/logdrake_.c:267
#, c-format
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:409
+#: ../../standalone/logdrake_.c:408
#, fuzzy
-msgid "Mail/SMS alert configuration"
+msgid "Mail alert configuration"
msgstr "LAN konfiguravimas"
-#: ../../standalone/logdrake_.c:410
+#: ../../standalone/logdrake_.c:409
msgid ""
-"Welcome to the mail/SMS configuration utility.\n"
+"Welcome to the mail configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:417
+#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
msgstr ""
-#: ../../standalone/logdrake_.c:418
+#: ../../standalone/logdrake_.c:417
#, fuzzy
msgid "Domain Name Resolver"
msgstr "Domeno vardas"
-#: ../../standalone/logdrake_.c:419
+#: ../../standalone/logdrake_.c:418
#, fuzzy
msgid "Ftp Server"
msgstr "NIS serveris"
-#: ../../standalone/logdrake_.c:420
+#: ../../standalone/logdrake_.c:419
#, fuzzy
msgid "Postfix Mail Server"
msgstr "Serveris, Duomenų bazių"
-#: ../../standalone/logdrake_.c:421
+#: ../../standalone/logdrake_.c:420
#, fuzzy
msgid "Samba Server"
msgstr "NIS serveris"
-#: ../../standalone/logdrake_.c:422
+#: ../../standalone/logdrake_.c:421
#, fuzzy
msgid "SSH Server"
msgstr "NIS serveris"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:422
#, fuzzy
msgid "Webmin Service"
msgstr "įrenginys"
-#: ../../standalone/logdrake_.c:424
+#: ../../standalone/logdrake_.c:423
#, fuzzy
msgid "Xinetd Service"
msgstr "Spausdinimo serveris"
-#: ../../standalone/logdrake_.c:431
+#: ../../standalone/logdrake_.c:430
#, fuzzy
msgid "service setting"
msgstr "įdomu"
-#: ../../standalone/logdrake_.c:432
+#: ../../standalone/logdrake_.c:431
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:445
+#: ../../standalone/logdrake_.c:443
#, fuzzy
msgid "load setting"
msgstr "sužymimas"
-#: ../../standalone/logdrake_.c:446
+#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:459
+#: ../../standalone/logdrake_.c:457
#, fuzzy
msgid "alert configuration"
msgstr "Nustatymai"
-#: ../../standalone/logdrake_.c:460
-msgid "Configure the way the system will alert you"
-msgstr ""
+#: ../../standalone/logdrake_.c:458
+#, fuzzy
+msgid "Please enter your email address below "
+msgstr "Prašom bandyti vėl"
-#: ../../standalone/logdrake_.c:503
+#: ../../standalone/logdrake_.c:499
msgid "Save as.."
msgstr "Užrašyti Kaip..."
-#: ../../standalone/mousedrake_.c:44
+#: ../../standalone/mousedrake_.c:43
msgid "Please, choose the type of your mouse."
msgstr "Prašom pasirinkti savo pelės rūšį."
-#: ../../standalone/mousedrake_.c:54
-msgid "no serial_usb found\n"
-msgstr "serial_usb nerasta\n"
-
-#: ../../standalone/mousedrake_.c:58
+#: ../../standalone/mousedrake_.c:57
msgid "Emulate third button?"
msgstr "Ar emuliuoti trečią klavišą?"
-#: ../../standalone/printerdrake_.c:49
+#: ../../standalone/printerdrake_.c:48
#, fuzzy
msgid "Reading printer data ..."
msgstr "Skaitoma CUPS tvarkyklių duomenų bazė"
-#: ../../standalone/scannerdrake_.c:42
+#: ../../standalone/scannerdrake_.c:41
#, fuzzy
msgid "Detecting devices ..."
msgstr "Ieškoma įranga..."
-#: ../../standalone/scannerdrake_.c:53
+#: ../../standalone/scannerdrake_.c:41
+msgid "Test ports"
+msgstr "Patikrinti prievadus"
+
+#: ../../standalone/scannerdrake_.c:52
#, c-format
msgid "%s found on %s, configure it ?"
msgstr ""
-#: ../../standalone/scannerdrake_.c:60
+#: ../../standalone/scannerdrake_.c:59
#, fuzzy
msgid "Select a scanner"
msgstr "Pasirink vaizdo plokštę"
-#: ../../standalone/scannerdrake_.c:80
+#: ../../standalone/scannerdrake_.c:79
#, c-format
msgid "This %s scanner is unsupported"
msgstr ""
-#: ../../standalone/scannerdrake_.c:94
+#: ../../standalone/scannerdrake_.c:93
#, c-format
msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-#: ../../standalone/scannerdrake_.c:96
+#: ../../standalone/scannerdrake_.c:95
#, fuzzy
msgid "choose device"
msgstr "Įkrovos įrenginys"
-#: ../../standalone/scannerdrake_.c:102
+#: ../../standalone/scannerdrake_.c:101
#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
@@ -11513,7 +11953,7 @@ msgid ""
"section."
msgstr ""
-#: ../../standalone/scannerdrake_.c:107
+#: ../../standalone/scannerdrake_.c:106
#, c-format
msgid ""
"Your %s scanner has been configured.\n"
@@ -11533,17 +11973,17 @@ msgid ""
"Some devices in the %s class were added:\n"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:31
+#: ../../standalone/tinyfirewall_.c:30
#, fuzzy
msgid "Firewalling Configuration"
msgstr "Aptikta ugniasienės konfigūracija!"
-#: ../../standalone/tinyfirewall_.c:44
+#: ../../standalone/tinyfirewall_.c:43
#, fuzzy
msgid "Firewalling configuration"
msgstr "Aptikta ugniasienės konfigūracija!"
-#: ../../standalone/tinyfirewall_.c:79
+#: ../../standalone/tinyfirewall_.c:78
msgid ""
"Firewalling\n"
"\n"
@@ -11551,7 +11991,7 @@ msgid ""
"Click on Configure to change or remove the firewall"
msgstr ""
-#: ../../standalone/tinyfirewall_.c:83
+#: ../../standalone/tinyfirewall_.c:82
msgid ""
"Firewalling\n"
"\n"
@@ -11744,56 +12184,60 @@ msgstr "Adapteris %s: %s"
msgid "Can't open %s for writing: %s\n"
msgstr "Klaida atidarant %s įrašymui: %s"
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "No I don't need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:180
+#: ../../tinyfirewall.pm_.c:178
msgid "Yes I need DHCP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "No I don't need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:181
+#: ../../tinyfirewall.pm_.c:179
msgid "Yes I need NTP"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
msgid "Don't Save"
msgstr ""
-#: ../../tinyfirewall.pm_.c:182 ../../tinyfirewall.pm_.c:186
-#: ../../tinyfirewall.pm_.c:206
+#: ../../tinyfirewall.pm_.c:180 ../../tinyfirewall.pm_.c:184
+#: ../../tinyfirewall.pm_.c:204
msgid "Save & Quit"
msgstr ""
-#: ../../tinyfirewall.pm_.c:197 ../../tinyfirewall.pm_.c:201
+#: ../../tinyfirewall.pm_.c:195 ../../tinyfirewall.pm_.c:199
#, fuzzy
msgid "Firewall Configuration Wizard"
msgstr "Tinklo Konfigūravimo Meistras"
-#: ../../tinyfirewall.pm_.c:199
+#: ../../tinyfirewall.pm_.c:197
msgid "No (firewall this off from the internet)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:200
+#: ../../tinyfirewall.pm_.c:198
msgid "Yes (allow this through the firewall)"
msgstr ""
-#: ../../tinyfirewall.pm_.c:232
+#: ../../tinyfirewall.pm_.c:230
#, fuzzy
msgid "Please Wait... Verifying installed packages"
msgstr "Prašome palaukti. Ruošiamas įdiegimas"
-#: ../../tinyfirewall.pm_.c:238
+#: ../../tinyfirewall.pm_.c:236
#, c-format
msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+#: ../../ugtk.pm_.c:619
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr ""
+
#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Serveris, Tinklapių/FTP"
@@ -11845,6 +12289,10 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Su garsu susiję įrankiai: mp3 ir midi grotuvai, mikšeriai ir pan."
#: ../../share/compssUsers:999
+msgid "Linux Standard Base. Third party applications support"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Knygos ir HOWTO apie Linux ir Free Software"
@@ -11937,11 +12385,6 @@ msgid "Office Workstation"
msgstr "Biuro darbo stotis"
#: ../../share/compssUsers:999
-#, fuzzy
-msgid "Server"
-msgstr "serveris"
-
-#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm ir Pan."
@@ -12008,6 +12451,10 @@ msgid "Clients for different protocols including ssh"
msgstr ""
#: ../../share/compssUsers:999
+msgid "LSB"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Priėjimas prie Interneto"
@@ -12040,6 +12487,108 @@ msgstr "Multimedija - CD kepimas"
msgid "Scientific Workstation"
msgstr "Mokslinės darbo stotis"
+#~ msgid "$mode: $warning"
+#~ msgstr "$mode: $warning"
+
+#, fuzzy
+#~ 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 ""
+#~ "Šiame lygyje reikia elgtis atsargiai. Tai leidžia lengviau naudoti "
+#~ "sistemą,\n"
+#~ "bet labai jautriai: ji turėtų nebūti naudojama kompiuteriuose,\n"
+#~ "sujungtais su kitais arba prie Interneto. Čia nėra slaptažodžių."
+
+#, fuzzy
+#~ msgid ""
+#~ "With this security level, the use of this system as a server becomes "
+#~ "possible.\n"
+#~ " The security is now high enough to use the system as a "
+#~ "server which can accept\n"
+#~ " connections from many clients. Note: if your machine is "
+#~ "only a client on the Internet, you should choose a lower level."
+#~ msgstr ""
+#~ "Su šiuo saugumo lygiu sistemą jau galima naudoti kaip serverį. Saugumas\n"
+#~ "yra pakankamai aukštas, kad sistemą būtų galima naudoti serveriui, kuris "
+#~ "priima\n"
+#~ "prisijungimus iš daugybės klientų."
+
+#, fuzzy
+#~ msgid "Basic Options"
+#~ msgstr "Pasirinktys"
+
+#, fuzzy
+#~ msgid "Security Checks"
+#~ msgstr "curly"
+
+#, fuzzy
+#~ msgid "Please choose your CD space"
+#~ msgstr "Prašom pasirinkti klaviatūros išdėstymą."
+
+#, fuzzy
+#~ msgid "Please enter the cd writer speed"
+#~ msgstr "Prašom išbandyti pelę"
+
+#, fuzzy
+#~ msgid "Please check if you want to include install boot on your CD."
+#~ msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
+
+#, fuzzy
+#~ msgid "Url should begin with 'ftp:'"
+#~ msgstr "Proxy turėtų būti ftp://..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Please check if you want to include\n"
+#~ " install boot on your CD."
+#~ msgstr "Pasirink paketus, kuriuos tu nori įdiegti."
+
+#, fuzzy